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

Unified Diff: mojo/public/mojo_application.gni

Issue 898363002: mojo_application.gni - data deps are called data_deps these days. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 10 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 | « examples/apptest/BUILD.gn ('k') | services/clipboard/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 19abf7410ab3e4370a43b21094ab69e43395d62e..7661c8885625444b1b6a087f8750409bbcfb84e4 100644
--- a/mojo/public/mojo_application.gni
+++ b/mojo/public/mojo_application.gni
@@ -74,16 +74,14 @@ template("mojo_native_application") {
}
# Copy the prebuilt mojo_shell if using it.
- if (defined(invoker.datadeps)) {
- datadeps = invoker.datadeps
+ if (defined(invoker.data_deps)) {
+ data_deps = invoker.data_deps
if (use_prebuilt_mojo_shell) {
- datadeps += [ copy_mojo_shell ]
+ data_deps += [ copy_mojo_shell ]
}
} else {
if (use_prebuilt_mojo_shell) {
- datadeps = [
- copy_mojo_shell,
- ]
+ data_deps = [ copy_mojo_shell ]
}
}
deps = rebase_path([
« no previous file with comments | « examples/apptest/BUILD.gn ('k') | services/clipboard/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698