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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
239 'type': 'static_library', | 239 'type': 'static_library', |
240 'dependencies': [ | 240 'dependencies': [ |
241 '../base/base.gyp:base', | 241 '../base/base.gyp:base', |
242 '../base/base.gyp:base_prefs', | 242 '../base/base.gyp:base_prefs', |
243 '../components/components.gyp:keyed_service_content', | 243 '../components/components.gyp:keyed_service_content', |
244 '../components/components.gyp:keyed_service_core', | 244 '../components/components.gyp:keyed_service_core', |
245 '../components/components.gyp:pref_registry', | 245 '../components/components.gyp:pref_registry', |
246 '../components/components.gyp:usb_service', | 246 '../components/components.gyp:usb_service', |
247 '../content/content.gyp:content_browser', | 247 '../content/content.gyp:content_browser', |
248 '../device/serial/serial.gyp:device_serial', | 248 '../device/serial/serial.gyp:device_serial', |
| 249 '../google_apis/google_apis.gyp:google_apis', |
249 '../skia/skia.gyp:skia', | 250 '../skia/skia.gyp:skia', |
250 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 251 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
251 'cast_channel_proto', | 252 'cast_channel_proto', |
252 'common/api/api.gyp:extensions_api', | 253 'common/api/api.gyp:extensions_api', |
253 'extensions_common', | 254 'extensions_common', |
254 'extensions_strings.gyp:extensions_strings', | 255 'extensions_strings.gyp:extensions_strings', |
255 ], | 256 ], |
256 'include_dirs': [ | 257 'include_dirs': [ |
257 '..', | 258 '..', |
258 '<(INTERMEDIATE_DIR)', | 259 '<(INTERMEDIATE_DIR)', |
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
495 # interface. Moving an API from src/chrome to src/extensions implies | 496 # interface. Moving an API from src/chrome to src/extensions implies |
496 # it can be cleanly disabled with enable_extensions==0. | 497 # it can be cleanly disabled with enable_extensions==0. |
497 # TODO: Eventually the entire extensions module should not be built | 498 # TODO: Eventually the entire extensions module should not be built |
498 # when enable_extensions==0. | 499 # when enable_extensions==0. |
499 'sources/': [ | 500 'sources/': [ |
500 ['exclude', '^browser/api/'], | 501 ['exclude', '^browser/api/'], |
501 ], | 502 ], |
502 'sources!': [ | 503 'sources!': [ |
503 'browser/browser_context_keyed_service_factories.cc', | 504 'browser/browser_context_keyed_service_factories.cc', |
504 'browser/browser_context_keyed_service_factories.h', | 505 'browser/browser_context_keyed_service_factories.h', |
| 506 'browser/webstore_oauth2_token_provider.cc', |
| 507 'browser/webstore_oauth2_token_provider.h', |
505 ], | 508 ], |
506 'dependencies!': [ | 509 'dependencies!': [ |
507 '../components/components.gyp:usb_service', | 510 '../components/components.gyp:usb_service', |
508 '../device/serial/serial.gyp:device_serial', | 511 '../device/serial/serial.gyp:device_serial', |
| 512 '../google_apis/google_apis.gyp:google_apis', |
509 ], | 513 ], |
510 }], | 514 }], |
511 ['use_openssl==1', { | 515 ['use_openssl==1', { |
512 'sources': [ | 516 'sources': [ |
513 'browser/api/cast_channel/cast_auth_util_openssl.cc', | 517 'browser/api/cast_channel/cast_auth_util_openssl.cc', |
514 ], | 518 ], |
515 }, { | 519 }, { |
516 'sources': [ | 520 'sources': [ |
517 # cast_auth_util_nss.cc uses NSS functions. | 521 # cast_auth_util_nss.cc uses NSS functions. |
518 'browser/api/cast_channel/cast_auth_util_nss.cc', | 522 'browser/api/cast_channel/cast_auth_util_nss.cc', |
(...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 'type': 'static_library', | 893 'type': 'static_library', |
890 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], | 894 'sources': [ 'browser/api/cast_channel/cast_channel.proto' ], |
891 'variables': { | 895 'variables': { |
892 'proto_in_dir': 'browser/api/cast_channel', | 896 'proto_in_dir': 'browser/api/cast_channel', |
893 'proto_out_dir': 'extensions/browser/api/cast_channel', | 897 'proto_out_dir': 'extensions/browser/api/cast_channel', |
894 }, | 898 }, |
895 'includes': [ '../build/protoc.gypi' ] | 899 'includes': [ '../build/protoc.gypi' ] |
896 }, | 900 }, |
897 ] | 901 ] |
898 } | 902 } |
OLD | NEW |