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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 | 192 |
193 # GYP: //content/content_tests.gypi:content_junit_tests | 193 # GYP: //content/content_tests.gypi:content_junit_tests |
194 junit_binary("content_junit_tests") { | 194 junit_binary("content_junit_tests") { |
195 java_files = [ "junit/src/org/chromium/content/browser/input/GamepadMappingsTe
st.java" ] | 195 java_files = [ "junit/src/org/chromium/content/browser/input/GamepadMappingsTe
st.java" ] |
196 deps = [ | 196 deps = [ |
197 ":content_java", | 197 ":content_java", |
198 "//base:base_java", | 198 "//base:base_java", |
199 "//base:base_java_test_support", | 199 "//base:base_java_test_support", |
200 ] | 200 ] |
201 } | 201 } |
202 # TODO(GYP): content_icudata | |
OLD | NEW |