Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 184 'dependencies': [ | 184 'dependencies': [ |
| 185 'ui_android_unittests', | 185 'ui_android_unittests', |
| 186 'ui_java', | 186 'ui_java', |
| 187 ], | 187 ], |
| 188 'variables': { | 188 'variables': { |
| 189 'test_suite_name': 'ui_android_unittests', | 189 'test_suite_name': 'ui_android_unittests', |
| 190 }, | 190 }, |
| 191 'includes': [ '../../build/apk_test.gypi' ], | 191 'includes': [ '../../build/apk_test.gypi' ], |
| 192 }, | 192 }, |
| 193 ], | 193 ], |
| 194 'conditions': [ | |
| 195 ['test_isolation_mode != "noop"', { | |
| 196 'targets': [ | |
|
M-A Ruel
2015/09/09 18:14:23
+2 indent
ghost stip (do not use)
2015/09/11 21:27:52
"Done."
| |
| 197 { | |
| 198 'target_name': 'ui_android_unittests_apk_run', | |
| 199 'type': 'none', | |
| 200 'dependencies': [ | |
| 201 'ui_android_unittests_apk', | |
| 202 ], | |
| 203 'includes': [ | |
| 204 '../../build/isolate.gypi', | |
| 205 ], | |
| 206 'sources': [ | |
| 207 'ui_android_unittests_apk.isolate', | |
| 208 ], | |
| 209 }, | |
| 210 ] | |
| 211 } | |
| 212 ], | |
| 213 ] | |
| 194 } | 214 } |
| OLD | NEW |