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 25 matching lines...) Expand all Loading... |
36 # | 36 # |
37 # WARNING: | 37 # WARNING: |
38 # Do not add targets here without communicating the implications | 38 # Do not add targets here without communicating the implications |
39 # on tryserver triggers and load. Discuss with jrg please. | 39 # on tryserver triggers and load. Discuss with jrg please. |
40 'target_name': 'android_builder_tests', | 40 'target_name': 'android_builder_tests', |
41 'type': 'none', | 41 'type': 'none', |
42 'dependencies': [ | 42 'dependencies': [ |
43 '../android_webview/android_webview.gyp:android_webview_unittests', | 43 '../android_webview/android_webview.gyp:android_webview_unittests', |
44 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', | 44 '../base/android/jni_generator/jni_generator.gyp:jni_generator_tests', |
45 '../base/base.gyp:base_unittests', | 45 '../base/base.gyp:base_unittests', |
| 46 '../cc/cc_tests.gyp:cc_perftests_apk', |
46 '../cc/cc_tests.gyp:cc_unittests', | 47 '../cc/cc_tests.gyp:cc_unittests', |
47 '../chrome/chrome.gyp:unit_tests', | 48 '../chrome/chrome.gyp:unit_tests', |
48 '../content/content.gyp:content_shell_test_apk', | 49 '../content/content.gyp:content_shell_test_apk', |
49 '../content/content.gyp:content_unittests', | 50 '../content/content.gyp:content_unittests', |
50 '../gpu/gpu.gyp:gpu_unittests', | 51 '../gpu/gpu.gyp:gpu_unittests', |
51 '../ipc/ipc.gyp:ipc_tests', | 52 '../ipc/ipc.gyp:ipc_tests', |
52 '../media/media.gyp:media_unittests', | 53 '../media/media.gyp:media_unittests', |
53 '../net/net.gyp:net_unittests', | 54 '../net/net.gyp:net_unittests', |
54 '../sql/sql.gyp:sql_unittests', | 55 '../sql/sql.gyp:sql_unittests', |
55 '../sync/sync.gyp:sync_unit_tests', | 56 '../sync/sync.gyp:sync_unit_tests', |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
118 # In-progress targets that are expected to fail and are NOT run | 119 # In-progress targets that are expected to fail and are NOT run |
119 # on any bot. | 120 # on any bot. |
120 'target_name': 'android_in_progress', | 121 'target_name': 'android_in_progress', |
121 'type': 'none', | 122 'type': 'none', |
122 'dependencies': [ | 123 'dependencies': [ |
123 '../content/content.gyp:content_browsertests', | 124 '../content/content.gyp:content_browsertests', |
124 ], | 125 ], |
125 }, | 126 }, |
126 ], # targets | 127 ], # targets |
127 } | 128 } |
OLD | NEW |