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

Unified Diff: components/mus/public/cpp/tests/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: components/mus/public/cpp/tests/BUILD.gn
diff --git a/components/mus/public/cpp/tests/BUILD.gn b/components/mus/public/cpp/tests/BUILD.gn
index c58299498238a49bf0866e844b2f40302a1ed5dd..50c4ccd8bc50a8a5539ebf9dbdcfe355e68047c8 100644
--- a/components/mus/public/cpp/tests/BUILD.gn
+++ b/components/mus/public/cpp/tests/BUILD.gn
@@ -38,10 +38,15 @@ test("mojo_view_manager_lib_unittests") {
"//mojo/application/public/cpp",
"//testing/gtest",
"//third_party/mojo/src/mojo/public/cpp/system",
- "//third_party/mojo/src/mojo/edk/system",
"//ui/mojo/geometry:interfaces",
]
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
if (use_x11) {
deps += [ "//ui/gfx/x" ]
}

Powered by Google App Engine
This is Rietveld 408576698