Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: ui/android/ui_android.gyp

Issue 1324293002: Isolate ui_android_unittests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698