blob: 8c199acb3b94bc1b7c4e371ee9716774e359e17a [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"
ZHANG Dapengb7eea7c2016-05-20 14:03:29 -070015include ":grpc-services"
Jakob Buchgraber246e8b52015-02-18 13:26:48 -080016include ":grpc-examples"
nathanmittler164b7342014-12-15 09:58:05 -080017
nmittlerf8314582015-01-27 10:25:39 -080018project(':grpc-core').projectDir = "$rootDir/core" as File
19project(':grpc-stub').projectDir = "$rootDir/stub" as File
20project(':grpc-auth').projectDir = "$rootDir/auth" as File
21project(':grpc-okhttp').projectDir = "$rootDir/okhttp" as File
Eric Andersone23f8992015-04-10 15:40:44 -070022project(':grpc-protobuf').projectDir = "$rootDir/protobuf" as File
Eric Anderson99a6d8d2016-03-22 11:31:36 -070023project(':grpc-protobuf-lite').projectDir = "$rootDir/protobuf-lite" as File
Nobutaka Takushima9528a272015-04-20 11:43:06 +090024project(':grpc-protobuf-nano').projectDir = "$rootDir/protobuf-nano" as File
nmittlerf8314582015-01-27 10:25:39 -080025project(':grpc-netty').projectDir = "$rootDir/netty" as File
Kun Zhange83ac982015-10-29 16:31:29 -070026project(':grpc-grpclb').projectDir = "$rootDir/grpclb" as File
nmittlerf8314582015-01-27 10:25:39 -080027project(':grpc-testing').projectDir = "$rootDir/testing" as File
Eric Andersone03d5c02015-05-20 13:23:11 -070028project(':grpc-interop-testing').projectDir = "$rootDir/interop-testing" as File
nmittlerf8314582015-01-27 10:25:39 -080029project(':grpc-all').projectDir = "$rootDir/all" as File
Jakob Buchgraber3fd7d062015-02-10 16:01:26 -080030project(':grpc-benchmarks').projectDir = "$rootDir/benchmarks" as File
ZHANG Dapengb7eea7c2016-05-20 14:03:29 -070031project(':grpc-services').projectDir = "$rootDir/services" as File
Jakob Buchgraber246e8b52015-02-18 13:26:48 -080032project(':grpc-examples').projectDir = "$rootDir/examples" as File
Kun Zhang111f6dd2015-05-05 16:11:27 -070033
Kun Zhang2f749712015-05-06 13:10:28 -070034if (settings.hasProperty('skipCodegen') && skipCodegen.toBoolean()) {
35 println '*** Skipping the build of codegen and compilation of proto files because skipCodegen=true'
Kun Zhang111f6dd2015-05-05 16:11:27 -070036} else {
37 include ":grpc-compiler"
38 project(':grpc-compiler').projectDir = "$rootDir/compiler" as File
39}