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

Side by Side Diff: chrome/chrome.gyp

Issue 10918113: Add initial Chromium TestShell support for Android (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Yaron's Comments 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 1073 matching lines...) Expand 10 before | Expand all | Expand 10 after
1084 'export_dependent_settings': [ 1084 'export_dependent_settings': [
1085 '../base/base.gyp:base_java', 1085 '../base/base.gyp:base_java',
1086 '../chrome/browser/component/components.gyp:web_contents_delegate_an droid_java', 1086 '../chrome/browser/component/components.gyp:web_contents_delegate_an droid_java',
1087 '../content/content.gyp:content_java', 1087 '../content/content.gyp:content_java',
1088 '../net/net.gyp:net_java', 1088 '../net/net.gyp:net_java',
1089 ], 1089 ],
1090 'variables': { 1090 'variables': {
1091 'package_name': 'chrome', 1091 'package_name': 'chrome',
1092 'java_in_dir': '../chrome/android/java', 1092 'java_in_dir': '../chrome/android/java',
1093 }, 1093 },
1094 'includes': [ '../build/java.gypi' ], 1094 'includes': [
1095 '../build/java.gypi',
1096 ],
1095 }, 1097 },
1096 ]}, # 'targets' 1098 ], # 'targets'
1099 'includes': [
1100 'chrome_android.gypi',
1101 ]}, # 'includes'
1097 ], # OS=="android" 1102 ], # OS=="android"
1098 ], # 'conditions' 1103 ], # 'conditions'
1099 } 1104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698