blob: d9ea4406201f7950a678201f6c57f593b0a90360 [file] [log] [blame]
nmittlerf8314582015-01-27 10:25:39 -08001rootProject.name = "grpc"
2include ":grpc-core"
Kun Zhangc4f7f5c2016-09-01 16:00:43 -07003include ":grpc-context"
nmittlerf8314582015-01-27 10:25:39 -08004include ":grpc-stub"
5include ":grpc-auth"
6include ":grpc-okhttp"
Eric Andersone23f8992015-04-10 15:40:44 -07007include ":grpc-protobuf"
Eric Anderson99a6d8d2016-03-22 11:31:36 -07008include ":grpc-protobuf-lite"
Eric Anderson3666de42015-04-10 16:35:23 -07009include ":grpc-protobuf-nano"
nmittlerf8314582015-01-27 10:25:39 -080010include ":grpc-netty"
Kun Zhange83ac982015-10-29 16:31:29 -070011include ":grpc-grpclb"
nmittlerf8314582015-01-27 10:25:39 -080012include ":grpc-testing"
Eric Andersone03d5c02015-05-20 13:23:11 -070013include ":grpc-interop-testing"
nmittlerf8314582015-01-27 10:25:39 -080014include ":grpc-all"
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080015include ":grpc-benchmarks"
ZHANG Dapengb7eea7c2016-05-20 14:03:29 -070016include ":grpc-services"
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -070017include ":grpc-thrift"
nathanmittler164b7342014-12-15 09:58:05 -080018
nmittlerf8314582015-01-27 10:25:39 -080019project(':grpc-core').projectDir = "$rootDir/core" as File
Kun Zhangc4f7f5c2016-09-01 16:00:43 -070020project(':grpc-context').projectDir = "$rootDir/context" as File
nmittlerf8314582015-01-27 10:25:39 -080021project(':grpc-stub').projectDir = "$rootDir/stub" as File
22project(':grpc-auth').projectDir = "$rootDir/auth" as File
23project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
Eric Andersone23f8992015-04-10 15:40:44 -070024project(':grpc-protobuf').projectDir = "$rootDir/protobuf" as File
Eric Anderson99a6d8d2016-03-22 11:31:36 -070025project(':grpc-protobuf-lite').projectDir = "$rootDir/protobuf-lite" as File
Nobutaka Takushima9528a272015-04-20 11:43:06 +090026project(':grpc-protobuf-nano').projectDir = "$rootDir/protobuf-nano" as File
nmittlerf8314582015-01-27 10:25:39 -080027project(':grpc-netty').projectDir = "$rootDir/netty" as File
Kun Zhange83ac982015-10-29 16:31:29 -070028project(':grpc-grpclb').projectDir = "$rootDir/grpclb" as File
nmittlerf8314582015-01-27 10:25:39 -080029project(':grpc-testing').projectDir = "$rootDir/testing" as File
Eric Andersone03d5c02015-05-20 13:23:11 -070030project(':grpc-interop-testing').projectDir = "$rootDir/interop-testing" as File
nmittlerf8314582015-01-27 10:25:39 -080031project(':grpc-all').projectDir = "$rootDir/all" as File
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080032project(':grpc-benchmarks').projectDir = "$rootDir/benchmarks" as File
ZHANG Dapengb7eea7c2016-05-20 14:03:29 -070033project(':grpc-services').projectDir = "$rootDir/services" as File
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -070034project(':grpc-thrift').projectDir = "$rootDir/thrift" as File
Kun Zhang111f6dd2015-05-05 16:11:27 -070035
Kun Zhang2f749712015-05-06 13:10:28 -070036if (settings.hasProperty('skipCodegen') && skipCodegen.toBoolean()) {
37 println '*** Skipping the build of codegen and compilation of proto files because skipCodegen=true'
Kun Zhang111f6dd2015-05-05 16:11:27 -070038} else {
39 include ":grpc-compiler"
40 project(':grpc-compiler').projectDir = "$rootDir/compiler" as File
41}