blob: 9bed7a1075f05991fa3a1ea0029bbdff0e94d01d [file] [log] [blame]
nmittlerf8314582015-01-27 10:25:39 -08001rootProject.name = "grpc"
2include ":grpc-core"
3include ":grpc-stub"
4include ":grpc-auth"
5include ":grpc-okhttp"
Eric Andersone23f8992015-04-10 15:40:44 -07006include ":grpc-protobuf"
Eric Anderson99a6d8d2016-03-22 11:31:36 -07007include ":grpc-protobuf-lite"
Eric Anderson3666de42015-04-10 16:35:23 -07008include ":grpc-protobuf-nano"
nmittlerf8314582015-01-27 10:25:39 -08009include ":grpc-netty"
Kun Zhange83ac982015-10-29 16:31:29 -070010include ":grpc-grpclb"
nmittlerf8314582015-01-27 10:25:39 -080011include ":grpc-testing"
Eric Andersone03d5c02015-05-20 13:23:11 -070012include ":grpc-interop-testing"
nmittlerf8314582015-01-27 10:25:39 -080013include ":grpc-all"
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080014include ":grpc-benchmarks"
Jakob Buchgraber246e8b52015-02-18 13:26:48 -080015include ":grpc-examples"
nathanmittler164b7342014-12-15 09:58:05 -080016
nmittlerf8314582015-01-27 10:25:39 -080017project(':grpc-core').projectDir = "$rootDir/core" as File
18project(':grpc-stub').projectDir = "$rootDir/stub" as File
19project(':grpc-auth').projectDir = "$rootDir/auth" as File
20project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
Eric Andersone23f8992015-04-10 15:40:44 -070021project(':grpc-protobuf').projectDir = "$rootDir/protobuf" as File
Eric Anderson99a6d8d2016-03-22 11:31:36 -070022project(':grpc-protobuf-lite').projectDir = "$rootDir/protobuf-lite" as File
Nobutaka Takushima9528a272015-04-20 11:43:06 +090023project(':grpc-protobuf-nano').projectDir = "$rootDir/protobuf-nano" as File
nmittlerf8314582015-01-27 10:25:39 -080024project(':grpc-netty').projectDir = "$rootDir/netty" as File
Kun Zhange83ac982015-10-29 16:31:29 -070025project(':grpc-grpclb').projectDir = "$rootDir/grpclb" as File
nmittlerf8314582015-01-27 10:25:39 -080026project(':grpc-testing').projectDir = "$rootDir/testing" as File
Eric Andersone03d5c02015-05-20 13:23:11 -070027project(':grpc-interop-testing').projectDir = "$rootDir/interop-testing" as File
nmittlerf8314582015-01-27 10:25:39 -080028project(':grpc-all').projectDir = "$rootDir/all" as File
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080029project(':grpc-benchmarks').projectDir = "$rootDir/benchmarks" as File
Jakob Buchgraber246e8b52015-02-18 13:26:48 -080030project(':grpc-examples').projectDir = "$rootDir/examples" as File
Kun Zhang111f6dd2015-05-05 16:11:27 -070031
Kun Zhang2f749712015-05-06 13:10:28 -070032if (settings.hasProperty('skipCodegen') && skipCodegen.toBoolean()) {
33 println '*** Skipping the build of codegen and compilation of proto files because skipCodegen=true'
Kun Zhang111f6dd2015-05-05 16:11:27 -070034} else {
35 include ":grpc-compiler"
36 project(':grpc-compiler').projectDir = "$rootDir/compiler" as File
37}