OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 'target_name': 'extensions_common', | 11 'target_name': 'extensions_common', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'dependencies': [ | 13 'dependencies': [ |
14 # TODO(benwells): figure out what to do with the api target and | 14 # TODO(benwells): figure out what to do with the api target and |
15 # api resources compiled into the chrome resource bundle. | 15 # api resources compiled into the chrome resource bundle. |
16 # http://crbug.com/162530 | 16 # http://crbug.com/162530 |
17 '../chrome/chrome_resources.gyp:chrome_resources', | 17 '../chrome/chrome_resources.gyp:chrome_resources', |
18 '../chrome/common/extensions/api/api.gyp:api', | 18 '../chrome/common/extensions/api/api.gyp:api', |
19 '../content/content.gyp:content_common', | 19 '../content/content.gyp:content_common', |
20 '../third_party/re2/re2.gyp:re2', | 20 '../third_party/re2/re2.gyp:re2', |
21 ], | 21 ], |
22 'include_dirs': [ | 22 'include_dirs': [ |
23 '..', | 23 '..', |
24 '<(INTERMEDIATE_DIR)', | 24 '<(INTERMEDIATE_DIR)', |
25 ], | 25 ], |
26 'sources': [ | 26 'sources': [ |
27 'common/crx_file.cc', | 27 'common/crx_file.cc', |
28 'common/crx_file.h', | 28 'common/crx_file.h', |
| 29 'common/csp_validator.cc', |
| 30 'common/csp_validator.h', |
29 'common/draggable_region.cc', | 31 'common/draggable_region.cc', |
30 'common/draggable_region.h', | 32 'common/draggable_region.h', |
31 'common/error_utils.cc', | 33 'common/error_utils.cc', |
32 'common/error_utils.h', | 34 'common/error_utils.h', |
33 'common/event_filter.cc', | 35 'common/event_filter.cc', |
34 'common/event_filter.h', | 36 'common/event_filter.h', |
35 'common/event_filtering_info.cc', | 37 'common/event_filtering_info.cc', |
36 'common/event_filtering_info.h', | 38 'common/event_filtering_info.h', |
37 'common/event_matcher.cc', | 39 'common/event_matcher.cc', |
38 'common/event_matcher.h', | 40 'common/event_matcher.h', |
(...skipping 23 matching lines...) Expand all Loading... |
62 'common/install_warning.cc', | 64 'common/install_warning.cc', |
63 'common/install_warning.h', | 65 'common/install_warning.h', |
64 'common/manifest.cc', | 66 'common/manifest.cc', |
65 'common/manifest.h', | 67 'common/manifest.h', |
66 'common/manifest_constants.cc', | 68 'common/manifest_constants.cc', |
67 'common/manifest_constants.h', | 69 'common/manifest_constants.h', |
68 'common/manifest_handler.cc', | 70 'common/manifest_handler.cc', |
69 'common/manifest_handler.h', | 71 'common/manifest_handler.h', |
70 'common/manifest_handlers/background_info.cc', | 72 'common/manifest_handlers/background_info.cc', |
71 'common/manifest_handlers/background_info.h', | 73 'common/manifest_handlers/background_info.h', |
| 74 'common/manifest_handlers/csp_info.cc', |
| 75 'common/manifest_handlers/csp_info.h', |
72 'common/manifest_handlers/incognito_info.cc', | 76 'common/manifest_handlers/incognito_info.cc', |
73 'common/manifest_handlers/incognito_info.h', | 77 'common/manifest_handlers/incognito_info.h', |
| 78 'common/manifest_handlers/kiosk_mode_info.cc', |
| 79 'common/manifest_handlers/kiosk_mode_info.h', |
| 80 'common/manifest_handlers/offline_enabled_info.cc', |
| 81 'common/manifest_handlers/offline_enabled_info.h', |
| 82 'common/manifest_handlers/requirements_info.h', |
| 83 'common/manifest_handlers/requirements_info.cc', |
| 84 'common/manifest_handlers/sandboxed_page_info.cc', |
| 85 'common/manifest_handlers/sandboxed_page_info.h', |
74 'common/manifest_handlers/shared_module_info.cc', | 86 'common/manifest_handlers/shared_module_info.cc', |
75 'common/manifest_handlers/shared_module_info.h', | 87 'common/manifest_handlers/shared_module_info.h', |
76 'common/matcher/regex_set_matcher.cc', | 88 'common/matcher/regex_set_matcher.cc', |
77 'common/matcher/regex_set_matcher.h', | 89 'common/matcher/regex_set_matcher.h', |
78 'common/matcher/string_pattern.cc', | 90 'common/matcher/string_pattern.cc', |
79 'common/matcher/string_pattern.h', | 91 'common/matcher/string_pattern.h', |
80 'common/matcher/substring_set_matcher.cc', | 92 'common/matcher/substring_set_matcher.cc', |
81 'common/matcher/substring_set_matcher.h', | 93 'common/matcher/substring_set_matcher.h', |
82 'common/matcher/url_matcher.cc', | 94 'common/matcher/url_matcher.cc', |
83 'common/matcher/url_matcher.h', | 95 'common/matcher/url_matcher.h', |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 'browser/quota_service.cc', | 202 'browser/quota_service.cc', |
191 'browser/quota_service.h', | 203 'browser/quota_service.h', |
192 'browser/view_type_utils.cc', | 204 'browser/view_type_utils.cc', |
193 'browser/view_type_utils.h', | 205 'browser/view_type_utils.h', |
194 ], | 206 ], |
195 # Disable c4267 warnings until we fix size_t to int truncations. | 207 # Disable c4267 warnings until we fix size_t to int truncations. |
196 'msvs_disabled_warnings': [ 4267, ], | 208 'msvs_disabled_warnings': [ 4267, ], |
197 }, | 209 }, |
198 ] | 210 ] |
199 } | 211 } |
OLD | NEW |