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 'common/api/api.gyp:extensions_api', | |
15 '../third_party/re2/re2.gyp:re2', | 14 '../third_party/re2/re2.gyp:re2', |
16 # TODO(benwells): figure out what to do with the api target and | 15 # TODO(benwells): figure out what to do with the api target and |
17 # api resources compiled into the chrome resource bundle. | 16 # api resources compiled into the chrome resource bundle. |
18 # http://crbug.com/162530 | 17 # http://crbug.com/162530 |
19 '../chrome/chrome_resources.gyp:chrome_resources', | 18 '../chrome/chrome_resources.gyp:chrome_resources', |
20 # TODO(jamescook|derat): Pull strings into extensions module. | 19 # TODO(jamescook|derat): Pull strings into extensions module. |
21 '../chrome/chrome_resources.gyp:chrome_strings', | 20 '../chrome/chrome_resources.gyp:chrome_strings', |
22 '../chrome/common/extensions/api/api.gyp:chrome_api', | 21 '../chrome/common/extensions/api/api.gyp:chrome_api', |
23 '../components/components.gyp:url_matcher', | 22 '../components/components.gyp:url_matcher', |
24 '../content/content.gyp:content_common', | 23 '../content/content.gyp:content_common', |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 'common/extension_api.cc', | 167 'common/extension_api.cc', |
169 ], | 168 ], |
170 }], | 169 }], |
171 ], | 170 ], |
172 }, | 171 }, |
173 { | 172 { |
174 'target_name': 'extensions_browser', | 173 'target_name': 'extensions_browser', |
175 'type': 'static_library', | 174 'type': 'static_library', |
176 'dependencies': [ | 175 'dependencies': [ |
177 'extensions_common', | 176 'extensions_common', |
| 177 'common/api/api.gyp:extensions_api', |
178 # TODO(jamescook|derat): Pull strings into extensions module. | 178 # TODO(jamescook|derat): Pull strings into extensions module. |
179 '../chrome/chrome_resources.gyp:chrome_strings', | 179 '../chrome/chrome_resources.gyp:chrome_strings', |
180 '../chrome/common/extensions/api/api.gyp:chrome_api', | 180 '../chrome/common/extensions/api/api.gyp:chrome_api', |
181 '../content/content.gyp:content_browser', | 181 '../content/content.gyp:content_browser', |
182 '../skia/skia.gyp:skia', | 182 '../skia/skia.gyp:skia', |
183 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 183 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
184 ], | 184 ], |
185 'include_dirs': [ | 185 'include_dirs': [ |
186 '..', | 186 '..', |
187 '<(INTERMEDIATE_DIR)', | 187 '<(INTERMEDIATE_DIR)', |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
378 'common/test_util.cc', | 378 'common/test_util.cc', |
379 'common/test_util.h', | 379 'common/test_util.h', |
380 'common/value_builder.cc', | 380 'common/value_builder.cc', |
381 'common/value_builder.h', | 381 'common/value_builder.h', |
382 ], | 382 ], |
383 # Disable c4267 warnings until we fix size_t to int truncations. | 383 # Disable c4267 warnings until we fix size_t to int truncations. |
384 'msvs_disabled_warnings': [ 4267, ], | 384 'msvs_disabled_warnings': [ 4267, ], |
385 }, | 385 }, |
386 ] | 386 ] |
387 } | 387 } |
OLD | NEW |