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

Unified Diff: mojo/public/README.md

Issue 101413002: [Mojo] Remove dependency between mojo/public and gpu (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years 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/mojo_services.gypi ('k') | mojo/public/bindings/gles2_client/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/README.md
diff --git a/mojo/public/README.md b/mojo/public/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..08f98812eba69a9d1afc7ecb86b5ca6c223db564
--- /dev/null
+++ b/mojo/public/README.md
@@ -0,0 +1,41 @@
+Mojo Public API
+===============
+
+The Mojo Public API is a binary stable API to the Mojo system. There are
+several components to the API:
+
+Bindings
+--------
+
+This directory contains a static library that clients can link into their
+binary. The contents of this directory are not binary stable because each
+client is free to use whichever version they prefer.
+
+This directory also contains a compiler that translates mojom interface
+definition files into idiomatic bindings for various languages, including
+C++ and JavaScript. Clients are expected to statically link with the generated
+code, which reads and writes the binary stable IPC message format.
+
+GLES2
+-----
+
+The IPC protocol used to communicate between Mojo client and the GLES2
+service is not binary stable. To insulate themselves from changes in this
+protocol, clients are expected to link dynamically against the standard GLES2
+headers from Khronos and the headers in this directory, which provide an
+adaptor between the GLES2 C API and the underlying IPC protocol.
+
+System
+------
+
+This directory defines the interface between Mojo clients and the Mojo IPC
+system. Although the Mojo IPC message format is binary stable, the mechanism
+by which these messages are transported is not stable. To insulate themselves
+from changes in the underlying transport, clients are expected to link against
+these headers dynamically.
+
+Tests
+-----
+
+This directory contains tests for code contained in the public API. Mojo
+clients are expected to ignore this directory.
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/public/bindings/gles2_client/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698