aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.json
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-03-17 21:52:52 -0700
committerGravatar Masood Malekghassemi <soltanmm@users.noreply.github.com>2015-03-18 01:41:07 -0700
commit3bb52151dd4ca829ae827517af3a0fd44e9b0bfb (patch)
treefaa04c5eec10fcf12d7d258f4e0bd18a08685f07 /build.json
parent89905ac55d986878b338406a298ee513c15b68be (diff)
Make Python package spec indirect
This is part of a change to ease internal usage of GRPC.
Diffstat (limited to 'build.json')
-rw-r--r--build.json21
1 files changed, 16 insertions, 5 deletions
diff --git a/build.json b/build.json
index 999e140c5a..08b23ec593 100644
--- a/build.json
+++ b/build.json
@@ -492,6 +492,19 @@
"secure": "no"
},
{
+ "name": "grpc_python_plugin_support",
+ "build": "protoc",
+ "language": "c++",
+ "public_headers": [
+ "src/compiler/python_generator.h"
+ ],
+ "src": [
+ "src/compiler/python_generator.cc"
+ ],
+ "deps": [],
+ "secure": "no"
+ },
+ {
"name": "pubsub_client_lib",
"build": "private",
"language": "c++",
@@ -1739,14 +1752,12 @@
"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": [],
+ "deps": [
+ "grpc_python_plugin_support"
+ ],
"secure": "no"
},
{