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

Unified Diff: extensions/shell/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: 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: extensions/shell/BUILD.gn
diff --git a/extensions/shell/BUILD.gn b/extensions/shell/BUILD.gn
index 06bf717200944e47499fd9f16706ba5691962f84..030b22253bb57ca404b57b85ee28d1bc5253f318 100644
--- a/extensions/shell/BUILD.gn
+++ b/extensions/shell/BUILD.gn
@@ -57,12 +57,17 @@ source_set("app_shell_lib") {
"//mojo/environment:chromium",
"//skia",
"//third_party/WebKit/public:blink",
- "//third_party/mojo/src/mojo/edk/system",
"//ui/base",
"//ui/base/ime",
"//v8",
]
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
sources = rebase_path(app_shell_gypi_values.app_shell_lib_sources,
".",
"//extensions/shell")

Powered by Google App Engine
This is Rietveld 408576698