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

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: Move run_ui_android_unittests to proper isolate file. 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
« no previous file with comments | « build/android/android.isolate ('k') | ui/android/ui_android_unittests_apk.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 'type': 'none', 48 'type': 'none',
49 'sources': [ 49 'sources': [
50 'java/src/org/chromium/ui/base/WindowAndroid.java', 50 'java/src/org/chromium/ui/base/WindowAndroid.java',
51 'java/src/org/chromium/ui/resources/ResourceManager.java', 51 'java/src/org/chromium/ui/resources/ResourceManager.java',
52 ], 52 ],
53 'variables': { 53 'variables': {
54 'jni_gen_package': 'ui_android', 54 'jni_gen_package': 'ui_android',
55 }, 55 },
56 'includes': [ '../../build/jni_generator.gypi' ], 56 'includes': [ '../../build/jni_generator.gypi' ],
57 }, 57 },
58 { 58 {
59 'target_name': 'android_resource_type_java', 59 'target_name': 'android_resource_type_java',
60 'type': 'none', 60 'type': 'none',
61 'variables': { 61 'variables': {
62 'source_file': 'resources/resource_manager.h', 62 'source_file': 'resources/resource_manager.h',
63 }, 63 },
64 'includes': [ '../../build/android/java_cpp_enum.gypi' ], 64 'includes': [ '../../build/android/java_cpp_enum.gypi' ],
65 }, 65 },
66 { 66 {
67 'target_name': 'bitmap_format_java', 67 'target_name': 'bitmap_format_java',
68 'type': 'none', 68 'type': 'none',
(...skipping 115 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 {
197 'targets': [
198 {
199 'target_name': 'ui_android_unittests_apk_run',
200 'type': 'none',
201 'dependencies': [
202 'ui_android_unittests_apk',
203 ],
204 'includes': [
205 '../../build/isolate.gypi',
206 ],
207 'sources': [
208 'ui_android_unittests_apk.isolate',
209 ],
210 },
211 ]
212 }
213 ],
214 ]
194 } 215 }
OLDNEW
« no previous file with comments | « build/android/android.isolate ('k') | ui/android/ui_android_unittests_apk.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698