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