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

Unified Diff: mojo/runner/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: mojo/runner/BUILD.gn
diff --git a/mojo/runner/BUILD.gn b/mojo/runner/BUILD.gn
index 558b3274f142f7ca1ee74863c596105e28fecc24..02a2e5b00ae60494c2894aff27e22aa1f9225838 100644
--- a/mojo/runner/BUILD.gn
+++ b/mojo/runner/BUILD.gn
@@ -130,11 +130,16 @@ source_set("lib") {
"//mojo/services/tracing/public/interfaces",
"//mojo/shell",
"//mojo/util:filename_util",
- "//third_party/mojo/src/mojo/edk/system",
"//ui/gl",
"//url",
]
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
if (is_linux && !is_android) {
sources += [
"linux_sandbox.cc",
@@ -447,11 +452,16 @@ test("mojo_runner_unittests") {
"//mojo/shell",
"//mojo/util:filename_util",
"//testing/gtest",
- "//third_party/mojo/src/mojo/edk/system",
"//third_party/mojo/src/mojo/public/cpp/bindings",
"//url",
]
+ if (use_chrome_edk) {
+ deps += [ "//mojo/edk/system" ]
+ } else {
+ deps += [ "//third_party/mojo/src/mojo/edk/system" ]
+ }
+
data_deps = [
"//mojo/services/test_service:test_app",
"//mojo/services/test_service:test_request_tracker_app",

Powered by Google App Engine
This is Rietveld 408576698