Morph the selector widget to a constant padding on the window shapes in overview.
[chromium-blink-merge.git] / extensions / extensions.gyp
blob0db3b4f45465f3c2e471a80948f531ed82f92aee
1 # Copyright 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
6   'targets': [
7     {
8       'target_name': 'extensions_common',
9       'type': 'static_library',
10       'dependencies': [
11         '../content/content.gyp:content_common',
12         '../third_party/re2/re2.gyp:re2',
13       ],
14       'include_dirs': [
15         '..',
16         '<(INTERMEDIATE_DIR)',
17       ],
18       'sources': [
19         'common/crx_file.cc',
20         'common/crx_file.h',
21         'common/draggable_region.cc',
22         'common/draggable_region.h',
23         'common/error_utils.cc',
24         'common/error_utils.h',
25         'common/event_filter.cc',
26         'common/event_filter.h',
27         'common/event_filtering_info.cc',
28         'common/event_filtering_info.h',
29         'common/event_matcher.cc',
30         'common/event_matcher.h',
31         'common/extension_paths.cc',
32         'common/extension_paths.h',
33         'common/extension_resource.cc',
34         'common/extension_resource.h',
35         'common/extension_urls.cc',
36         'common/extension_urls.h',
37         'common/extensions_client.cc',
38         'common/extensions_client.h',
39         'common/features/feature.cc',
40         'common/features/feature.h',
41         'common/features/feature_provider.cc',
42         'common/features/feature_provider.h',
43         'common/id_util.cc',
44         'common/id_util.h',
45         'common/install_warning.cc',
46         'common/install_warning.h',
47         'common/manifest.cc',
48         'common/manifest.h',
49         'common/manifest_constants.cc',
50         'common/manifest_constants.h',
51         'common/matcher/regex_set_matcher.cc',
52         'common/matcher/regex_set_matcher.h',
53         'common/matcher/string_pattern.cc',
54         'common/matcher/string_pattern.h',
55         'common/matcher/substring_set_matcher.cc',
56         'common/matcher/substring_set_matcher.h',
57         'common/matcher/url_matcher.cc',
58         'common/matcher/url_matcher.h',
59         'common/matcher/url_matcher_constants.cc',
60         'common/matcher/url_matcher_constants.h',
61         'common/matcher/url_matcher_factory.cc',
62         'common/matcher/url_matcher_factory.h',
63         'common/matcher/url_matcher_helpers.cc',
64         'common/matcher/url_matcher_helpers.h',
65         'common/one_shot_event.cc',
66         'common/one_shot_event.h',
67         'common/permissions/api_permission.cc',
68         'common/permissions/api_permission.h',
69         'common/permissions/api_permission_set.cc',
70         'common/permissions/api_permission_set.h',
71         'common/permissions/permission_message.cc',
72         'common/permissions/permission_message.h',
73         'common/permissions/permission_message_provider.cc',
74         'common/permissions/permission_message_provider.h',
75         'common/permissions/permissions_info.cc',
76         'common/permissions/permissions_info.h',
77         'common/permissions/permissions_provider.h',
78         'common/stack_frame.cc',
79         'common/stack_frame.h',
80         'common/switches.cc',
81         'common/switches.h',
82         'common/url_pattern.cc',
83         'common/url_pattern.h',
84         'common/url_pattern_set.cc',
85         'common/url_pattern_set.h',
86         'common/user_script.cc',
87         'common/user_script.h',
88         'common/view_type.cc',
89         'common/view_type.h',
90       ],
91       # Disable c4267 warnings until we fix size_t to int truncations.
92       'msvs_disabled_warnings': [ 4267, ],
93     },
94     {
95       'target_name': 'extensions_browser',
96       'type': 'static_library',
97       'dependencies': [
98         'extensions_common',
99         '../content/content.gyp:content_browser',
100         '../skia/skia.gyp:skia',
101       ],
102       'include_dirs': [
103         '..',
104         '<(INTERMEDIATE_DIR)',
105       ],
106       'sources': [
107         'browser/extension_prefs_scope.h',
108         'browser/extension_error.cc',
109         'browser/extension_error.h',
110         'browser/file_highlighter.cc',
111         'browser/file_highlighter.h',
112         'browser/file_reader.cc',
113         'browser/file_reader.h',
114         'browser/pref_names.cc',
115         'browser/pref_names.h',
116         'browser/view_type_utils.cc',
117         'browser/view_type_utils.h',
118       ],
119       # Disable c4267 warnings until we fix size_t to int truncations.
120       'msvs_disabled_warnings': [ 4267, ],
121     },
122   ]