diff options
author | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-02-19 16:14:16 -0800 |
---|---|---|
committer | Tim Emiola <tbetbetbe@users.noreply.github.com> | 2015-02-19 16:14:16 -0800 |
commit | f4ce945da523f66330fb5df817bcee73013d9589 (patch) | |
tree | 481cc6b4ea64eee83f442a9cde83dcd92ec5c4e6 /build.json | |
parent | 71a3a415a296369ace6107e54e3b5312d0bff35c (diff) | |
parent | f8e297a3c0e2a8ad9babf02fad06f293b92fc0d0 (diff) |
Merge pull request #631 from soltanmm/master
Added protoc plugin for Python GRPC.
Diffstat (limited to 'build.json')
-rw-r--r-- | build.json | 36 |
1 files changed, 25 insertions, 11 deletions
diff --git a/build.json b/build.json index 0f9e827422..8fdca5a255 100644 --- a/build.json +++ b/build.json @@ -1592,6 +1592,31 @@ "secure": false }, { + "name": "grpc_ruby_plugin", + "build": "protoc", + "language": "c++", + "src": [ + "src/compiler/ruby_generator.cc", + "src/compiler/ruby_plugin.cc" + ], + "deps": [], + "secure": false + }, + { + "name": "grpc_python_plugin", + "build": "protoc", + "language": "c++", + "headers": [ + "src/compiler/python_generator.h" + ], + "src": [ + "src/compiler/python_generator.cc", + "src/compiler/python_plugin.cc" + ], + "deps": [], + "secure": false + }, + { "name": "credentials_test", "build": "test", "language": "c++", @@ -1749,17 +1774,6 @@ ] }, { - "name": "grpc_ruby_plugin", - "build": "protoc", - "language": "c++", - "src": [ - "src/compiler/ruby_generator.cc", - "src/compiler/ruby_plugin.cc" - ], - "deps": [], - "secure": false - }, - { "name": "status_test", "build": "test", "language": "c++", |