Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(33)

Unified Diff: gin/BUILD.gn

Issue 1418243003: Add GN template for android_assets(). Use it in content_shell_apk. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« build/config/android/rules.gni ('K') | « content/shell/android/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/BUILD.gn
diff --git a/gin/BUILD.gn b/gin/BUILD.gn
index 0b270c5894aa24aa21c286282d74b3adc8941d1f..590eed817e54f649daecf2f3046ec2b1677669a8 100644
--- a/gin/BUILD.gn
+++ b/gin/BUILD.gn
@@ -5,6 +5,10 @@
import("//build_overrides/v8.gni")
import("//testing/test.gni")
+if (is_android) {
+ import("//build/config/android/rules.gni")
+}
+
component("gin") {
sources = [
"arguments.cc",
@@ -93,6 +97,21 @@ component("gin") {
configs += [ "//v8:external_startup_data" ]
}
+if (is_android) {
+ android_assets("v8_snapshot_assets") {
+ if (v8_use_external_startup_data) {
+ deps = [
+ "//v8",
+ ]
+ sources = [
+ "$root_out_dir/natives_blob.bin",
+ "$root_out_dir/snapshot_blob.bin",
+ ]
+ }
+ enable_compression = false
+ }
+}
+
if (v8_use_external_startup_data) {
action("gin_v8_snapshot_fingerprint") {
script = "//gin/fingerprint/fingerprint_v8_snapshot.py"
« build/config/android/rules.gni ('K') | « content/shell/android/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698