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 428 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
439 ], | 439 ], |
440 'conditions': [ | 440 'conditions': [ |
441 ['enable_extensions==0', { | 441 ['enable_extensions==0', { |
442 # Exclude all API implementations and the ExtensionsApiClient | 442 # Exclude all API implementations and the ExtensionsApiClient |
443 # interface. Moving an API from src/chrome to src/extensions implies | 443 # interface. Moving an API from src/chrome to src/extensions implies |
444 # it can be cleanly disabled with enable_extensions==0. | 444 # it can be cleanly disabled with enable_extensions==0. |
445 # TODO: Eventually the entire extensions module should not be built | 445 # TODO: Eventually the entire extensions module should not be built |
446 # when enable_extensions==0. | 446 # when enable_extensions==0. |
447 'sources/': [ | 447 'sources/': [ |
448 ['exclude', '^browser/api/'], | 448 ['exclude', '^browser/api/'], |
449 ['include', '^browser/api/runtime/runtime_api.cc'], | |
450 ['include', '^browser/api/runtime/runtime_api_delegate.cc'], | |
451 ], | 449 ], |
452 'sources!': [ | 450 'sources!': [ |
453 'browser/browser_context_keyed_service_factories.cc', | 451 'browser/browser_context_keyed_service_factories.cc', |
454 'browser/browser_context_keyed_service_factories.h', | 452 'browser/browser_context_keyed_service_factories.h', |
455 ], | 453 ], |
456 'dependencies!': [ | 454 'dependencies!': [ |
457 '../components/components.gyp:usb_service', | 455 '../components/components.gyp:usb_service', |
458 ], | 456 ], |
459 }], | 457 }], |
460 ], | 458 ], |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
675 'test/test_extensions_client.cc', | 673 'test/test_extensions_client.cc', |
676 'test/test_extensions_client.h', | 674 'test/test_extensions_client.h', |
677 'test/test_permission_message_provider.cc', | 675 'test/test_permission_message_provider.cc', |
678 'test/test_permission_message_provider.h', | 676 'test/test_permission_message_provider.h', |
679 'test/test_permissions_provider.cc', | 677 'test/test_permissions_provider.cc', |
680 'test/test_permissions_provider.h', | 678 'test/test_permissions_provider.h', |
681 ], | 679 ], |
682 }, | 680 }, |
683 ] | 681 ] |
684 } | 682 } |
OLD | NEW |