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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 # GN version: //extensions/browser | 250 # GN version: //extensions/browser |
251 'target_name': 'extensions_browser', | 251 'target_name': 'extensions_browser', |
252 'type': 'static_library', | 252 'type': 'static_library', |
253 'dependencies': [ | 253 'dependencies': [ |
254 '../base/base.gyp:base', | 254 '../base/base.gyp:base', |
255 '../base/base.gyp:base_prefs', | 255 '../base/base.gyp:base_prefs', |
256 '../components/components.gyp:keyed_service_content', | 256 '../components/components.gyp:keyed_service_content', |
257 '../components/components.gyp:keyed_service_core', | 257 '../components/components.gyp:keyed_service_core', |
258 '../components/components.gyp:pref_registry', | 258 '../components/components.gyp:pref_registry', |
259 '../components/components.gyp:sessions', | 259 '../components/components.gyp:sessions', |
260 '../components/components.gyp:usb_service', | |
261 '../components/components.gyp:web_modal', | 260 '../components/components.gyp:web_modal', |
262 '../content/content.gyp:content_browser', | 261 '../content/content.gyp:content_browser', |
263 '../device/serial/serial.gyp:device_serial', | 262 '../device/serial/serial.gyp:device_serial', |
264 '../skia/skia.gyp:skia', | 263 '../skia/skia.gyp:skia', |
265 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 264 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
266 'browser/api/api_registration.gyp:extensions_api_registration', | 265 'browser/api/api_registration.gyp:extensions_api_registration', |
267 'cast_channel_proto', | 266 'cast_channel_proto', |
268 'common/api/api.gyp:extensions_api', | 267 'common/api/api.gyp:extensions_api', |
269 'extensions_common', | 268 'extensions_common', |
270 'extensions_strings.gyp:extensions_strings', | 269 'extensions_strings.gyp:extensions_strings', |
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 ['enable_extensions==0', { | 571 ['enable_extensions==0', { |
573 # Exclude all API implementations and the ExtensionsApiClient | 572 # Exclude all API implementations and the ExtensionsApiClient |
574 # interface. Moving an API from src/chrome to src/extensions implies | 573 # interface. Moving an API from src/chrome to src/extensions implies |
575 # it can be cleanly disabled with enable_extensions==0. | 574 # it can be cleanly disabled with enable_extensions==0. |
576 # TODO: Eventually the entire extensions module should not be built | 575 # TODO: Eventually the entire extensions module should not be built |
577 # when enable_extensions==0. | 576 # when enable_extensions==0. |
578 'sources/': [ | 577 'sources/': [ |
579 ['exclude', '^browser/'], | 578 ['exclude', '^browser/'], |
580 ], | 579 ], |
581 'dependencies!': [ | 580 'dependencies!': [ |
582 '../components/components.gyp:usb_service', | |
583 '../device/serial/serial.gyp:device_serial', | 581 '../device/serial/serial.gyp:device_serial', |
584 ], | 582 ], |
585 }], | 583 }], |
586 ['use_openssl==1', { | 584 ['use_openssl==1', { |
587 'sources': [ | 585 'sources': [ |
588 'browser/api/cast_channel/cast_auth_util_openssl.cc', | 586 'browser/api/cast_channel/cast_auth_util_openssl.cc', |
589 ], | 587 ], |
590 }, { | 588 }, { |
591 'sources': [ | 589 'sources': [ |
592 # cast_auth_util_nss.cc uses NSS functions. | 590 # cast_auth_util_nss.cc uses NSS functions. |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1000 'browser/api/cast_channel/logging.proto' | 998 'browser/api/cast_channel/logging.proto' |
1001 ], | 999 ], |
1002 'variables': { | 1000 'variables': { |
1003 'proto_in_dir': 'browser/api/cast_channel', | 1001 'proto_in_dir': 'browser/api/cast_channel', |
1004 'proto_out_dir': 'extensions/browser/api/cast_channel', | 1002 'proto_out_dir': 'extensions/browser/api/cast_channel', |
1005 }, | 1003 }, |
1006 'includes': [ '../build/protoc.gypi' ] | 1004 'includes': [ '../build/protoc.gypi' ] |
1007 }, | 1005 }, |
1008 ] | 1006 ] |
1009 } | 1007 } |
OLD | NEW |