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

Unified Diff: chrome/browser/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: chrome/browser/BUILD.gn
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
index a8234becb6704dcdf3c2edefe63f746adafdf09f..de7720c849e5f95412052608609693bef0fa0f8d 100644
--- a/chrome/browser/BUILD.gn
+++ b/chrome/browser/BUILD.gn
@@ -314,7 +314,6 @@ source_set("browser") {
"//third_party/leveldatabase",
"//third_party/libaddressinput",
"//third_party/libyuv",
- "//third_party/mojo/src/mojo/edk/system",
"//third_party/mojo/src/mojo/public/cpp/bindings",
"//third_party/mojo/src/mojo/public/js",
"//third_party/re2",
@@ -328,6 +327,12 @@ source_set("browser") {
"//v8",
]
+ if (use_chrome_edk) {
Ken Rockot(use gerrit already) 2015/09/23 22:32:17 What if we added a few new group targets to //mojo
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
if (toolkit_views) {
deps += [ "//ui/views" ]
}

Powered by Google App Engine
This is Rietveld 408576698