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': { |
(...skipping 13 matching lines...) Expand all Loading... |
24 '../android_webview/android_webview.gyp:android_webview_apk', | 24 '../android_webview/android_webview.gyp:android_webview_apk', |
25 '../chrome/chrome.gyp:chromium_testshell', | 25 '../chrome/chrome.gyp:chromium_testshell', |
26 '../remoting/remoting.gyp:remoting_apk', | 26 '../remoting/remoting.gyp:remoting_apk', |
27 # 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 |
28 # the sync-related code for Android has been upstreamed. | 28 # the sync-related code for Android has been upstreamed. |
29 # See http://crbug.com/159203 | 29 # See http://crbug.com/159203 |
30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', | 30 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio
n_javalib', |
31 ], | 31 ], |
32 }, # target_name: All | 32 }, # target_name: All |
33 { | 33 { |
34 'target_name': 'all_webkit', | 34 'target_name': 'blink_tests', |
35 'type': 'none', | 35 'type': 'none', |
36 'dependencies': [ | 36 'dependencies': [ |
37 '../third_party/WebKit/public/all.gyp:all_blink', | 37 '../third_party/WebKit/public/all.gyp:all_blink', |
38 '../content/content_shell_and_tests.gyp:content_shell_apk', | 38 '../content/content_shell_and_tests.gyp:content_shell_apk', |
39 '../breakpad/breakpad.gyp:dump_syms#host', | 39 '../breakpad/breakpad.gyp:dump_syms#host', |
40 '../breakpad/breakpad.gyp:minidump_stackwalk#host', | 40 '../breakpad/breakpad.gyp:minidump_stackwalk#host', |
41 ], | 41 ], |
| 42 }, # target_name: blink_tests |
| 43 { |
| 44 # TODO(jochen): Eventually remove this target after everybody and the |
| 45 # bots started to use blink_tests only. |
| 46 'target_name': 'all_webkit', |
| 47 'type': 'none', |
| 48 'dependencies': [ |
| 49 'blink_tests', |
| 50 ], |
42 }, # target_name: all_webkit | 51 }, # target_name: all_webkit |
43 { | 52 { |
44 # The current list of tests for android. This is temporary | 53 # The current list of tests for android. This is temporary |
45 # until the full set supported. If adding a new test here, | 54 # until the full set supported. If adding a new test here, |
46 # please also add it to build/android/pylib/gtest/gtest_config.py, | 55 # please also add it to build/android/pylib/gtest/gtest_config.py, |
47 # else the test is not run. | 56 # else the test is not run. |
48 # | 57 # |
49 # WARNING: | 58 # WARNING: |
50 # Do not add targets here without communicating the implications | 59 # Do not add targets here without communicating the implications |
51 # on tryserver triggers and load. Discuss with jrg please. | 60 # on tryserver triggers and load. Discuss with jrg please. |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 { | 177 { |
169 # In-progress targets that are expected to fail and are NOT run | 178 # In-progress targets that are expected to fail and are NOT run |
170 # on any bot. | 179 # on any bot. |
171 'target_name': 'android_in_progress', | 180 'target_name': 'android_in_progress', |
172 'type': 'none', | 181 'type': 'none', |
173 'dependencies': [ | 182 'dependencies': [ |
174 ], | 183 ], |
175 }, | 184 }, |
176 ], # targets | 185 ], # targets |
177 } | 186 } |
OLD | NEW |