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

Unified Diff: ui/views/examples/BUILD.gn

Issue 2053633003: Makes views example copy content_resources.pak (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/examples/BUILD.gn
diff --git a/ui/views/examples/BUILD.gn b/ui/views/examples/BUILD.gn
index 5e1cfb6492c01cf473ac249de6f4bffc6e945c5c..568f31d22b8bf374b838d151a4602d8c6608956c 100644
--- a/ui/views/examples/BUILD.gn
+++ b/ui/views/examples/BUILD.gn
@@ -159,6 +159,7 @@ executable("views_examples_with_content_exe") {
defines = [ "VIEWS_EXAMPLES_WITH_CONTENT_IMPLEMENTATION" ]
deps = [
+ ":copy_content_resources",
":views_examples_with_content_lib",
"//base",
"//build/config/sanitizers:deps",
@@ -174,3 +175,15 @@ executable("views_examples_with_content_exe") {
configs -= [ "//build/config/win:console" ]
}
}
+
+copy("copy_content_resources") {
+ deps = [
+ "//content:resources",
+ ]
+ sources = [
+ "$root_gen_dir/content/content_resources.pak",
+ ]
+ outputs = [
+ "$root_out_dir/content_resources.pak",
+ ]
+}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698