| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 } | 206 } |
| 207 | 207 |
| 208 group("jni") { | 208 group("jni") { |
| 209 deps = [ | 209 deps = [ |
| 210 ":content_jni_headers", | 210 ":content_jni_headers", |
| 211 ":jar_jni", | 211 ":jar_jni", |
| 212 ] | 212 ] |
| 213 } | 213 } |
| 214 | 214 |
| 215 android_library("content_javatests") { | 215 android_library("content_javatests") { |
| 216 testonly = true |
| 216 deps = [ | 217 deps = [ |
| 217 "//base:base_java", | 218 "//base:base_java", |
| 218 "//base:base_java_test_support", | 219 "//base:base_java_test_support", |
| 219 "//content/public/test/android:content_java_test_support", | 220 "//content/public/test/android:content_java_test_support", |
| 220 "//content/shell/android:content_shell_java", | 221 "//content/shell/android:content_shell_java", |
| 221 "//content/shell/android:content_shell_java_resources", | 222 "//content/shell/android:content_shell_java_resources", |
| 222 "//content/shell/android:content_shell_apk_java", | 223 "//content/shell/android:content_shell_apk_java", |
| 223 "//content/shell/android:content_shell_test_java", | 224 "//content/shell/android:content_shell_test_java", |
| 224 "//media/base/android:media_java", | 225 "//media/base/android:media_java", |
| 225 "//net/android:net_java", | 226 "//net/android:net_java", |
| 226 "//net/android:net_java_test_support", | 227 "//net/android:net_java_test_support", |
| 227 "//ui/android:ui_java", | 228 "//ui/android:ui_java", |
| 228 ":content_java", | 229 ":content_java", |
| 229 ] | 230 ] |
| 230 | 231 |
| 231 DEPRECATED_java_in_dir = "javatests/src" | 232 DEPRECATED_java_in_dir = "javatests/src" |
| 232 } | 233 } |
| 233 | 234 |
| 234 | 235 |
| 235 # TODO(GYP): content_icudata | 236 # TODO(GYP): content_icudata |
| OLD | NEW |