| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 testonly = true | 111 testonly = true |
| 112 deps = [ | 112 deps = [ |
| 113 ":content_shell_apk_java", | 113 ":content_shell_apk_java", |
| 114 ":content_shell_apk_resources", | 114 ":content_shell_apk_resources", |
| 115 ":content_shell_assets", | 115 ":content_shell_assets", |
| 116 ":content_shell_java", | 116 ":content_shell_java", |
| 117 ":content_shell_manifest", | 117 ":content_shell_manifest", |
| 118 ":libcontent_shell_content_view", | 118 ":libcontent_shell_content_view", |
| 119 "//base:base_java", | 119 "//base:base_java", |
| 120 "//content/public/android:content_java", | 120 "//content/public/android:content_java", |
| 121 "//content/public/test/android:layouttest_java_support", |
| 121 "//media/capture/video/android:capture_java", | 122 "//media/capture/video/android:capture_java", |
| 122 "//net/android:net_java", | 123 "//net/android:net_java", |
| 123 "//third_party/mesa:osmesa", | 124 "//third_party/mesa:osmesa", |
| 124 "//ui/android:ui_java", | 125 "//ui/android:ui_java", |
| 125 ] | 126 ] |
| 126 apk_name = "ContentShell" | 127 apk_name = "ContentShell" |
| 127 android_manifest = content_shell_manifest | 128 android_manifest = content_shell_manifest |
| 128 native_libs = [ "libcontent_shell_content_view.so" ] | 129 native_libs = [ "libcontent_shell_content_view.so" ] |
| 129 loadable_modules = [ "$root_out_dir/libosmesa.so" ] | 130 loadable_modules = [ "$root_out_dir/libosmesa.so" ] |
| 130 } | 131 } |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 242 testonly = true | 243 testonly = true |
| 243 deps = [ | 244 deps = [ |
| 244 ":content_shell_java", | 245 ":content_shell_java", |
| 245 "//base:base_java", | 246 "//base:base_java", |
| 246 "//content/public/android:content_java", | 247 "//content/public/android:content_java", |
| 247 "//testing/android/native_test:native_test_java", | 248 "//testing/android/native_test:native_test_java", |
| 248 "//ui/android:ui_java", | 249 "//ui/android:ui_java", |
| 249 ] | 250 ] |
| 250 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] | 251 java_files = [ "browsertests/src/org/chromium/content_shell/browsertests/Conte
ntShellBrowserTestActivity.java" ] |
| 251 } | 252 } |
| OLD | NEW |