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

Unified Diff: third_party/mojo/src/mojo/public/cpp/bindings/BUILD.gn

Issue 1380043002: Implement a simple ThreadChecker for Mojo and add to |internal::SharedData| and |internal::Router|. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add underspecified deps. 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: third_party/mojo/src/mojo/public/cpp/bindings/BUILD.gn
diff --git a/third_party/mojo/src/mojo/public/cpp/bindings/BUILD.gn b/third_party/mojo/src/mojo/public/cpp/bindings/BUILD.gn
index 14eb550ce677e859a7287247bd5abf573af6eed0..d0115a11b283736afccce9590c814c81d1f7dbab 100644
--- a/third_party/mojo/src/mojo/public/cpp/bindings/BUILD.gn
+++ b/third_party/mojo/src/mojo/public/cpp/bindings/BUILD.gn
@@ -81,7 +81,15 @@ mojo_sdk_source_set("callback") {
"lib/shared_data.h",
"lib/shared_ptr.h",
"lib/template_util.h",
+ "lib/thread_checker.h",
]
+ if (!is_win) {
yzshen1 2015/10/01 16:48:10 Again, I thought we could directly put these files
Anand Mistry (off Chromium) 2015/10/01 23:16:52 Done.
+ sources += [
+ "lib/thread_checker_posix.cc",
+ "lib/thread_checker_posix.h",
+ ]
+ }
+
mojo_sdk_deps = [ "mojo/public/cpp/system" ]
}

Powered by Google App Engine
This is Rietveld 408576698