OLD | NEW |
---|---|
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 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1078 ['chromeos==1', { | 1078 ['chromeos==1', { |
1079 'includes': [ 'chrome_browser_chromeos.gypi' ], | 1079 'includes': [ 'chrome_browser_chromeos.gypi' ], |
1080 }], # chromeos==1 | 1080 }], # chromeos==1 |
1081 ['OS=="android"', | 1081 ['OS=="android"', |
1082 { | 1082 { |
1083 'targets': [ | 1083 'targets': [ |
1084 { | 1084 { |
1085 'target_name': 'chrome_java', | 1085 'target_name': 'chrome_java', |
1086 'type': 'none', | 1086 'type': 'none', |
1087 'dependencies': [ | 1087 'dependencies': [ |
1088 | |
Yaron
2013/03/16 00:15:30
Nit: remove blank line
apiccion
2013/03/18 19:30:36
Done.
| |
1088 'profile_sync_service_model_type_selection_java', | 1089 'profile_sync_service_model_type_selection_java', |
1089 'toolbar_model_security_levels_java', | 1090 'toolbar_model_security_levels_java', |
1090 '../base/base.gyp:base', | 1091 '../base/base.gyp:base', |
1091 '../components/components.gyp:navigation_interception_java', | 1092 '../components/components.gyp:navigation_interception_java', |
1093 '../components/components.gyp:autofill_android_java', | |
1092 '../components/components.gyp:web_contents_delegate_android_java', | 1094 '../components/components.gyp:web_contents_delegate_android_java', |
1093 '../content/content.gyp:content_java', | 1095 '../content/content.gyp:content_java', |
1094 '../sync/sync.gyp:sync_java', | 1096 '../sync/sync.gyp:sync_java', |
1095 '../third_party/guava/guava.gyp:guava_javalib', | 1097 '../third_party/guava/guava.gyp:guava_javalib', |
1096 '../ui/ui.gyp:ui_java', | 1098 '../ui/ui.gyp:ui_java', |
1097 ], | 1099 ], |
1098 'variables': { | 1100 'variables': { |
1099 'java_in_dir': '../chrome/android/java', | 1101 'java_in_dir': '../chrome/android/java', |
1100 'has_java_resources': 1, | 1102 'has_java_resources': 1, |
1101 'R_package': 'org.chromium.chrome', | 1103 'R_package': 'org.chromium.chrome', |
1102 'R_package_relpath': 'org/chromium/chrome', | 1104 'R_package_relpath': 'org/chromium/chrome', |
1103 'java_strings_grd': 'android_chrome_strings.grd', | 1105 'java_strings_grd': 'android_chrome_strings.grd', |
1104 }, | 1106 }, |
1105 'includes': [ | 1107 'includes': [ |
1106 '../build/java.gypi', | 1108 '../build/java.gypi', |
1107 ], | 1109 ], |
1108 }, | 1110 }, |
1109 ], # 'targets' | 1111 ], # 'targets' |
1110 'includes': [ | 1112 'includes': [ |
1111 'chrome_android.gypi', | 1113 'chrome_android.gypi', |
1112 ]}, # 'includes' | 1114 ]}, # 'includes' |
1113 ], # OS=="android" | 1115 ], # OS=="android" |
1114 ], # 'conditions' | 1116 ], # 'conditions' |
1115 } | 1117 } |
OLD | NEW |