| 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 479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 490 'browser/view_type_utils.h', | 490 'browser/view_type_utils.h', |
| 491 ], | 491 ], |
| 492 'conditions': [ | 492 'conditions': [ |
| 493 ['enable_extensions==0', { | 493 ['enable_extensions==0', { |
| 494 # Exclude all API implementations and the ExtensionsApiClient | 494 # Exclude all API implementations and the ExtensionsApiClient |
| 495 # interface. Moving an API from src/chrome to src/extensions implies | 495 # interface. Moving an API from src/chrome to src/extensions implies |
| 496 # it can be cleanly disabled with enable_extensions==0. | 496 # it can be cleanly disabled with enable_extensions==0. |
| 497 # TODO: Eventually the entire extensions module should not be built | 497 # TODO: Eventually the entire extensions module should not be built |
| 498 # when enable_extensions==0. | 498 # when enable_extensions==0. |
| 499 'sources/': [ | 499 'sources/': [ |
| 500 ['exclude', '^browser/api/'], | 500 ['exclude', '^browser/'], |
| 501 ], | |
| 502 'sources!': [ | |
| 503 'browser/browser_context_keyed_service_factories.cc', | |
| 504 'browser/browser_context_keyed_service_factories.h', | |
| 505 ], | 501 ], |
| 506 'dependencies!': [ | 502 'dependencies!': [ |
| 507 '../components/components.gyp:usb_service', | 503 '../components/components.gyp:usb_service', |
| 508 '../device/serial/serial.gyp:device_serial', | 504 '../device/serial/serial.gyp:device_serial', |
| 509 ], | 505 ], |
| 510 }], | 506 }], |
| 511 ['use_openssl==1', { | 507 ['use_openssl==1', { |
| 512 'sources': [ | 508 'sources': [ |
| 513 'browser/api/cast_channel/cast_auth_util_openssl.cc', | 509 'browser/api/cast_channel/cast_auth_util_openssl.cc', |
| 514 ], | 510 ], |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 'type': 'static_library', | 885 'type': 'static_library', |
| 890 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], | 886 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], |
| 891 'variables': { | 887 'variables': { |
| 892 'proto_in_dir': 'browser/api/cast_channel', | 888 'proto_in_dir': 'browser/api/cast_channel', |
| 893 'proto_out_dir': 'extensions/browser/api/cast_channel', | 889 'proto_out_dir': 'extensions/browser/api/cast_channel', |
| 894 }, | 890 }, |
| 895 'includes': [ '../build/protoc.gypi' ] | 891 'includes': [ '../build/protoc.gypi' ] |
| 896 }, | 892 }, |
| 897 ] | 893 ] |
| 898 } | 894 } |
| OLD | NEW |