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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 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 { |
| 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 } |
OLD | NEW |