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

Unified Diff: mojo/mojo.gyp

Issue 23913008: C++ bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows build error. Created 7 years, 2 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 | « no previous file | mojo/public/bindings/lib/TODO » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/mojo.gyp
diff --git a/mojo/mojo.gyp b/mojo/mojo.gyp
index 5a86936275ae0e004c35bf8f238dfd44e258a1f6..43c99619906c151d9d32169f672fc30494234cfd 100644
--- a/mojo/mojo.gyp
+++ b/mojo/mojo.gyp
@@ -72,7 +72,6 @@
'MOJO_SYSTEM_IMPLEMENTATION',
],
'sources': [
- 'public/system/core.h',
'system/core.cc',
'system/core_impl.cc',
'system/core_impl.h',
@@ -149,5 +148,41 @@
'shell/sample_app.cc',
],
},
+ {
+ 'target_name': 'mojo_bindings',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..'
+ ],
+ 'sources': [
+ 'public/bindings/lib/bindings.h',
+ 'public/bindings/lib/bindings_internal.h',
+ 'public/bindings/lib/bindings_serialization.cc',
+ 'public/bindings/lib/bindings_serialization.h',
+ 'public/bindings/lib/buffer.cc',
+ 'public/bindings/lib/buffer.h',
+ 'public/bindings/lib/message.cc',
+ 'public/bindings/lib/message.h',
+ 'public/bindings/lib/message_builder.cc',
+ 'public/bindings/lib/message_builder.h',
+ ],
+ },
+ {
+ 'target_name': 'mojo_bindings_test',
+ 'type': 'executable',
+ 'include_dirs': [
+ '..'
+ ],
+ 'dependencies': [
+ 'mojo_bindings',
+ ],
+ 'sources': [
+ 'public/bindings/sample/generated/sample_service.h',
+ 'public/bindings/sample/generated/sample_service_proxy.cc',
+ 'public/bindings/sample/generated/sample_service_serialization.h',
+ 'public/bindings/sample/generated/sample_service_stub.cc',
+ 'public/bindings/sample/sample_test.cc',
+ ],
+ },
],
}
« no previous file with comments | « no previous file | mojo/public/bindings/lib/TODO » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698