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

Unified Diff: content/common/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: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index 36ad58e59ebe83967a570fdd7f828a1c850bd30e..8907aff43c928100084edc27d5cd5e4da2288b18 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -191,10 +191,15 @@ source_set("common") {
"//sandbox",
"//storage/common",
"//third_party/WebKit/public:blink",
- "//third_party/mojo/src/mojo/edk/system",
"//ui/gl",
":mojo_bindings",
]
+
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
}
defines = []

Powered by Google App Engine
This is Rietveld 408576698