diff options
| author | Bogdan Drutu <bdrutu@google.com> | 2017-03-22 08:54:53 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-22 08:54:53 -0700 |
| commit | 07f0dd2f0fe62db217f0444cd5af046fe42a76d9 (patch) | |
| tree | 1d446e74d666e9f1a862ac0e292d01e7c5c2b28e /settings.gradle | |
| parent | 1858c491e3bfae2becb1b99abacf5d9c98222766 (diff) | |
| download | platform_external_opencensus-java-07f0dd2f0fe62db217f0444cd5af046fe42a76d9.tar.gz platform_external_opencensus-java-07f0dd2f0fe62db217f0444cd5af046fe42a76d9.tar.bz2 platform_external_opencensus-java-07f0dd2f0fe62db217f0444cd5af046fe42a76d9.zip | |
Add gradle build support for benchmarks and examples. (#163)
Diffstat (limited to 'settings.gradle')
| -rw-r--r-- | settings.gradle | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/settings.gradle b/settings.gradle index ae2bf2ec..f9810d14 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,12 +1,16 @@ rootProject.name = "instrumentation" +include ":instrumentation-all" +include ":instrumentation-benchmarks" include ":instrumentation-core" include ":instrumentation-core-impl" -include ":instrumentation-all" +include ":instrumentation-examples" include ":proto" include ":shared" project(':instrumentation-all').projectDir = "$rootDir/all" as File +project(':instrumentation-benchmarks').projectDir = "$rootDir/benchmarks" as File project(':instrumentation-core').projectDir = "$rootDir/core" as File project(':instrumentation-core-impl').projectDir = "$rootDir/core_impl" as File +project(':instrumentation-examples').projectDir = "$rootDir/examples" as File project(':proto').projectDir = "$rootDir/proto" as File project(':shared').projectDir = "$rootDir/shared" as File |
