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

Unified Diff: components/html_viewer/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/html_viewer/BUILD.gn
diff --git a/components/html_viewer/BUILD.gn b/components/html_viewer/BUILD.gn
index be012cf8860646384d6436d275cb74005b73f580..18905809ea8cef54e94a56db43fe3866c9e7a76c 100644
--- a/components/html_viewer/BUILD.gn
+++ b/components/html_viewer/BUILD.gn
@@ -319,13 +319,18 @@ test("html_viewer_unittests") {
"//gin",
"//mojo/converters/input_events",
"//testing/gtest:gtest",
- "//third_party/mojo/src/mojo/edk/system",
"//ui/base",
"//ui/events",
"//ui/events:test_support",
"//ui/mojo/init",
]
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
if (is_android) {
deps += [ ":build_unittest_assets" ]
apk_asset_location = html_viewer_unittests_assets

Powered by Google App Engine
This is Rietveld 408576698