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

Unified Diff: mojo/fetcher/BUILD.gn

Issue 1350023003: Add a Mojo EDK for Chrome that uses one OS pipe per message pipe. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move to mojo::edk namespace in preparation for runtim flag Created 5 years, 3 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
Index: mojo/fetcher/BUILD.gn
diff --git a/mojo/fetcher/BUILD.gn b/mojo/fetcher/BUILD.gn
index da681cacba2cfe02b86fd7eb43b98e00cbdac41e..c37f3f7796f5820687246b05344e32c1ea1d9f7c 100644
--- a/mojo/fetcher/BUILD.gn
+++ b/mojo/fetcher/BUILD.gn
@@ -39,7 +39,12 @@ source_set("fetcher") {
"//mojo/shell",
"//mojo/util:filename_util",
"//net",
- "//third_party/mojo/src/mojo/edk/system",
"//url",
]
+
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
}

Powered by Google App Engine
This is Rietveld 408576698