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

Side by Side Diff: extensions/shell/app_shell.gyp

Issue 507503002: Remove BrowserThread dependency from usb_service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move device/common to device/core. 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/browser/api/usb_private/usb_private_api.cc ('k') | extensions/shell/browser/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 {
11 'target_name': 'app_shell_lib', 11 'target_name': 'app_shell_lib',
12 'type': 'static_library', 12 'type': 'static_library',
13 'defines!': ['CONTENT_IMPLEMENTATION'], 13 'defines!': ['CONTENT_IMPLEMENTATION'],
14 'dependencies': [ 14 'dependencies': [
15 'app_shell_version_header', 15 'app_shell_version_header',
16 '<(DEPTH)/base/base.gyp:base', 16 '<(DEPTH)/base/base.gyp:base',
17 '<(DEPTH)/base/base.gyp:base_prefs_test_support', 17 '<(DEPTH)/base/base.gyp:base_prefs_test_support',
18 '<(DEPTH)/components/components.gyp:omaha_query_params', 18 '<(DEPTH)/components/components.gyp:omaha_query_params',
19 '<(DEPTH)/components/components.gyp:pref_registry', 19 '<(DEPTH)/components/components.gyp:pref_registry',
20 '<(DEPTH)/components/components.gyp:user_prefs', 20 '<(DEPTH)/components/components.gyp:user_prefs',
21 '<(DEPTH)/content/content.gyp:content', 21 '<(DEPTH)/content/content.gyp:content',
22 '<(DEPTH)/content/content.gyp:content_gpu', 22 '<(DEPTH)/content/content.gyp:content_gpu',
23 '<(DEPTH)/content/content.gyp:content_ppapi_plugin', 23 '<(DEPTH)/content/content.gyp:content_ppapi_plugin',
24 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_lib', 24 '<(DEPTH)/content/content_shell_and_tests.gyp:content_shell_lib',
25 '<(DEPTH)/device/core/core.gyp:device_core',
25 '<(DEPTH)/device/hid/hid.gyp:device_hid', 26 '<(DEPTH)/device/hid/hid.gyp:device_hid',
26 '<(DEPTH)/extensions/browser/api/api_registration.gyp:extensions_api_reg istration', 27 '<(DEPTH)/extensions/browser/api/api_registration.gyp:extensions_api_reg istration',
27 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api', 28 '<(DEPTH)/extensions/common/api/api.gyp:extensions_api',
28 '<(DEPTH)/extensions/extensions.gyp:extensions_browser', 29 '<(DEPTH)/extensions/extensions.gyp:extensions_browser',
29 '<(DEPTH)/extensions/extensions.gyp:extensions_common', 30 '<(DEPTH)/extensions/extensions.gyp:extensions_common',
30 '<(DEPTH)/extensions/extensions.gyp:extensions_renderer', 31 '<(DEPTH)/extensions/extensions.gyp:extensions_renderer',
31 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak', 32 '<(DEPTH)/extensions/extensions.gyp:extensions_shell_and_test_pak',
32 '<(DEPTH)/extensions/extensions_resources.gyp:extensions_resources', 33 '<(DEPTH)/extensions/extensions_resources.gyp:extensions_resources',
33 '<(DEPTH)/extensions/shell/browser/api/api_registration.gyp:shell_api_re gistration', 34 '<(DEPTH)/extensions/shell/browser/api/api_registration.gyp:shell_api_re gistration',
34 '<(DEPTH)/extensions/shell/common/api/api.gyp:shell_api', 35 '<(DEPTH)/extensions/shell/common/api/api.gyp:shell_api',
(...skipping 29 matching lines...) Expand all
64 'browser/shell_app_window_controller.h', 65 'browser/shell_app_window_controller.h',
65 'browser/shell_browser_context.cc', 66 'browser/shell_browser_context.cc',
66 'browser/shell_browser_context.h', 67 'browser/shell_browser_context.h',
67 'browser/shell_browser_main_delegate.h', 68 'browser/shell_browser_main_delegate.h',
68 'browser/shell_browser_main_parts.cc', 69 'browser/shell_browser_main_parts.cc',
69 'browser/shell_browser_main_parts.h', 70 'browser/shell_browser_main_parts.h',
70 'browser/shell_content_browser_client.cc', 71 'browser/shell_content_browser_client.cc',
71 'browser/shell_content_browser_client.h', 72 'browser/shell_content_browser_client.h',
72 'browser/shell_desktop_controller.cc', 73 'browser/shell_desktop_controller.cc',
73 'browser/shell_desktop_controller.h', 74 'browser/shell_desktop_controller.h',
75 'browser/shell_device_client.cc',
76 'browser/shell_device_client.h',
74 'browser/shell_extension_host_delegate.cc', 77 'browser/shell_extension_host_delegate.cc',
75 'browser/shell_extension_host_delegate.h', 78 'browser/shell_extension_host_delegate.h',
76 'browser/shell_extension_system.cc', 79 'browser/shell_extension_system.cc',
77 'browser/shell_extension_system.h', 80 'browser/shell_extension_system.h',
78 'browser/shell_extension_system_factory.cc', 81 'browser/shell_extension_system_factory.cc',
79 'browser/shell_extension_system_factory.h', 82 'browser/shell_extension_system_factory.h',
80 'browser/shell_extension_web_contents_observer.cc', 83 'browser/shell_extension_web_contents_observer.cc',
81 'browser/shell_extension_web_contents_observer.h', 84 'browser/shell_extension_web_contents_observer.h',
82 'browser/shell_extensions_browser_client.cc', 85 'browser/shell_extensions_browser_client.cc',
83 'browser/shell_extensions_browser_client.h', 86 'browser/shell_extensions_browser_client.h',
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 '<@(_outputs)', 256 '<@(_outputs)',
254 ], 257 ],
255 'includes': [ 258 'includes': [
256 '../../build/util/version.gypi', 259 '../../build/util/version.gypi',
257 ], 260 ],
258 }, 261 },
259 ], 262 ],
260 }, 263 },
261 ], # targets 264 ], # targets
262 } 265 }
OLDNEW
« no previous file with comments | « extensions/browser/api/usb_private/usb_private_api.cc ('k') | extensions/shell/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698