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 1054 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 { | 1065 { |
1066 'targets': [ | 1066 'targets': [ |
1067 { | 1067 { |
1068 'target_name': 'chrome_java', | 1068 'target_name': 'chrome_java', |
1069 'type': 'none', | 1069 'type': 'none', |
1070 'dependencies': [ | 1070 'dependencies': [ |
1071 '../base/base.gyp:base', | 1071 '../base/base.gyp:base', |
1072 '../content/content.gyp:content_java', | 1072 '../content/content.gyp:content_java', |
1073 '../content/content.gyp:navigation_interception_java', | 1073 '../content/content.gyp:navigation_interception_java', |
1074 '../content/content.gyp:web_contents_delegate_android_java', | 1074 '../content/content.gyp:web_contents_delegate_android_java', |
| 1075 '../third_party/guava/guava.gyp:guava_javalib', |
1075 '../ui/ui.gyp:ui_java', | 1076 '../ui/ui.gyp:ui_java', |
1076 ], | 1077 ], |
1077 'variables': { | 1078 'variables': { |
1078 'package_name': 'chrome', | 1079 'package_name': 'chrome', |
1079 'java_in_dir': '../chrome/android/java', | 1080 'java_in_dir': '../chrome/android/java', |
1080 'has_java_resources': 1, | 1081 'has_java_resources': 1, |
1081 'R_package': 'org.chromium.chrome', | 1082 'R_package': 'org.chromium.chrome', |
1082 'R_package_relpath': 'org/chromium/chrome', | 1083 'R_package_relpath': 'org/chromium/chrome', |
1083 }, | 1084 }, |
1084 'includes': [ | 1085 'includes': [ |
1085 '../build/java.gypi', | 1086 '../build/java.gypi', |
1086 ], | 1087 ], |
1087 }, | 1088 }, |
1088 ], # 'targets' | 1089 ], # 'targets' |
1089 'includes': [ | 1090 'includes': [ |
1090 'chrome_android.gypi', | 1091 'chrome_android.gypi', |
1091 ]}, # 'includes' | 1092 ]}, # 'includes' |
1092 ], # OS=="android" | 1093 ], # OS=="android" |
1093 ], # 'conditions' | 1094 ], # 'conditions' |
1094 } | 1095 } |
OLD | NEW |