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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 } | 103 } |
104 if (v8_use_external_startup_data) { | 104 if (v8_use_external_startup_data) { |
105 sources += [ | 105 sources += [ |
106 "$root_out_dir/natives_blob.bin", | 106 "$root_out_dir/natives_blob.bin", |
107 "$root_out_dir/snapshot_blob.bin", | 107 "$root_out_dir/snapshot_blob.bin", |
108 ] | 108 ] |
109 deps += [ "//v8" ] | 109 deps += [ "//v8" ] |
110 } | 110 } |
111 } | 111 } |
112 | 112 |
| 113 android_assets("content_shell_assets") { |
| 114 deps = [ |
| 115 "//base:icu_assets", |
| 116 "//content/shell:pak", |
| 117 "//gin:v8_snapshot_assets", |
| 118 ] |
| 119 sources = [ |
| 120 "$root_build_dir/content_shell.pak", |
| 121 ] |
| 122 enable_compression = false |
| 123 } |
| 124 |
113 android_apk("content_shell_apk") { | 125 android_apk("content_shell_apk") { |
114 testonly = true | 126 testonly = true |
115 data_deps = [ | 127 data_deps = [ |
116 # "//tools/android/forwarder", | 128 # "//tools/android/forwarder", |
117 ] | 129 ] |
118 deps = [ | 130 deps = [ |
119 ":content_shell_apk_java", | 131 ":content_shell_apk_java", |
120 ":content_shell_apk_resources", | 132 ":content_shell_apk_resources", |
| 133 ":content_shell_assets", |
121 ":content_shell_java", | 134 ":content_shell_java", |
122 ":content_shell_manifest", | 135 ":content_shell_manifest", |
123 ":copy_content_shell_assets", | |
124 ":libcontent_shell_content_view", | 136 ":libcontent_shell_content_view", |
125 "//base:base_java", | 137 "//base:base_java", |
126 "//content/public/android:content_java", | 138 "//content/public/android:content_java", |
127 "//media/base/android:media_java", | 139 "//media/base/android:media_java", |
128 "//net/android:net_java", | 140 "//net/android:net_java", |
129 | 141 |
130 #"//third_party/mesa:osmesa_in_lib_dir", | 142 #"//third_party/mesa:osmesa_in_lib_dir", |
131 "//ui/android:ui_java", | 143 "//ui/android:ui_java", |
132 ] | 144 ] |
133 apk_name = "ContentShell" | 145 apk_name = "ContentShell" |
134 android_manifest = content_shell_manifest | 146 android_manifest = content_shell_manifest |
135 native_libs = [ "libcontent_shell_content_view.so" ] | 147 native_libs = [ "libcontent_shell_content_view.so" ] |
136 asset_location = content_shell_assets_dir | |
137 | 148 |
138 # TODO(GYP) | 149 # TODO(GYP) |
139 #'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], | 150 #'extra_native_libs': ['<(SHARED_LIB_DIR)/libosmesa.so'], |
140 } | 151 } |
141 | 152 |
142 android_library("content_shell_test_java") { | 153 android_library("content_shell_test_java") { |
143 testonly = true | 154 testonly = true |
144 deps = [ | 155 deps = [ |
145 ":content_shell_java", | 156 ":content_shell_java", |
146 ":content_shell_apk_java", | 157 ":content_shell_apk_java", |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 | 242 |
232 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers | 243 # GYP: //content/content_tests.gypi:chromium_android_linker_test_jni_headers |
233 generate_jni("linker_test_jni_headers") { | 244 generate_jni("linker_test_jni_headers") { |
234 testonly = true | 245 testonly = true |
235 jni_package = "content/shell" | 246 jni_package = "content/shell" |
236 sources = [ | 247 sources = [ |
237 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", | 248 "linker_test_apk/src/org/chromium/chromium_linker_test_apk/LinkerTests.jav
a", |
238 ] | 249 ] |
239 } | 250 } |
240 } | 251 } |
OLD | NEW |