blob: ba0e64090db01bc872d8b7d02300c158d1396062 [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"
Joey Brattonb6ebede2016-12-06 12:32:04 -050013include ":grpc-testing-proto"
Eric Andersone03d5c02015-05-20 13:23:11 -070014include ":grpc-interop-testing"
nmittlerf8314582015-01-27 10:25:39 -080015include ":grpc-all"
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080016include ":grpc-benchmarks"
ZHANG Dapengb7eea7c2016-05-20 14:03:29 -070017include ":grpc-services"
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -070018include ":grpc-thrift"
nathanmittler164b7342014-12-15 09:58:05 -080019
nmittlerf8314582015-01-27 10:25:39 -080020project(':grpc-core').projectDir = "$rootDir/core" as File
Kun Zhangc4f7f5c2016-09-01 16:00:43 -070021project(':grpc-context').projectDir = "$rootDir/context" as File
nmittlerf8314582015-01-27 10:25:39 -080022project(':grpc-stub').projectDir = "$rootDir/stub" as File
23project(':grpc-auth').projectDir = "$rootDir/auth" as File
24project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
Eric Andersone23f8992015-04-10 15:40:44 -070025project(':grpc-protobuf').projectDir = "$rootDir/protobuf" as File
Eric Anderson99a6d8d2016-03-22 11:31:36 -070026project(':grpc-protobuf-lite').projectDir = "$rootDir/protobuf-lite" as File
Nobutaka Takushima9528a272015-04-20 11:43:06 +090027project(':grpc-protobuf-nano').projectDir = "$rootDir/protobuf-nano" as File
nmittlerf8314582015-01-27 10:25:39 -080028project(':grpc-netty').projectDir = "$rootDir/netty" as File
Kun Zhange83ac982015-10-29 16:31:29 -070029project(':grpc-grpclb').projectDir = "$rootDir/grpclb" as File
nmittlerf8314582015-01-27 10:25:39 -080030project(':grpc-testing').projectDir = "$rootDir/testing" as File
Joey Brattonb6ebede2016-12-06 12:32:04 -050031project(':grpc-testing-proto').projectDir = "$rootDir/testing-proto" as File
Eric Andersone03d5c02015-05-20 13:23:11 -070032project(':grpc-interop-testing').projectDir = "$rootDir/interop-testing" as File
nmittlerf8314582015-01-27 10:25:39 -080033project(':grpc-all').projectDir = "$rootDir/all" as File
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080034project(':grpc-benchmarks').projectDir = "$rootDir/benchmarks" as File
ZHANG Dapengb7eea7c2016-05-20 14:03:29 -070035project(':grpc-services').projectDir = "$rootDir/services" as File
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -070036project(':grpc-thrift').projectDir = "$rootDir/thrift" as File
Kun Zhang111f6dd2015-05-05 16:11:27 -070037
Kun Zhang2f749712015-05-06 13:10:28 -070038if (settings.hasProperty('skipCodegen') && skipCodegen.toBoolean()) {
39 println '*** Skipping the build of codegen and compilation of proto files because skipCodegen=true'
Kun Zhang111f6dd2015-05-05 16:11:27 -070040} else {
41 include ":grpc-compiler"
42 project(':grpc-compiler').projectDir = "$rootDir/compiler" as File
43}