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

Unified Diff: mojo/mojo.gyp

Issue 23913008: C++ bindings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix Windows build. 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') | mojo/public/bindings/lib/bindings.h » ('J')
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 d8f3121b11026b8281029135f4b367d3f1991fde..b443d4317c926be5e1c4a32f6dc25da929cb4bea 100644
--- a/mojo/mojo.gyp
+++ b/mojo/mojo.gyp
@@ -120,5 +120,38 @@
'system/waiter_unittest.cc',
],
},
+ {
+ 'target_name': 'mojo_bindings',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..'
+ ],
+ 'sources': [
+ 'public/bindings/lib/bindings.h',
+ 'public/bindings/lib/bindings_internal.cc',
+ 'public/bindings/lib/bindings_internal.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_proxy.cc',
+ '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') | mojo/public/bindings/lib/bindings.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698