| 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 14 matching lines...) Expand all Loading... |
| 25 "//ui/android:ui_java_resources", | 25 "//ui/android:ui_java_resources", |
| 26 ] | 26 ] |
| 27 custom_package = "org.chromium.content" | 27 custom_package = "org.chromium.content" |
| 28 resource_dirs = [ "java/res" ] | 28 resource_dirs = [ "java/res" ] |
| 29 } | 29 } |
| 30 | 30 |
| 31 android_library("content_java") { | 31 android_library("content_java") { |
| 32 deps = [ | 32 deps = [ |
| 33 ":content_java_resources", | 33 ":content_java_resources", |
| 34 "//base:base_java", | 34 "//base:base_java", |
| 35 "//cc:cc_java", |
| 35 "//media/base/android:media_java", | 36 "//media/base/android:media_java", |
| 36 "//mojo/android:system_java", | 37 "//mojo/android:system_java", |
| 37 "//mojo/public/java:bindings", | 38 "//mojo/public/java:bindings", |
| 38 "//mojo/public/java:system", | 39 "//mojo/public/java:system", |
| 39 "//net/android:net_java", | 40 "//net/android:net_java", |
| 40 "//ui/android:ui_java", | 41 "//ui/android:ui_java", |
| 41 "//third_party/jsr-305:jsr_305_javalib", | 42 "//third_party/jsr-305:jsr_305_javalib", |
| 42 | 43 |
| 43 #"//content:content_common", | 44 #"//content:content_common", |
| 44 ] | 45 ] |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "//net/android:net_java_test_support", | 170 "//net/android:net_java_test_support", |
| 170 "//ui/android:ui_java", | 171 "//ui/android:ui_java", |
| 171 ":content_java", | 172 ":content_java", |
| 172 ] | 173 ] |
| 173 | 174 |
| 174 DEPRECATED_java_in_dir = "javatests/src" | 175 DEPRECATED_java_in_dir = "javatests/src" |
| 175 } | 176 } |
| 176 | 177 |
| 177 | 178 |
| 178 # TODO(GYP): content_icudata | 179 # TODO(GYP): content_icudata |
| OLD | NEW |