| 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 1034 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1045 'includes': [ 'chrome_browser_chromeos.gypi' ], | 1045 'includes': [ 'chrome_browser_chromeos.gypi' ], |
| 1046 }], # chromeos==1 | 1046 }], # chromeos==1 |
| 1047 ['OS=="android"', | 1047 ['OS=="android"', |
| 1048 { | 1048 { |
| 1049 'targets': [ | 1049 'targets': [ |
| 1050 { | 1050 { |
| 1051 'target_name': 'chrome_java', | 1051 'target_name': 'chrome_java', |
| 1052 'type': 'none', | 1052 'type': 'none', |
| 1053 'dependencies': [ | 1053 'dependencies': [ |
| 1054 '../base/base.gyp:base', | 1054 '../base/base.gyp:base', |
| 1055 '../chrome/browser/component/components.gyp:web_contents_delegate_an
droid_java', | 1055 '../content/content.gyp:content_java', |
| 1056 '../content/content.gyp:navigation_interception_java', | 1056 '../content/content.gyp:navigation_interception_java', |
| 1057 '../content/content.gyp:content_java', | 1057 '../content/content.gyp:web_contents_delegate_android_java', |
| 1058 '../ui/ui.gyp:ui_java', | 1058 '../ui/ui.gyp:ui_java', |
| 1059 ], | 1059 ], |
| 1060 'variables': { | 1060 'variables': { |
| 1061 'package_name': 'chrome', | 1061 'package_name': 'chrome', |
| 1062 'java_in_dir': '../chrome/android/java', | 1062 'java_in_dir': '../chrome/android/java', |
| 1063 }, | 1063 }, |
| 1064 'includes': [ | 1064 'includes': [ |
| 1065 '../build/java.gypi', | 1065 '../build/java.gypi', |
| 1066 ], | 1066 ], |
| 1067 }, | 1067 }, |
| 1068 ], # 'targets' | 1068 ], # 'targets' |
| 1069 'includes': [ | 1069 'includes': [ |
| 1070 'chrome_android.gypi', | 1070 'chrome_android.gypi', |
| 1071 ]}, # 'includes' | 1071 ]}, # 'includes' |
| 1072 ], # OS=="android" | 1072 ], # OS=="android" |
| 1073 ], # 'conditions' | 1073 ], # 'conditions' |
| 1074 } | 1074 } |
| OLD | NEW |