| 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/module_args/v8.gni") | 7 import("//build/module_args/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 12 matching lines...) Expand all Loading... |
| 23 deps = [ | 23 deps = [ |
| 24 ":content_shell_jni_headers", | 24 ":content_shell_jni_headers", |
| 25 "//content/shell:content_shell_lib", | 25 "//content/shell:content_shell_lib", |
| 26 "//content/shell:pak", | 26 "//content/shell:pak", |
| 27 "//components/crash/browser", | 27 "//components/crash/browser", |
| 28 "//skia", | 28 "//skia", |
| 29 "//media/base/android", | 29 "//media/base/android", |
| 30 ] | 30 ] |
| 31 sources = [ | 31 sources = [ |
| 32 "shell_library_loader.cc", | 32 "shell_library_loader.cc", |
| 33 "shell_library_loader.h", | |
| 34 ] | 33 ] |
| 35 if (is_android_webview_build) { | 34 if (is_android_webview_build) { |
| 36 ldflags = [ "-lgabi++" ] | 35 ldflags = [ "-lgabi++" ] |
| 37 } | 36 } |
| 38 } | 37 } |
| 39 | 38 |
| 40 android_resources("content_shell_java_resources") { | 39 android_resources("content_shell_java_resources") { |
| 41 testonly = true | 40 testonly = true |
| 42 resource_dirs = [ "java/res" ] | 41 resource_dirs = [ "java/res" ] |
| 43 custom_package = "org.chromium.content_shell" | 42 custom_package = "org.chromium.content_shell" |
| (...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 | 224 |
| 226 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers | 225 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers |
| 227 generate_jni("linker_test_jni_headers") { | 226 generate_jni("linker_test_jni_headers") { |
| 228 testonly = true | 227 testonly = true |
| 229 jni_package = "content/shell" | 228 jni_package = "content/shell" |
| 230 sources = [ | 229 sources = [ |
| 231 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", | 230 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", |
| 232 ] | 231 ] |
| 233 } | 232 } |
| 234 } | 233 } |
| OLD | NEW |