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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 '../ui/ui.gyp:ui_unittests_apk', | 109 '../ui/ui.gyp:ui_unittests_apk', |
110 '../android_webview/android_webview.gyp:android_webview_test_apk', | 110 '../android_webview/android_webview.gyp:android_webview_test_apk', |
111 '../chrome/chrome.gyp:chromium_testshell_test_apk', | 111 '../chrome/chrome.gyp:chromium_testshell_test_apk', |
112 '../chrome/chrome.gyp:chromium_testshell_uiautomator_tests', | 112 '../chrome/chrome.gyp:chromium_testshell_uiautomator_tests', |
113 '../webkit/renderer/compositor_bindings/compositor_bindings_tests.gy
p:webkit_compositor_bindings_unittests_apk' | 113 '../webkit/renderer/compositor_bindings/compositor_bindings_tests.gy
p:webkit_compositor_bindings_unittests_apk' |
114 ], | 114 ], |
115 }], | 115 }], |
116 ], | 116 ], |
117 }, | 117 }, |
118 { | 118 { |
| 119 # WebRTC Android APK tests. |
| 120 'target_name': 'android_builder_webrtc', |
| 121 'type': 'none', |
| 122 'variables': { |
| 123 # WebRTC tests are normally not built by Chromium bots. |
| 124 'include_tests%': 0, |
| 125 }, |
| 126 'conditions': [ |
| 127 ['"<(gtest_target_type)"=="shared_library" and include_tests==1', { |
| 128 'dependencies': [ |
| 129 '../third_party/webrtc/build/apk_tests.gyp:*', |
| 130 ], |
| 131 }], |
| 132 ], |
| 133 }, # target_name: android_builder_webrtc |
| 134 { |
119 # Experimental / in-progress targets that are expected to fail | 135 # Experimental / in-progress targets that are expected to fail |
120 # but we still try to compile them on bots (turning the stage | 136 # but we still try to compile them on bots (turning the stage |
121 # orange, not red). | 137 # orange, not red). |
122 'target_name': 'android_experimental', | 138 'target_name': 'android_experimental', |
123 'type': 'none', | 139 'type': 'none', |
124 'dependencies': [ | 140 'dependencies': [ |
125 ], | 141 ], |
126 }, | 142 }, |
127 { | 143 { |
128 # In-progress targets that are expected to fail and are NOT run | 144 # In-progress targets that are expected to fail and are NOT run |
129 # on any bot. | 145 # on any bot. |
130 'target_name': 'android_in_progress', | 146 'target_name': 'android_in_progress', |
131 'type': 'none', | 147 'type': 'none', |
132 'dependencies': [ | 148 'dependencies': [ |
133 ], | 149 ], |
134 }, | 150 }, |
135 ], # targets | 151 ], # targets |
136 } | 152 } |
OLD | NEW |