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 # TODO(jamescook|derat): Pull strings into extensions module. |
| 19 '../chrome/chrome_resources.gyp:chrome_strings', |
18 '../chrome/common/extensions/api/api.gyp:api', | 20 '../chrome/common/extensions/api/api.gyp:api', |
19 '../components/components.gyp:url_matcher', | 21 '../components/components.gyp:url_matcher', |
20 '../content/content.gyp:content_common', | 22 '../content/content.gyp:content_common', |
21 '../third_party/re2/re2.gyp:re2', | 23 '../third_party/re2/re2.gyp:re2', |
22 ], | 24 ], |
23 'include_dirs': [ | 25 'include_dirs': [ |
24 '..', | 26 '..', |
25 '<(INTERMEDIATE_DIR)', | 27 '<(INTERMEDIATE_DIR)', |
26 ], | 28 ], |
27 'sources': [ | 29 'sources': [ |
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
198 'browser/process_map.h', | 200 'browser/process_map.h', |
199 'browser/quota_service.cc', | 201 'browser/quota_service.cc', |
200 'browser/quota_service.h', | 202 'browser/quota_service.h', |
201 'browser/update_observer.h', | 203 'browser/update_observer.h', |
202 'browser/view_type_utils.cc', | 204 'browser/view_type_utils.cc', |
203 'browser/view_type_utils.h', | 205 'browser/view_type_utils.h', |
204 ], | 206 ], |
205 # Disable c4267 warnings until we fix size_t to int truncations. | 207 # Disable c4267 warnings until we fix size_t to int truncations. |
206 'msvs_disabled_warnings': [ 4267, ], | 208 'msvs_disabled_warnings': [ 4267, ], |
207 }, | 209 }, |
| 210 { |
| 211 'target_name': 'extensions_test_support', |
| 212 'type': 'static_library', |
| 213 'dependencies': [ |
| 214 'extensions_browser', |
| 215 'extensions_common', |
| 216 '../base/base.gyp:base', |
| 217 ], |
| 218 'include_dirs': [ |
| 219 '..', |
| 220 ], |
| 221 'sources': [ |
| 222 'browser/test_management_policy.cc', |
| 223 'browser/test_management_policy.h', |
| 224 'common/extension_builder.cc', |
| 225 'common/extension_builder.h', |
| 226 'common/test_util.cc', |
| 227 'common/test_util.h', |
| 228 'common/value_builder.cc', |
| 229 'common/value_builder.h', |
| 230 ], |
| 231 # Disable c4267 warnings until we fix size_t to int truncations. |
| 232 'msvs_disabled_warnings': [ 4267, ], |
| 233 }, |
208 ] | 234 ] |
209 } | 235 } |
OLD | NEW |