| Index: content/shell/android/BUILD.gn
|
| diff --git a/content/shell/android/BUILD.gn b/content/shell/android/BUILD.gn
|
| index 38afc3ca705255d5e35995bcd3ad8f424f0bdd19..0d23dd20e586147cfadbafe1df0c46e55dd3986b 100644
|
| --- a/content/shell/android/BUILD.gn
|
| +++ b/content/shell/android/BUILD.gn
|
| @@ -114,7 +114,6 @@ android_apk("content_shell_apk") {
|
| ":content_shell_assets",
|
| ":content_shell_java",
|
| ":content_shell_manifest",
|
| - ":libcontent_shell_content_view",
|
| "//base:base_java",
|
| "//content/public/android:content_java",
|
| "//content/public/test/android:layouttest_java_support",
|
| @@ -125,7 +124,7 @@ android_apk("content_shell_apk") {
|
| ]
|
| apk_name = "ContentShell"
|
| android_manifest = content_shell_manifest
|
| - native_libs = [ "libcontent_shell_content_view.so" ]
|
| + shared_libraries = [ ":libcontent_shell_content_view" ]
|
| loadable_modules = [ "$root_out_dir/libosmesa.so" ]
|
| }
|
|
|
| @@ -190,7 +189,6 @@ if (current_cpu != "x64") {
|
| ":content_shell_assets",
|
| ":content_shell_java",
|
| ":linker_resources",
|
| - ":linker_test",
|
| "//base:base_java",
|
| "//content/public/android:content_java",
|
| "//ui/android:ui_java",
|
| @@ -202,7 +200,7 @@ if (current_cpu != "x64") {
|
| "linker_test_apk/src/org/chromium/chromium_linker_test_apk/ChromiumLinkerTestApplication.java",
|
| "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.java",
|
| ]
|
| - native_libs = [ "liblinker_test.so" ]
|
| + shared_libraries = [ ":linker_test" ]
|
| use_chromium_linker = true
|
| enable_chromium_linker_tests = true
|
| }
|
|
|