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

Unified Diff: dbus/dbus.gyp

Issue 9315006: Adding support for sending/receiving proto bufs to dbus library. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Resolved most of outstanding issues Created 8 years, 11 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 | dbus/message.h » ('j') | dbus/message_unittest.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dbus/dbus.gyp
diff --git a/dbus/dbus.gyp b/dbus/dbus.gyp
index ce2fbd43ce97e0c608770da0f36a5a92c598faea..f8137064c54650d840c3f97425286e7108350309 100644
--- a/dbus/dbus.gyp
+++ b/dbus/dbus.gyp
@@ -30,6 +30,16 @@
],
},
{
+ # Protobuf compiler / generator test protocol buffer
+ 'target_name': 'dbus_test_proto',
+ 'type': 'static_library',
+ 'sources': [ 'test_proto.proto' ],
satorux1 2012/02/01 19:14:57 I don't see it in this patch. Did you forget to in
rharrison 2012/02/01 21:33:21 Yes, yes I did
+ 'variables': {
+ 'proto_out_dir': 'dbus',
+ },
+ 'includes': [ '../build/protoc.gypi' ],
+ },
+ {
# This target contains mocks that can be used to write unit tests
# without issuing actual D-Bus calls.
'target_name': 'dbus_test_support',
@@ -60,6 +70,7 @@
'../testing/gmock.gyp:gmock',
'../testing/gtest.gyp:gtest',
satorux1 2012/02/01 19:14:57 You probably need to add a dependency to the proto
rharrison 2012/02/01 21:33:21 Done.
'dbus',
+ 'dbus_test_proto',
'dbus_test_support',
],
'sources': [
« no previous file with comments | « no previous file | dbus/message.h » ('j') | dbus/message_unittest.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698