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

Unified Diff: mojo/edk/platform/BUILD.gn

Issue 1469193002: EDK: Add a mojo::platform::MessageLoop abstraction. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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
« no previous file with comments | « mojo/edk/base_edk/test_message_loop.cc ('k') | mojo/edk/platform/message_loop.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/edk/platform/BUILD.gn
diff --git a/mojo/edk/platform/BUILD.gn b/mojo/edk/platform/BUILD.gn
index 2d69e67c3a44074789fc8a824e1a92c1c6480227..11b38d6f7233e3541e8518fcdcf4505e068bece5 100644
--- a/mojo/edk/platform/BUILD.gn
+++ b/mojo/edk/platform/BUILD.gn
@@ -6,15 +6,29 @@ import("../mojo_edk.gni")
mojo_edk_source_set("platform") {
sources = [
+ "message_loop.h",
"task_runner.h",
]
mojo_sdk_public_deps = [ "mojo/public/cpp/system" ]
+ mojo_edk_public_deps = [ "mojo/edk/util" ]
+
# TODO(vtl): Remove this dependency.
deps = [
"//base",
]
+}
+
+mojo_edk_source_set("test_platform") {
+ testonly = true
+ sources = [
+ "test_message_loop.h",
+ ]
mojo_edk_public_deps = [ "mojo/edk/util" ]
+
+ public_deps = [
+ ":platform",
+ ]
}
« no previous file with comments | « mojo/edk/base_edk/test_message_loop.cc ('k') | mojo/edk/platform/message_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698