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

Unified Diff: content/shell/android/BUILD.gn

Issue 1410643013: GN: Fix references to $root_build_dir/natives_blob.bin -> $root_out_dir (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
« no previous file with comments | « components/html_viewer/BUILD.gn ('k') | gin/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/android/BUILD.gn
diff --git a/content/shell/android/BUILD.gn b/content/shell/android/BUILD.gn
index 6aa412310d8bbb90624635387b711f85f0420618..4fd3e8552bf168b7cd5d09ce395ac267ba41238a 100644
--- a/content/shell/android/BUILD.gn
+++ b/content/shell/android/BUILD.gn
@@ -103,8 +103,8 @@ copy_ex("copy_content_shell_assets") {
}
if (v8_use_external_startup_data) {
sources += [
- "$root_build_dir/natives_blob.bin",
- "$root_build_dir/snapshot_blob.bin",
+ "$root_out_dir/natives_blob.bin",
+ "$root_out_dir/snapshot_blob.bin",
]
deps += [ "//v8" ]
}
@@ -159,7 +159,9 @@ instrumentation_test_apk("content_shell_test_apk") {
"//base:base_javatests",
"//net/android:net_javatests",
]
- data_deps = [ ":content_shell_apk" ]
+ data_deps = [
+ ":content_shell_apk",
+ ]
apk_under_test = ":content_shell_apk"
apk_name = "ContentShellTest"
android_manifest = "javatests/AndroidManifest.xml"
« no previous file with comments | « components/html_viewer/BUILD.gn ('k') | gin/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698