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 { |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 'common/extension_api.cc', | 214 'common/extension_api.cc', |
215 ], | 215 ], |
216 }], | 216 }], |
217 ], | 217 ], |
218 }, | 218 }, |
219 { | 219 { |
220 'target_name': 'extensions_browser', | 220 'target_name': 'extensions_browser', |
221 'type': 'static_library', | 221 'type': 'static_library', |
222 'dependencies': [ | 222 'dependencies': [ |
223 '../components/components.gyp:keyed_service_content', | 223 '../components/components.gyp:keyed_service_content', |
| 224 '../components/components.gyp:usb_service', |
224 '../content/content.gyp:content_browser', | 225 '../content/content.gyp:content_browser', |
225 '../skia/skia.gyp:skia', | 226 '../skia/skia.gyp:skia', |
226 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 227 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
227 'common/api/api.gyp:extensions_api', | 228 'common/api/api.gyp:extensions_api', |
228 'extensions_common', | 229 'extensions_common', |
229 'extensions_strings.gyp:extensions_strings', | 230 'extensions_strings.gyp:extensions_strings', |
230 ], | 231 ], |
231 'include_dirs': [ | 232 'include_dirs': [ |
232 '..', | 233 '..', |
233 '<(INTERMEDIATE_DIR)', | 234 '<(INTERMEDIATE_DIR)', |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
285 'browser/api/storage/storage_api.cc', | 286 'browser/api/storage/storage_api.cc', |
286 'browser/api/storage/storage_api.h', | 287 'browser/api/storage/storage_api.h', |
287 'browser/api/storage/storage_frontend.cc', | 288 'browser/api/storage/storage_frontend.cc', |
288 'browser/api/storage/storage_frontend.h', | 289 'browser/api/storage/storage_frontend.h', |
289 'browser/api/storage/value_store_cache.cc', | 290 'browser/api/storage/value_store_cache.cc', |
290 'browser/api/storage/value_store_cache.h', | 291 'browser/api/storage/value_store_cache.h', |
291 'browser/api/storage/weak_unlimited_settings_storage.cc', | 292 'browser/api/storage/weak_unlimited_settings_storage.cc', |
292 'browser/api/storage/weak_unlimited_settings_storage.h', | 293 'browser/api/storage/weak_unlimited_settings_storage.h', |
293 'browser/api/test/test_api.cc', | 294 'browser/api/test/test_api.cc', |
294 'browser/api/test/test_api.h', | 295 'browser/api/test/test_api.h', |
| 296 'browser/api/usb/usb_api.cc', |
| 297 'browser/api/usb/usb_api.h', |
| 298 'browser/api/usb/usb_device_resource.cc', |
| 299 'browser/api/usb/usb_device_resource.h', |
295 'browser/api_activity_monitor.h', | 300 'browser/api_activity_monitor.h', |
296 'browser/app_sorting.h', | 301 'browser/app_sorting.h', |
297 'browser/blacklist_state.h', | 302 'browser/blacklist_state.h', |
298 'browser/browser_context_keyed_api_factory.h', | 303 'browser/browser_context_keyed_api_factory.h', |
299 'browser/browser_context_keyed_service_factories.cc', | 304 'browser/browser_context_keyed_service_factories.cc', |
300 'browser/browser_context_keyed_service_factories.h', | 305 'browser/browser_context_keyed_service_factories.h', |
301 'browser/error_map.cc', | 306 'browser/error_map.cc', |
302 'browser/error_map.h', | 307 'browser/error_map.h', |
303 'browser/event_listener_map.cc', | 308 'browser/event_listener_map.cc', |
304 'browser/event_listener_map.h', | 309 'browser/event_listener_map.h', |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
398 # it can be cleanly disabled with enable_extensions==0. | 403 # it can be cleanly disabled with enable_extensions==0. |
399 # TODO: Eventually the entire extensions module should not be built | 404 # TODO: Eventually the entire extensions module should not be built |
400 # when enable_extensions==0. | 405 # when enable_extensions==0. |
401 'sources/': [ | 406 'sources/': [ |
402 ['exclude', '^browser/api/'], | 407 ['exclude', '^browser/api/'], |
403 ], | 408 ], |
404 'sources!': [ | 409 'sources!': [ |
405 'browser/browser_context_keyed_service_factories.cc', | 410 'browser/browser_context_keyed_service_factories.cc', |
406 'browser/browser_context_keyed_service_factories.h', | 411 'browser/browser_context_keyed_service_factories.h', |
407 ], | 412 ], |
| 413 'dependencies!': [ |
| 414 '../components/components.gyp:usb_service', |
| 415 ], |
408 }], | 416 }], |
409 ], | 417 ], |
410 # Disable c4267 warnings until we fix size_t to int truncations. | 418 # Disable c4267 warnings until we fix size_t to int truncations. |
411 'msvs_disabled_warnings': [ 4267, ], | 419 'msvs_disabled_warnings': [ 4267, ], |
412 }, | 420 }, |
413 { | 421 { |
414 'target_name': 'extensions_renderer', | 422 'target_name': 'extensions_renderer', |
415 'type': 'static_library', | 423 'type': 'static_library', |
416 'dependencies': [ | 424 'dependencies': [ |
417 'extensions_resources.gyp:extensions_resources', | 425 'extensions_resources.gyp:extensions_resources', |
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
593 'test/test_extensions_client.cc', | 601 'test/test_extensions_client.cc', |
594 'test/test_extensions_client.h', | 602 'test/test_extensions_client.h', |
595 'test/test_permission_message_provider.cc', | 603 'test/test_permission_message_provider.cc', |
596 'test/test_permission_message_provider.h', | 604 'test/test_permission_message_provider.h', |
597 'test/test_permissions_provider.cc', | 605 'test/test_permissions_provider.cc', |
598 'test/test_permissions_provider.h', | 606 'test/test_permissions_provider.h', |
599 ], | 607 ], |
600 }, | 608 }, |
601 ] | 609 ] |
602 } | 610 } |
OLD | NEW |