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 '../out/gn_gyp/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', | 29 'common/csp_validator.cc', |
30 'common/csp_validator.h', | 30 'common/csp_validator.h', |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 'browser/quota_service.h', | 207 'browser/quota_service.h', |
208 'browser/update_observer.h', | 208 'browser/update_observer.h', |
209 'browser/view_type_utils.cc', | 209 'browser/view_type_utils.cc', |
210 'browser/view_type_utils.h', | 210 'browser/view_type_utils.h', |
211 ], | 211 ], |
212 # Disable c4267 warnings until we fix size_t to int truncations. | 212 # Disable c4267 warnings until we fix size_t to int truncations. |
213 'msvs_disabled_warnings': [ 4267, ], | 213 'msvs_disabled_warnings': [ 4267, ], |
214 }, | 214 }, |
215 ] | 215 ] |
216 } | 216 } |
OLD | NEW |