| 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 import("//build_overrides/v8.gni") | 7 import("//build_overrides/v8.gni") |
| 8 import("//third_party/icu/config.gni") | 8 import("//third_party/icu/config.gni") |
| 9 | 9 |
| 10 generate_jni("content_shell_jni_headers") { | 10 generate_jni("content_shell_jni_headers") { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 resource_dirs = [ "java/res" ] | 38 resource_dirs = [ "java/res" ] |
| 39 custom_package = "org.chromium.content_shell" | 39 custom_package = "org.chromium.content_shell" |
| 40 } | 40 } |
| 41 | 41 |
| 42 android_library("content_shell_java") { | 42 android_library("content_shell_java") { |
| 43 testonly = true | 43 testonly = true |
| 44 deps = [ | 44 deps = [ |
| 45 "//base:base_java", | 45 "//base:base_java", |
| 46 "//content/public/android:content_java", | 46 "//content/public/android:content_java", |
| 47 "//media/base/android:media_java", | 47 "//media/base/android:media_java", |
| 48 "//mojo/public/java:system", |
| 48 "//net/android:net_java", | 49 "//net/android:net_java", |
| 49 "//third_party/mojo/src/mojo/public/java:system", | |
| 50 "//ui/android:ui_java", | 50 "//ui/android:ui_java", |
| 51 ":content_shell_java_resources", | 51 ":content_shell_java_resources", |
| 52 ] | 52 ] |
| 53 DEPRECATED_java_in_dir = "java/src" | 53 DEPRECATED_java_in_dir = "java/src" |
| 54 } | 54 } |
| 55 | 55 |
| 56 content_shell_manifest = | 56 content_shell_manifest = |
| 57 "$target_gen_dir/content_shell_manifest/AndroidManifest.xml" | 57 "$target_gen_dir/content_shell_manifest/AndroidManifest.xml" |
| 58 | 58 |
| 59 jinja_template("content_shell_manifest") { | 59 jinja_template("content_shell_manifest") { |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 testonly = true | 230 testonly = true |
| 231 deps = [ | 231 deps = [ |
| 232 ":content_shell_java", | 232 ":content_shell_java", |
| 233 "//base:base_java", | 233 "//base:base_java", |
| 234 "//content/public/android:content_java", | 234 "//content/public/android:content_java", |
| 235 "//testing/android/native_test:native_test_java", | 235 "//testing/android/native_test:native_test_java", |
| 236 "//ui/android:ui_java", | 236 "//ui/android:ui_java", |
| 237 ] | 237 ] |
| 238 DEPRECATED_java_in_dir = "browsertests/src" | 238 DEPRECATED_java_in_dir = "browsertests/src" |
| 239 } | 239 } |
| OLD | NEW |