Home | History | Annotate | Download | only in java

Lines Matching refs:bootclasspath

174 	// don't build against the default libraries (bootclasspath, ext, and framework for device
636 deps.bootClasspath = append(deps.bootClasspath, sdkDep.jars...)
646 deps.bootClasspath = append(deps.bootClasspath, dep.ImplementationJars()...)
762 implicits = append(implicits, deps.bootClasspath...)
768 if len(deps.bootClasspath) > 0 {
872 *implicits = append(*implicits, deps.bootClasspath...)
875 if len(deps.bootClasspath.Strings()) > 0 {
876 // For OpenJDK 8 we can use -bootclasspath to define the core libraries code.
877 flags.bootClasspathArgs = deps.bootClasspath.FormJavaClassPath("-bootclasspath")
880 // Dokka doesn't support bootClasspath, so combine these two classpath vars for Dokka.
882 dokkaClasspath = append(dokkaClasspath, deps.bootClasspath...)
1313 *implicits = append(*implicits, deps.bootClasspath...)
1316 // continue to use -bootclasspath even if Metalava under -source 1.9 is enabled
1318 if len(deps.bootClasspath.Strings()) > 0 {
1319 // For OpenJDK 8 we can use -bootclasspath to define the core libraries code.
1320 flags.bootClasspathArgs = deps.bootClasspath.FormJavaClassPath("-bootclasspath")