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

Unified Diff: mojo/public/mojo_application.gni

Issue 1034603002: Prefix build variables used in separate repos with mojo_ (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: more mojo_ Created 5 years, 9 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 | « mojo/public/mojo.gni ('k') | mojo/public/tools/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/mojo_application.gni
diff --git a/mojo/public/mojo_application.gni b/mojo/public/mojo_application.gni
index ce8cf9e12bf2756bd830dd353d65fff731d4b616..2c7ee4aec41a4b9ba0c59a6360aff115e7d01981 100644
--- a/mojo/public/mojo_application.gni
+++ b/mojo/public/mojo_application.gni
@@ -77,11 +77,11 @@ template("mojo_native_application") {
}
# Copy any necessary prebuilt artifacts.
- if (use_prebuilt_mojo_shell) {
+ if (mojo_use_prebuilt_mojo_shell) {
data_deps +=
[ rebase_path("mojo/public/tools:copy_mojo_shell", ".", mojo_root) ]
}
- if (use_prebuilt_network_service) {
+ if (mojo_use_prebuilt_network_service) {
data_deps += [ rebase_path("mojo/public/tools:copy_network_service",
".",
mojo_root) ]
@@ -197,11 +197,11 @@ template("mojo_native_application") {
}
# Copy any necessary prebuilt artifacts.
- if (use_prebuilt_mojo_shell) {
+ if (mojo_use_prebuilt_mojo_shell) {
data_deps +=
[ rebase_path("mojo/public/tools:copy_mojo_shell", ".", mojo_root) ]
}
- if (use_prebuilt_network_service) {
+ if (mojo_use_prebuilt_network_service) {
data_deps += [ rebase_path("mojo/public/tools:copy_network_service",
".",
mojo_root) ]
« no previous file with comments | « mojo/public/mojo.gni ('k') | mojo/public/tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698