| 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 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 222 ":jar_jni", | 222 ":jar_jni", |
| 223 ] | 223 ] |
| 224 } | 224 } |
| 225 | 225 |
| 226 android_library("content_javatests") { | 226 android_library("content_javatests") { |
| 227 deps = [ | 227 deps = [ |
| 228 "//base:base_java", | 228 "//base:base_java", |
| 229 "//base:base_java_test_support", | 229 "//base:base_java_test_support", |
| 230 "//content/public/test/android:content_java_test_support", | 230 "//content/public/test/android:content_java_test_support", |
| 231 "//content/shell/android:content_shell_java", | 231 "//content/shell/android:content_shell_java", |
| 232 "//content/shell/android:content_shell_java_resources", |
| 232 "//content/shell/android:content_shell_apk_java", | 233 "//content/shell/android:content_shell_apk_java", |
| 233 "//content/shell/android:content_shell_test_java", | 234 "//content/shell/android:content_shell_test_java", |
| 234 "//media/base/android:media_java", | 235 "//media/base/android:media_java", |
| 235 "//net/android:net_java", | 236 "//net/android:net_java", |
| 236 "//net/android:net_java_test_support", | 237 "//net/android:net_java_test_support", |
| 237 "//ui/android:ui_java", | 238 "//ui/android:ui_java", |
| 238 ":content_java", | 239 ":content_java", |
| 239 ] | 240 ] |
| 240 | 241 |
| 241 DEPRECATED_java_in_dir = "javatests/src" | 242 DEPRECATED_java_in_dir = "javatests/src" |
| 242 } | 243 } |
| 243 | 244 |
| 244 | 245 |
| 245 # TODO(GYP): content_icudata | 246 # TODO(GYP): content_icudata |
| OLD | NEW |