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

Unified Diff: mojo/public/platform/native/BUILD.gn

Issue 1052723003: NaCl: create a separate namespace for Mojo handles. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Tweak Created 5 years, 8 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
« no previous file with comments | « mojo/edk/test/BUILD.gn ('k') | mojo/public/platform/native/system_impl_private.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/platform/native/BUILD.gn
diff --git a/mojo/public/platform/native/BUILD.gn b/mojo/public/platform/native/BUILD.gn
index 0e099f99e3765e3293a9b6563ca5753fc6511587..6a30d34890fec871974404188fbdc0a4cab56b07 100644
--- a/mojo/public/platform/native/BUILD.gn
+++ b/mojo/public/platform/native/BUILD.gn
@@ -24,6 +24,42 @@ mojo_sdk_source_set("system") {
# source_set here, this flag change is not needed.
}
+# For internal use only.
+mojo_sdk_source_set("system_impl_private") {
+ sources = [
+ "system_impl_private_thunks.cc",
+ "system_impl_private_thunks.h",
+ ]
+ defines = [ "MOJO_SYSTEM_IMPLEMENTATION" ]
+ deps = [
+ ":system_impl_private_api",
+ ]
+ mojo_sdk_deps = [ "mojo/public/c/system" ]
+}
+
+# For internal use only.
+mojo_sdk_source_set("system_impl_private_api") {
+ sources = [
+ "system_impl_private.h",
+ ]
+ mojo_sdk_deps = [ "mojo/public/c/system" ]
+}
+
+mojo_sdk_source_set("system_impl_private_tests") {
+ testonly = true
+
+ sources = [
+ "system_impl_private_unittest.cc",
+ ]
+
+ deps = [
+ ":system_impl_private_api",
+ "//testing/gtest",
+ ]
+
+ mojo_sdk_deps = [ "mojo/public/c/system" ]
+}
+
mojo_sdk_source_set("gles2") {
sources = [
"gles2_impl_chromium_miscellaneous_thunks.cc",
« no previous file with comments | « mojo/edk/test/BUILD.gn ('k') | mojo/public/platform/native/system_impl_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698