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', |
14 '../third_party/re2/re2.gyp:re2', | 15 '../third_party/re2/re2.gyp:re2', |
15 # TODO(benwells): figure out what to do with the api target and | 16 # TODO(benwells): figure out what to do with the api target and |
16 # api resources compiled into the chrome resource bundle. | 17 # api resources compiled into the chrome resource bundle. |
17 # http://crbug.com/162530 | 18 # http://crbug.com/162530 |
18 '../chrome/chrome_resources.gyp:chrome_resources', | 19 '../chrome/chrome_resources.gyp:chrome_resources', |
19 # TODO(jamescook|derat): Pull strings into extensions module. | 20 # TODO(jamescook|derat): Pull strings into extensions module. |
20 '../chrome/chrome_resources.gyp:chrome_strings', | 21 '../chrome/chrome_resources.gyp:chrome_strings', |
21 '../chrome/common/extensions/api/api.gyp:chrome_api', | |
22 '../components/components.gyp:url_matcher', | 22 '../components/components.gyp:url_matcher', |
23 '../content/content.gyp:content_common', | 23 '../content/content.gyp:content_common', |
24 ], | 24 ], |
25 'include_dirs': [ | 25 'include_dirs': [ |
26 '..', | 26 '..', |
27 '<(INTERMEDIATE_DIR)', | 27 '<(INTERMEDIATE_DIR)', |
28 ], | 28 ], |
29 'sources': [ | 29 'sources': [ |
30 'common/api/messaging/message.h', | 30 'common/api/messaging/message.h', |
31 'common/api/sockets/sockets_manifest_handler.cc', | 31 'common/api/sockets/sockets_manifest_handler.cc', |
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 ], | 176 ], |
177 }, | 177 }, |
178 { | 178 { |
179 'target_name': 'extensions_browser', | 179 'target_name': 'extensions_browser', |
180 'type': 'static_library', | 180 'type': 'static_library', |
181 'dependencies': [ | 181 'dependencies': [ |
182 'extensions_common', | 182 'extensions_common', |
183 'common/api/api.gyp:extensions_api', | 183 'common/api/api.gyp:extensions_api', |
184 # TODO(jamescook|derat): Pull strings into extensions module. | 184 # TODO(jamescook|derat): Pull strings into extensions module. |
185 '../chrome/chrome_resources.gyp:chrome_strings', | 185 '../chrome/chrome_resources.gyp:chrome_strings', |
186 '../chrome/common/extensions/api/api.gyp:chrome_api', | 186 '../components/components.gyp:keyed_service_content', |
187 '../content/content.gyp:content_browser', | 187 '../content/content.gyp:content_browser', |
188 '../skia/skia.gyp:skia', | 188 '../skia/skia.gyp:skia', |
189 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 189 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
190 ], | 190 ], |
191 'include_dirs': [ | 191 'include_dirs': [ |
192 '..', | 192 '..', |
193 '<(INTERMEDIATE_DIR)', | 193 '<(INTERMEDIATE_DIR)', |
194 # Needed to access generated API headers. | 194 # Needed to access generated API headers. |
195 '<(SHARED_INTERMEDIATE_DIR)', | 195 '<(SHARED_INTERMEDIATE_DIR)', |
196 # Needed for grit. | 196 # Needed for grit. |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 'common/test_util.cc', | 386 'common/test_util.cc', |
387 'common/test_util.h', | 387 'common/test_util.h', |
388 'common/value_builder.cc', | 388 'common/value_builder.cc', |
389 'common/value_builder.h', | 389 'common/value_builder.h', |
390 ], | 390 ], |
391 # Disable c4267 warnings until we fix size_t to int truncations. | 391 # Disable c4267 warnings until we fix size_t to int truncations. |
392 'msvs_disabled_warnings': [ 4267, ], | 392 'msvs_disabled_warnings': [ 4267, ], |
393 }, | 393 }, |
394 ] | 394 ] |
395 } | 395 } |
OLD | NEW |