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 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
160 'android_unmangled_name': 1, | 160 'android_unmangled_name': 1, |
161 'type': 'none', | 161 'type': 'none', |
162 'variables': { | 162 'variables': { |
163 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', | 163 'grd_file': '../../ui/android/java/strings/android_ui_strings.grd', |
164 }, | 164 }, |
165 'includes': [ | 165 'includes': [ |
166 '../../build/java_strings_grd.gypi', | 166 '../../build/java_strings_grd.gypi', |
167 ], | 167 ], |
168 }, | 168 }, |
169 { | 169 { |
| 170 # GN: //ui/android:ui_junit_tests |
| 171 'target_name': 'ui_junit_tests', |
| 172 'type': 'none', |
| 173 'dependencies': [ |
| 174 'ui_java', |
| 175 '../../base/base.gyp:base', |
| 176 '../../base/base.gyp:base_junit_test_support', |
| 177 '../../testing/android/junit/junit_test.gyp:junit_test_support', |
| 178 ], |
| 179 'variables': { |
| 180 'main_class': 'org.chromium.testing.local.JunitTestMain', |
| 181 'src_paths': [ |
| 182 'junit/', |
| 183 ], |
| 184 }, |
| 185 'includes': [ |
| 186 '../../build/host_jar.gypi', |
| 187 ], |
| 188 }, |
| 189 { |
170 # GN version: //ui/android:ui_android_unittests | 190 # GN version: //ui/android:ui_android_unittests |
171 'target_name': 'ui_android_unittests', | 191 'target_name': 'ui_android_unittests', |
172 'type': '<(gtest_target_type)', | 192 'type': '<(gtest_target_type)', |
173 'dependencies': [ | 193 'dependencies': [ |
174 '../../base/base.gyp:base', | 194 '../../base/base.gyp:base', |
175 '../../base/base.gyp:test_support_base', | 195 '../../base/base.gyp:test_support_base', |
176 '../../cc/cc.gyp:cc', | 196 '../../cc/cc.gyp:cc', |
177 '../../cc/cc_tests.gyp:cc_test_support', | 197 '../../cc/cc_tests.gyp:cc_test_support', |
178 '../../skia/skia.gyp:skia', | 198 '../../skia/skia.gyp:skia', |
179 '../../testing/android/native_test.gyp:native_test_native_code', | 199 '../../testing/android/native_test.gyp:native_test_native_code', |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 ], | 238 ], |
219 'sources': [ | 239 'sources': [ |
220 'ui_android_unittests_apk.isolate', | 240 'ui_android_unittests_apk.isolate', |
221 ], | 241 ], |
222 }, | 242 }, |
223 ] | 243 ] |
224 } | 244 } |
225 ], | 245 ], |
226 ] | 246 ] |
227 } | 247 } |
OLD | NEW |