| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 '../ipc/ipc.gyp:ipc_tests_apk', | 105 '../ipc/ipc.gyp:ipc_tests_apk', |
| 106 '../media/media.gyp:media_unittests_apk', | 106 '../media/media.gyp:media_unittests_apk', |
| 107 '../net/net.gyp:net_unittests_apk', | 107 '../net/net.gyp:net_unittests_apk', |
| 108 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', | 108 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests_apk', |
| 109 '../sql/sql.gyp:sql_unittests_apk', | 109 '../sql/sql.gyp:sql_unittests_apk', |
| 110 '../sync/sync.gyp:sync_unit_tests_apk', | 110 '../sync/sync.gyp:sync_unit_tests_apk', |
| 111 '../ui/ui.gyp:ui_unittests_apk', | 111 '../ui/ui.gyp:ui_unittests_apk', |
| 112 '../android_webview/android_webview.gyp:android_webview_test_apk', | 112 '../android_webview/android_webview.gyp:android_webview_test_apk', |
| 113 '../chrome/chrome.gyp:chromium_testshell_test_apk', | 113 '../chrome/chrome.gyp:chromium_testshell_test_apk', |
| 114 '../chrome/chrome.gyp:chromium_testshell_uiautomator_tests', | 114 '../chrome/chrome.gyp:chromium_testshell_uiautomator_tests', |
| 115 '../webkit/compositor_bindings/compositor_bindings_tests.gyp:webkit_
compositor_bindings_unittests_apk' | 115 '../webkit/renderer/compositor_bindings/compositor_bindings_tests.gy
p:webkit_compositor_bindings_unittests_apk' |
| 116 ], | 116 ], |
| 117 }], | 117 }], |
| 118 ], | 118 ], |
| 119 }, | 119 }, |
| 120 { | 120 { |
| 121 # Experimental / in-progress targets that are expected to fail | 121 # Experimental / in-progress targets that are expected to fail |
| 122 # but we still try to compile them on bots (turning the stage | 122 # but we still try to compile them on bots (turning the stage |
| 123 # orange, not red). | 123 # orange, not red). |
| 124 'target_name': 'android_experimental', | 124 'target_name': 'android_experimental', |
| 125 'type': 'none', | 125 'type': 'none', |
| 126 'dependencies': [ | 126 'dependencies': [ |
| 127 ], | 127 ], |
| 128 }, | 128 }, |
| 129 { | 129 { |
| 130 # In-progress targets that are expected to fail and are NOT run | 130 # In-progress targets that are expected to fail and are NOT run |
| 131 # on any bot. | 131 # on any bot. |
| 132 'target_name': 'android_in_progress', | 132 'target_name': 'android_in_progress', |
| 133 'type': 'none', | 133 'type': 'none', |
| 134 'dependencies': [ | 134 'dependencies': [ |
| 135 ], | 135 ], |
| 136 }, | 136 }, |
| 137 ], # targets | 137 ], # targets |
| 138 } | 138 } |
| OLD | NEW |