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

Side by Side Diff: chrome/chrome.gyp

Issue 10830012: [Android] Add chrome_java target for building Java code in the chromium layer. (Closed) Base URL: http://git.chromium.org/chromium/src.git@reland
Patch Set: Created 8 years, 4 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
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 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after
1056 'safe_browsing_proto', 1056 'safe_browsing_proto',
1057 ], 1057 ],
1058 'sources': [ 1058 'sources': [
1059 'browser/safe_browsing/signature_util.h', 1059 'browser/safe_browsing/signature_util.h',
1060 'browser/safe_browsing/signature_util_win.cc', 1060 'browser/safe_browsing/signature_util_win.cc',
1061 'tools/safe_browsing/sb_sigutil.cc', 1061 'tools/safe_browsing/sb_sigutil.cc',
1062 ], 1062 ],
1063 }, 1063 },
1064 ]}, # 'targets' 1064 ]}, # 'targets'
1065 ], # OS=="win" 1065 ], # OS=="win"
1066 ['OS=="android"',
1067 {
1068 'targets': [
1069 {
1070 'target_name': 'chrome_java',
1071 'type': 'none',
1072 'dependencies': [
1073 '../base/base.gyp:base_java',
1074 '../net/net.gyp:net_java',
1075 '../content/content.gyp:content_java',
1076 ],
1077 'variables': {
1078 'package_name': 'chrome',
1079 'java_in_dir': '../chrome/android/java',
1080 },
1081 'includes': [ '../build/java.gypi' ],
1082 },
1083 ]}, # 'targets'
1084 ], #OS=="android"
1066 ], # 'conditions' 1085 ], # 'conditions'
1067 } 1086 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698