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

Unified Diff: device/battery/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: device/battery/BUILD.gn
diff --git a/device/battery/BUILD.gn b/device/battery/BUILD.gn
index 6eab81342c5bb1fe619d4b874627140ad3bdac55..7c401e756bd8a3ba7c84ac3b7557ab4d75d82916 100644
--- a/device/battery/BUILD.gn
+++ b/device/battery/BUILD.gn
@@ -33,9 +33,14 @@ if (!is_android) {
"//base/third_party/dynamic_annotations",
"//mojo/environment:chromium",
"//third_party/mojo/src/mojo/public/cpp/bindings",
- "//third_party/mojo/src/mojo/edk/system",
]
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
if (is_chromeos) {
configs += [ "//build/config/linux:dbus" ]
deps += [

Powered by Google App Engine
This is Rietveld 408576698