Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: extensions/extensions.gyp

Issue 389633002: Move system.* family of APIs to extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/common/permissions/extensions_api_permissions.cc ('k') | extensions/shell/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 # GN version: //extensions/browser 263 # GN version: //extensions/browser
264 'target_name': 'extensions_browser', 264 'target_name': 'extensions_browser',
265 'type': 'static_library', 265 'type': 'static_library',
266 'dependencies': [ 266 'dependencies': [
267 '../base/base.gyp:base', 267 '../base/base.gyp:base',
268 '../base/base.gyp:base_prefs', 268 '../base/base.gyp:base_prefs',
269 '../components/components.gyp:keyed_service_content', 269 '../components/components.gyp:keyed_service_content',
270 '../components/components.gyp:keyed_service_core', 270 '../components/components.gyp:keyed_service_core',
271 '../components/components.gyp:pref_registry', 271 '../components/components.gyp:pref_registry',
272 '../components/components.gyp:sessions', 272 '../components/components.gyp:sessions',
273 '../components/components.gyp:storage_monitor',
273 '../components/components.gyp:web_modal', 274 '../components/components.gyp:web_modal',
274 '../content/content.gyp:content_browser', 275 '../content/content.gyp:content_browser',
275 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 276 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
276 '../device/serial/serial.gyp:device_serial', 277 '../device/serial/serial.gyp:device_serial',
277 '../skia/skia.gyp:skia', 278 '../skia/skia.gyp:skia',
278 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 279 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
279 'browser/api/api_registration.gyp:extensions_api_registration', 280 'browser/api/api_registration.gyp:extensions_api_registration',
280 'cast_channel_proto', 281 'cast_channel_proto',
281 'common/api/api.gyp:extensions_api', 282 'common/api/api.gyp:extensions_api',
282 'extensions_common', 283 'extensions_common',
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
411 'browser/api/storage/settings_storage_quota_enforcer.cc', 412 'browser/api/storage/settings_storage_quota_enforcer.cc',
412 'browser/api/storage/settings_storage_quota_enforcer.h', 413 'browser/api/storage/settings_storage_quota_enforcer.h',
413 'browser/api/storage/storage_api.cc', 414 'browser/api/storage/storage_api.cc',
414 'browser/api/storage/storage_api.h', 415 'browser/api/storage/storage_api.h',
415 'browser/api/storage/storage_frontend.cc', 416 'browser/api/storage/storage_frontend.cc',
416 'browser/api/storage/storage_frontend.h', 417 'browser/api/storage/storage_frontend.h',
417 'browser/api/storage/value_store_cache.cc', 418 'browser/api/storage/value_store_cache.cc',
418 'browser/api/storage/value_store_cache.h', 419 'browser/api/storage/value_store_cache.h',
419 'browser/api/storage/weak_unlimited_settings_storage.cc', 420 'browser/api/storage/weak_unlimited_settings_storage.cc',
420 'browser/api/storage/weak_unlimited_settings_storage.h', 421 'browser/api/storage/weak_unlimited_settings_storage.h',
422 'browser/api/system_cpu/cpu_info_provider.cc',
423 'browser/api/system_cpu/cpu_info_provider.h',
424 'browser/api/system_cpu/cpu_info_provider_linux.cc',
425 'browser/api/system_cpu/cpu_info_provider_mac.cc',
426 'browser/api/system_cpu/cpu_info_provider_win.cc',
427 'browser/api/system_cpu/system_cpu_api.cc',
428 'browser/api/system_cpu/system_cpu_api.h',
429 'browser/api/system_display/display_info_provider.cc',
430 'browser/api/system_display/display_info_provider.h',
431 'browser/api/system_display/system_display_api.cc',
432 'browser/api/system_display/system_display_api.h',
433 'browser/api/system_info/system_info_api.cc',
434 'browser/api/system_info/system_info_api.h',
435 'browser/api/system_info/system_info_provider.cc',
436 'browser/api/system_info/system_info_provider.h',
437 'browser/api/system_memory/memory_info_provider.cc',
438 'browser/api/system_memory/memory_info_provider.h',
439 'browser/api/system_memory/system_memory_api.cc',
440 'browser/api/system_memory/system_memory_api.h',
441 'browser/api/system_network/system_network_api.cc',
442 'browser/api/system_network/system_network_api.h',
443 'browser/api/system_storage/storage_info_provider.cc',
444 'browser/api/system_storage/storage_info_provider.h',
445 'browser/api/system_storage/system_storage_api.cc',
446 'browser/api/system_storage/system_storage_api.h',
421 'browser/api/test/test_api.cc', 447 'browser/api/test/test_api.cc',
422 'browser/api/test/test_api.h', 448 'browser/api/test/test_api.h',
423 'browser/api/usb/usb_api.cc', 449 'browser/api/usb/usb_api.cc',
424 'browser/api/usb/usb_api.h', 450 'browser/api/usb/usb_api.h',
425 'browser/api/usb/usb_device_resource.cc', 451 'browser/api/usb/usb_device_resource.cc',
426 'browser/api/usb/usb_device_resource.h', 452 'browser/api/usb/usb_device_resource.h',
427 'browser/api/usb_private/usb_private_api.cc', 453 'browser/api/usb_private/usb_private_api.cc',
428 'browser/api/usb_private/usb_private_api.h', 454 'browser/api/usb_private/usb_private_api.h',
429 'browser/api_activity_monitor.h', 455 'browser/api_activity_monitor.h',
430 'browser/app_sorting.h', 456 'browser/app_sorting.h',
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 ['enable_extensions==0', { 645 ['enable_extensions==0', {
620 # Exclude all API implementations and the ExtensionsApiClient 646 # Exclude all API implementations and the ExtensionsApiClient
621 # interface. Moving an API from src/chrome to src/extensions implies 647 # interface. Moving an API from src/chrome to src/extensions implies
622 # it can be cleanly disabled with enable_extensions==0. 648 # it can be cleanly disabled with enable_extensions==0.
623 # TODO: Eventually the entire extensions module should not be built 649 # TODO: Eventually the entire extensions module should not be built
624 # when enable_extensions==0. 650 # when enable_extensions==0.
625 'sources/': [ 651 'sources/': [
626 ['exclude', '^browser/'], 652 ['exclude', '^browser/'],
627 ], 653 ],
628 'dependencies!': [ 654 'dependencies!': [
655 '../components/components.gyp:storage_monitor',
629 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 656 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
630 '../device/serial/serial.gyp:device_serial', 657 '../device/serial/serial.gyp:device_serial',
631 ], 658 ],
632 }], 659 }],
633 ['use_openssl==1', { 660 ['use_openssl==1', {
634 'sources': [ 661 'sources': [
635 'browser/api/cast_channel/cast_auth_util_openssl.cc', 662 'browser/api/cast_channel/cast_auth_util_openssl.cc',
636 ], 663 ],
637 }, { 664 }, {
638 'sources': [ 665 'sources': [
(...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after
1052 'browser/api/cast_channel/logging.proto' 1079 'browser/api/cast_channel/logging.proto'
1053 ], 1080 ],
1054 'variables': { 1081 'variables': {
1055 'proto_in_dir': 'browser/api/cast_channel', 1082 'proto_in_dir': 'browser/api/cast_channel',
1056 'proto_out_dir': 'extensions/browser/api/cast_channel', 1083 'proto_out_dir': 'extensions/browser/api/cast_channel',
1057 }, 1084 },
1058 'includes': [ '../build/protoc.gypi' ] 1085 'includes': [ '../build/protoc.gypi' ]
1059 }, 1086 },
1060 ] 1087 ]
1061 } 1088 }
OLDNEW
« no previous file with comments | « extensions/common/permissions/extensions_api_permissions.cc ('k') | extensions/shell/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698