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

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: Added in the DEPS file as suggested Created 8 years, 10 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 | « dbus/DEPS ('k') | dbus/message.h » ('j') | dbus/test_proto.proto » ('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..00b265c8c1636bcd8fe2bd65c96d4c1b7842d124 100644
--- a/dbus/dbus.gyp
+++ b/dbus/dbus.gyp
@@ -13,6 +13,7 @@
'dependencies': [
'../base/base.gyp:base',
'../build/linux/system.gyp:dbus',
+ '../third_party/protobuf/protobuf.gyp:protobuf_lite',
],
'export_dependent_settings': [
'../base/base.gyp:base',
@@ -30,6 +31,16 @@
],
},
{
+ # Protobuf compiler / generator test protocol buffer
+ 'target_name': 'dbus_test_proto',
+ 'type': 'static_library',
+ 'sources': [ 'test_proto.proto' ],
+ '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 +71,7 @@
'../testing/gmock.gyp:gmock',
'../testing/gtest.gyp:gtest',
'dbus',
+ 'dbus_test_proto',
'dbus_test_support',
],
'sources': [
« no previous file with comments | « dbus/DEPS ('k') | dbus/message.h » ('j') | dbus/test_proto.proto » ('J')

Powered by Google App Engine
This is Rietveld 408576698