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 28 matching lines...) Expand all Loading... |
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_perftests_apk', |
47 '../cc/cc_tests.gyp:cc_unittests', | 47 '../cc/cc_tests.gyp:cc_unittests', |
48 '../chrome/chrome.gyp:unit_tests', | 48 '../chrome/chrome.gyp:unit_tests', |
| 49 '../components/components.gyp:components_unittests', |
49 '../content/content.gyp:content_shell_test_apk', | 50 '../content/content.gyp:content_shell_test_apk', |
50 '../content/content.gyp:content_unittests', | 51 '../content/content.gyp:content_unittests', |
51 '../gpu/gpu.gyp:gpu_unittests', | 52 '../gpu/gpu.gyp:gpu_unittests', |
52 '../ipc/ipc.gyp:ipc_tests', | 53 '../ipc/ipc.gyp:ipc_tests', |
53 '../media/media.gyp:media_unittests', | 54 '../media/media.gyp:media_unittests', |
54 '../net/net.gyp:net_unittests', | 55 '../net/net.gyp:net_unittests', |
55 '../sandbox/sandbox.gyp:sandbox_linux_unittests', | 56 '../sandbox/sandbox.gyp:sandbox_linux_unittests', |
56 '../sql/sql.gyp:sql_unittests', | 57 '../sql/sql.gyp:sql_unittests', |
57 '../sync/sync.gyp:sync_unit_tests', | 58 '../sync/sync.gyp:sync_unit_tests', |
58 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', | 59 '../third_party/WebKit/Source/WebKit/chromium/All.gyp:*', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 # In-progress targets that are expected to fail and are NOT run | 120 # In-progress targets that are expected to fail and are NOT run |
120 # on any bot. | 121 # on any bot. |
121 'target_name': 'android_in_progress', | 122 'target_name': 'android_in_progress', |
122 'type': 'none', | 123 'type': 'none', |
123 'dependencies': [ | 124 'dependencies': [ |
124 '../content/content.gyp:content_browsertests', | 125 '../content/content.gyp:content_browsertests', |
125 ], | 126 ], |
126 }, | 127 }, |
127 ], # targets | 128 ], # targets |
128 } | 129 } |
OLD | NEW |