OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/android/rules.gni") | 6 import("//build/config/android/rules.gni") |
7 | 7 |
8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", | 8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", |
9 [ rebase_path("../../content_jni.gypi") ], | 9 [ rebase_path("../../content_jni.gypi") ], |
10 "scope", | 10 "scope", |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
171 "//net/android:net_java_test_support", | 171 "//net/android:net_java_test_support", |
172 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s_java", | 172 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s_java", |
173 "//third_party/mojo/src/mojo/public/java:bindings", | 173 "//third_party/mojo/src/mojo/public/java:bindings", |
174 "//third_party/mojo/src/mojo/public/java:system", | 174 "//third_party/mojo/src/mojo/public/java:system", |
175 "//ui/android:ui_java", | 175 "//ui/android:ui_java", |
176 ":content_java", | 176 ":content_java", |
177 ] | 177 ] |
178 | 178 |
179 DEPRECATED_java_in_dir = "javatests/src" | 179 DEPRECATED_java_in_dir = "javatests/src" |
180 } | 180 } |
| 181 |
| 182 # GYP: //content/content_tests.gypi:content_shell_unit_tests |
| 183 java_binary("chrome_shell_unit_tests") { |
| 184 testonly = true |
| 185 java_files = [ "junit/src/org/chromium/content/browser/input/GamepadMappingsTe
st.java" ] |
| 186 main_class = "org.chromium.testing.local.JunitTestMain" |
| 187 deps = [ |
| 188 ":content_java", |
| 189 "//base:base_java", |
| 190 "//base:base_java_test_support", |
| 191 "//testing/android/junit:junit_test_support", |
| 192 ] |
| 193 } |
181 # TODO(GYP): content_icudata | 194 # TODO(GYP): content_icudata |
OLD | NEW |