Chromium Code Reviews| 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': [ |