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

Side by Side Diff: chrome/chrome.gyp

Issue 10885023: Use ChromeBrowserMainPartsAndroid. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | 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 'variables': { 8 'variables': {
9 'version_py_path': 'tools/build/version.py', 9 'version_py_path': 'tools/build/version.py',
10 'version_path': 'VERSION', 10 'version_path': 'VERSION',
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 'browser/debugger/remote_debugging_server.h', 209 'browser/debugger/remote_debugging_server.h',
210 ], 210 ],
211 'conditions': [ 211 'conditions': [
212 ['toolkit_uses_gtk == 1', { 212 ['toolkit_uses_gtk == 1', {
213 'dependencies': [ 213 'dependencies': [
214 '../build/linux/system.gyp:gtk', 214 '../build/linux/system.gyp:gtk',
215 ], 215 ],
216 }], 216 }],
217 ['OS=="android"', { 217 ['OS=="android"', {
218 'sources!': [ 218 'sources!': [
219 'browser/debugger/browser_list_tabcontents_provider.cc',
219 'browser/debugger/devtools_window.cc', 220 'browser/debugger/devtools_window.cc',
220 ], 221 ],
221 }], 222 }],
222 ], 223 ],
223 }, 224 },
224 { 225 {
225 'target_name': 'plugin', 226 'target_name': 'plugin',
226 'type': 'static_library', 227 'type': 'static_library',
227 'variables': { 'enable_wexit_time_destructors': 1, }, 228 'variables': { 'enable_wexit_time_destructors': 1, },
228 'dependencies': [ 229 'dependencies': [
(...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 'variables': { 1085 'variables': {
1085 'package_name': 'chrome', 1086 'package_name': 'chrome',
1086 'java_in_dir': '../chrome/android/java', 1087 'java_in_dir': '../chrome/android/java',
1087 }, 1088 },
1088 'includes': [ '../build/java.gypi' ], 1089 'includes': [ '../build/java.gypi' ],
1089 }, 1090 },
1090 ]}, # 'targets' 1091 ]}, # 'targets'
1091 ], # OS=="android" 1092 ], # OS=="android"
1092 ], # 'conditions' 1093 ], # 'conditions'
1093 } 1094 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698