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 # This is all.gyp file for Android to prevent breakage in Android and other | 5 # This is all.gyp file for Android to prevent breakage in Android and other |
6 # platform; It will be churning a lot in the short term and eventually be merged | 6 # platform; It will be churning a lot in the short term and eventually be merged |
7 # into all.gyp. | 7 # into all.gyp. |
8 | 8 |
9 { | 9 { |
10 'variables': { | 10 'variables': { |
11 # A hook that can be overridden in other repositories to add additional | 11 # A hook that can be overridden in other repositories to add additional |
12 # compilation targets to 'All' | 12 # compilation targets to 'All' |
13 'android_app_targets%': [], | 13 'android_app_targets%': [], |
14 }, | 14 }, |
15 'targets': [ | 15 'targets': [ |
16 { | 16 { |
17 'target_name': 'All', | 17 'target_name': 'All', |
18 'type': 'none', | 18 'type': 'none', |
19 'dependencies': [ | 19 'dependencies': [ |
20 '../content/content_shell_and_tests.gyp:content_shell_apk', | 20 '../content/content_shell_and_tests.gyp:content_shell_apk', |
| 21 '../mojo/mojo.gyp:mojo_shell_apk', |
21 '<@(android_app_targets)', | 22 '<@(android_app_targets)', |
22 'android_builder_tests', | 23 'android_builder_tests', |
23 '../android_webview/android_webview.gyp:android_webview_apk', | 24 '../android_webview/android_webview.gyp:android_webview_apk', |
24 '../chrome/chrome.gyp:chromium_testshell', | 25 '../chrome/chrome.gyp:chromium_testshell', |
25 '../remoting/remoting.gyp:remoting_apk', | 26 '../remoting/remoting.gyp:remoting_apk', |
26 # TODO(nyquist) This should instead by a target for sync when all of | 27 # TODO(nyquist) This should instead by a target for sync when all of |
27 # the sync-related code for Android has been upstreamed. | 28 # the sync-related code for Android has been upstreamed. |
28 # See http://crbug.com/159203 | 29 # See http://crbug.com/159203 |
29 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', | 30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', |
30 ], | 31 ], |
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 { | 146 { |
146 # In-progress targets that are expected to fail and are NOT run | 147 # In-progress targets that are expected to fail and are NOT run |
147 # on any bot. | 148 # on any bot. |
148 'target_name': 'android_in_progress', | 149 'target_name': 'android_in_progress', |
149 'type': 'none', | 150 'type': 'none', |
150 'dependencies': [ | 151 'dependencies': [ |
151 ], | 152 ], |
152 }, | 153 }, |
153 ], # targets | 154 ], # targets |
154 } | 155 } |
OLD | NEW |