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

Side by Side Diff: extensions/extensions.gyp

Issue 654363002: Move ExtensionDownloader to //extensions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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/browser/updater/extension_downloader_delegate.cc ('k') | no next file » | 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 '../components/components.gyp:keyed_service_content', 293 '../components/components.gyp:keyed_service_content',
294 '../components/components.gyp:keyed_service_core', 294 '../components/components.gyp:keyed_service_core',
295 '../components/components.gyp:pref_registry', 295 '../components/components.gyp:pref_registry',
296 '../components/components.gyp:sessions', 296 '../components/components.gyp:sessions',
297 '../components/components.gyp:storage_monitor', 297 '../components/components.gyp:storage_monitor',
298 '../components/components.gyp:web_cache_browser', 298 '../components/components.gyp:web_cache_browser',
299 '../components/components.gyp:web_modal', 299 '../components/components.gyp:web_modal',
300 '../content/content.gyp:content_browser', 300 '../content/content.gyp:content_browser',
301 '../device/bluetooth/bluetooth.gyp:device_bluetooth', 301 '../device/bluetooth/bluetooth.gyp:device_bluetooth',
302 '../device/serial/serial.gyp:device_serial', 302 '../device/serial/serial.gyp:device_serial',
303 '../google_apis/google_apis.gyp:google_apis',
303 '../skia/skia.gyp:skia', 304 '../skia/skia.gyp:skia',
304 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 305 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
305 '../third_party/re2/re2.gyp:re2', 306 '../third_party/re2/re2.gyp:re2',
306 'browser/api/api_registration.gyp:extensions_api_registration', 307 'browser/api/api_registration.gyp:extensions_api_registration',
307 'common/api/api.gyp:cast_channel_proto', 308 'common/api/api.gyp:cast_channel_proto',
308 'common/api/api.gyp:extensions_api', 309 'common/api/api.gyp:extensions_api',
309 'extensions_common', 310 'extensions_common',
310 'extensions_resources.gyp:extensions_resources', 311 'extensions_resources.gyp:extensions_resources',
311 'extensions_strings.gyp:extensions_strings', 312 'extensions_strings.gyp:extensions_strings',
312 ], 313 ],
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
710 'browser/script_executor.h', 711 'browser/script_executor.h',
711 'browser/stash_backend.cc', 712 'browser/stash_backend.cc',
712 'browser/stash_backend.h', 713 'browser/stash_backend.h',
713 'browser/state_store.cc', 714 'browser/state_store.cc',
714 'browser/state_store.h', 715 'browser/state_store.h',
715 'browser/suggest_permission_util.cc', 716 'browser/suggest_permission_util.cc',
716 'browser/suggest_permission_util.h', 717 'browser/suggest_permission_util.h',
717 'browser/uninstall_reason.h', 718 'browser/uninstall_reason.h',
718 'browser/update_observer.h', 719 'browser/update_observer.h',
719 'browser/updater/extension_cache.h', 720 'browser/updater/extension_cache.h',
721 'browser/updater/extension_downloader.cc',
722 'browser/updater/extension_downloader.h',
723 'browser/updater/extension_downloader_delegate.cc',
724 'browser/updater/extension_downloader_delegate.h',
720 'browser/updater/manifest_fetch_data.cc', 725 'browser/updater/manifest_fetch_data.cc',
721 'browser/updater/manifest_fetch_data.h', 726 'browser/updater/manifest_fetch_data.h',
722 'browser/updater/null_extension_cache.cc', 727 'browser/updater/null_extension_cache.cc',
723 'browser/updater/null_extension_cache.h', 728 'browser/updater/null_extension_cache.h',
724 'browser/updater/request_queue.h', 729 'browser/updater/request_queue.h',
725 'browser/updater/request_queue_impl.h', 730 'browser/updater/request_queue_impl.h',
726 'browser/updater/safe_manifest_parser.cc', 731 'browser/updater/safe_manifest_parser.cc',
727 'browser/updater/safe_manifest_parser.h', 732 'browser/updater/safe_manifest_parser.h',
728 'browser/url_request_util.cc', 733 'browser/url_request_util.cc',
729 'browser/url_request_util.h', 734 'browser/url_request_util.h',
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1192 'conditions': [ 1197 'conditions': [
1193 ['OS=="win" and win_use_allocator_shim==1', { 1198 ['OS=="win" and win_use_allocator_shim==1', {
1194 'dependencies': [ 1199 'dependencies': [
1195 '../base/allocator/allocator.gyp:allocator', 1200 '../base/allocator/allocator.gyp:allocator',
1196 ], 1201 ],
1197 }], 1202 }],
1198 ], 1203 ],
1199 }, 1204 },
1200 ] 1205 ]
1201 } 1206 }
OLDNEW
« no previous file with comments | « extensions/browser/updater/extension_downloader_delegate.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698