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

Side by Side Diff: chrome/chrome.gyp

Issue 17389005: [Android] Abandon bundling DevTools frontends for mobile apps (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 5 'variables': {
6 'chromium_code': 1, 6 'chromium_code': 1,
7 7
8 # Define the common dependencies that contain all the actual 8 # Define the common dependencies that contain all the actual
9 # Chromium functionality. This list gets pulled in below by 9 # Chromium functionality. This list gets pulled in below by
10 # the link of the actual chrome (or chromium) executable on 10 # the link of the actual chrome (or chromium) executable on
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 'target_name': 'debugger', 202 'target_name': 'debugger',
203 'type': 'static_library', 203 'type': 'static_library',
204 'variables': { 'enable_wexit_time_destructors': 1, }, 204 'variables': { 'enable_wexit_time_destructors': 1, },
205 'dependencies': [ 205 'dependencies': [
206 'chrome_resources.gyp:chrome_extra_resources', 206 'chrome_resources.gyp:chrome_extra_resources',
207 'chrome_resources.gyp:chrome_resources', 207 'chrome_resources.gyp:chrome_resources',
208 'chrome_resources.gyp:chrome_strings', 208 'chrome_resources.gyp:chrome_strings',
209 'chrome_resources.gyp:theme_resources', 209 'chrome_resources.gyp:theme_resources',
210 'common/extensions/api/api.gyp:api', 210 'common/extensions/api/api.gyp:api',
211 '../base/base.gyp:base', 211 '../base/base.gyp:base',
212 '../components/components.gyp:devtools_remote_frontend',
212 '../content/content.gyp:content_browser', 213 '../content/content.gyp:content_browser',
213 '../net/net.gyp:http_server', 214 '../net/net.gyp:http_server',
214 '../net/net.gyp:net', 215 '../net/net.gyp:net',
215 '../skia/skia.gyp:skia', 216 '../skia/skia.gyp:skia',
216 '../third_party/icu/icu.gyp:icui18n', 217 '../third_party/icu/icu.gyp:icui18n',
217 '../third_party/icu/icu.gyp:icuuc', 218 '../third_party/icu/icu.gyp:icuuc',
218 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase', 219 '../third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
219 ], 220 ],
220 'include_dirs': [ 221 'include_dirs': [
221 '..', 222 '..',
(...skipping 933 matching lines...) Expand 10 before | Expand all | Expand 10 after
1155 ], # 'targets' 1156 ], # 'targets'
1156 'includes': [ 1157 'includes': [
1157 'chrome_android.gypi', 1158 'chrome_android.gypi',
1158 ]}, # 'includes' 1159 ]}, # 'includes'
1159 ], # OS=="android" 1160 ], # OS=="android"
1160 ['configuration_policy==1 and OS!="android"', { 1161 ['configuration_policy==1 and OS!="android"', {
1161 'includes': [ 'policy.gypi', ], 1162 'includes': [ 'policy.gypi', ],
1162 }], 1163 }],
1163 ], # 'conditions' 1164 ], # 'conditions'
1164 } 1165 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698