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 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 ], | 443 ], |
444 'conditions': [ | 444 'conditions': [ |
445 ['enable_extensions==0', { | 445 ['enable_extensions==0', { |
446 # Exclude all API implementations and the ExtensionsApiClient | 446 # Exclude all API implementations and the ExtensionsApiClient |
447 # interface. Moving an API from src/chrome to src/extensions implies | 447 # interface. Moving an API from src/chrome to src/extensions implies |
448 # it can be cleanly disabled with enable_extensions==0. | 448 # it can be cleanly disabled with enable_extensions==0. |
449 # TODO: Eventually the entire extensions module should not be built | 449 # TODO: Eventually the entire extensions module should not be built |
450 # when enable_extensions==0. | 450 # when enable_extensions==0. |
451 'sources/': [ | 451 'sources/': [ |
452 ['exclude', '^browser/api/'], | 452 ['exclude', '^browser/api/'], |
453 ['include', '^browser/api/runtime/runtime_api.cc'], | |
454 ['include', '^browser/api/runtime/runtime_api_delegate.cc'], | |
455 ], | 453 ], |
456 'sources!': [ | 454 'sources!': [ |
457 'browser/browser_context_keyed_service_factories.cc', | 455 'browser/browser_context_keyed_service_factories.cc', |
458 'browser/browser_context_keyed_service_factories.h', | 456 'browser/browser_context_keyed_service_factories.h', |
459 ], | 457 ], |
460 'dependencies!': [ | 458 'dependencies!': [ |
461 '../components/components.gyp:usb_service', | 459 '../components/components.gyp:usb_service', |
462 ], | 460 ], |
463 }], | 461 }], |
464 ], | 462 ], |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
683 'test/test_extensions_client.cc', | 681 'test/test_extensions_client.cc', |
684 'test/test_extensions_client.h', | 682 'test/test_extensions_client.h', |
685 'test/test_permission_message_provider.cc', | 683 'test/test_permission_message_provider.cc', |
686 'test/test_permission_message_provider.h', | 684 'test/test_permission_message_provider.h', |
687 'test/test_permissions_provider.cc', | 685 'test/test_permissions_provider.cc', |
688 'test/test_permissions_provider.h', | 686 'test/test_permissions_provider.h', |
689 ], | 687 ], |
690 }, | 688 }, |
691 ] | 689 ] |
692 } | 690 } |
OLD | NEW |