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

Unified Diff: components/html_viewer/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 | « chrome/android/BUILD.gn ('k') | content/shell/android/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/BUILD.gn
diff --git a/components/html_viewer/BUILD.gn b/components/html_viewer/BUILD.gn
index ce79df8f9690a49634440cdd69f47b4d8061d653..974ac6aa96d17a8290f69fbbbd695c271dacf026 100644
--- a/components/html_viewer/BUILD.gn
+++ b/components/html_viewer/BUILD.gn
@@ -244,8 +244,8 @@ mojo_native_application("html_viewer") {
if (v8_use_external_startup_data) {
resources += [
- "$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 += [ "//gin" ]
}
@@ -281,8 +281,8 @@ mojo_native_application("layout_test_html_viewer") {
if (v8_use_external_startup_data) {
resources += [
- "$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 += [ "//gin" ]
}
@@ -302,8 +302,8 @@ if (is_android) {
sources = [
"$root_build_dir/html_viewer.pak",
"$root_build_dir/icudtl.dat",
- "$root_build_dir/natives_blob.bin",
- "$root_build_dir/snapshot_blob.bin",
+ "$root_out_dir/natives_blob.bin",
+ "$root_out_dir/snapshot_blob.bin",
]
}
« no previous file with comments | « chrome/android/BUILD.gn ('k') | content/shell/android/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698