Home
last modified time | relevance | path

Searched full:gradle (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/internal/
DDefaultManifestFactoryTest.java21 properties.put("android_merged_manifest", "/gradle/AndroidManifest.xml"); in identify()
22 properties.put("android_merged_resources", "/gradle/res"); in identify()
23 properties.put("android_merged_assets", "/gradle/assets"); in identify()
34 .isEqualTo(FileFsFile.from(baseDir + "/gradle/AndroidManifest.xml")); in identify()
36 .isEqualTo(FileFsFile.from(baseDir + "/gradle/res")); in identify()
38 .isEqualTo(FileFsFile.from(baseDir + "/gradle/assets")); in identify()
45 properties.put("android_merged_manifest", "/gradle/AndroidManifest.xml"); in identify_withResourceApk()
46 properties.put("android_merged_resources", "/gradle/res"); in identify_withResourceApk()
47 properties.put("android_merged_assets", "/gradle/assets"); in identify_withResourceApk()
48 properties.put("android_resource_apk", "/gradle/resources.ap_"); in identify_withResourceApk()
[all …]
/external/proguard/build/
Dbuild.xml12 <property name = "gradle.jar1" value = "${gradle.home}/lib/plugins/gradle-plugins-2.1.jar"/>
13 <property name = "gradle.jar2" value = "${gradle.home}/lib/gradle-base-services-2.1.jar"/>
14 <property name = "gradle.jar3" value = "${gradle.home}/lib/gradle-base-services-groovy-2.1.jar"/>
15 <property name = "gradle.jar4" value = "${gradle.home}/lib/gradle-core-2.1.jar"/>
16 <property name = "gradle.jar5" value = "${gradle.home}/lib/groovy-all-2.3.6.jar"/>
124 … set the value of the property gradle.home in the file build.properties, if you want to build the …
128 <available file="${gradle.jar1}"/>
129 <available file="${gradle.jar2}"/>
130 <available file="${gradle.jar3}"/>
131 <available file="${gradle.jar4}"/>
[all …]
/external/grpc-grpc-java/
D.travis.yml14 - mkdir -p $HOME/.gradle/caches &&
15 ln -s /tmp/gradle-caches-modules-2 $HOME/.gradle/caches/modules-2
16 - mkdir -p $HOME/.gradle &&
17 ln -s /tmp/gradle-wrapper $HOME/.gradle/wrapper
19 - mkdir -p $HOME/.gradle
20 - echo "checkstyle.ignoreFailures=false" >> $HOME/.gradle/gradle.properties
21 - echo "failOnWarnings=true" >> $HOME/.gradle/gradle.properties
22 - echo "errorProne=true" >> $HOME/.gradle/gradle.properties
47 # We have decided not to make our build.gradle support both plugins, so when
60 - /tmp/gradle-caches-modules-2
[all …]
Dbuild.gradle4 maven { url "https://plugins.gradle.org/m2/" }
7 classpath "com.diffplug.spotless:spotless-plugin-gradle:3.13.0"
8 classpath 'com.google.gradle:osdetector-gradle-plugin:1.4.0'
9 classpath 'ru.vyarus:gradle-animalsniffer-plugin:1.4.5'
10 classpath 'net.ltgt.gradle:gradle-errorprone-plugin:0.0.13'
11 classpath 'net.ltgt.gradle:gradle-apt-plugin:0.13'
12 classpath "me.champeau.gradle:jmh-gradle-plugin:0.4.5"
13 classpath 'me.champeau.gradle:japicmp-gradle-plugin:0.2.5'
25 apply plugin: "me.champeau.gradle.jmh"
52 // https://github.com/gradle/gradle/issues/2315
[all …]
DCOMPILING.md11 `<project-root>/gradle.properties` and add `skipCodegen=true`.
25 Building in IntelliJ works best when you import the project as a Gradle project and delegate IDE
26 build/run actions to Gradle.
30 -> Build Tools -> Gradle -> Runner
31 -> Delegate IDE build/run actions to gradle.
82 Gradle to find protobuf:
91 create ``<project-root>\gradle.properties`` with contents like:
106 to your Gradle command line or add ``vcDisable=true`` to your
107 ``<project-root>\gradle.properties``.
114 ``<project-root>/gradle.properties``:
/external/proguard/examples/gradle/
Dproguard.gradle2 // This Gradle build file illustrates how to process ProGuard itself.
5 // gradle -b proguard.gradle proguard
8 // Tell Gradle where to find the ProGuard task.
21 task proguard(type: proguard.gradle.ProGuardTask) {
29 // We'll filter out the Ant classes, Gradle classes, and WTK classes, keeping
32 … injars '../../lib/proguard.jar', filter: '!proguard/ant/**,!proguard/gradle/**,!proguard/wtk/**'
74 // If you want to preserve the Gradle task, you'll have to specify the Gradle
77 //libraryjars '/usr/local/java/gradle-2.1/lib/plugins/gradle-plugins-2.1.jar'
78 //libraryjars '/usr/local/java/gradle-2.1/lib/gradle-base-services-2.1.jar'
79 //libraryjars '/usr/local/java/gradle-2.1/lib/gradle-base-services-groovy-2.1.jar'
[all …]
Dproguardall.gradle2 // This Gradle build file illustrates how to process ProGuard
7 // gradle -b proguardall.gradle proguard
10 // Tell Gradle where to find the ProGuard task.
23 task proguard(type: proguard.gradle.ProGuardTask) {
41 libraryjars '/usr/local/java/gradle-2.1/lib/plugins/gradle-plugins-2.1.jar'
42 libraryjars '/usr/local/java/gradle-2.1/lib/gradle-base-services-2.1.jar'
43 libraryjars '/usr/local/java/gradle-2.1/lib/gradle-base-services-groovy-2.1.jar'
44 libraryjars '/usr/local/java/gradle-2.1/lib/gradle-core-2.1.jar'
45 libraryjars '/usr/local/java/gradle-2.1/lib/groovy-all-2.3.6.jar'
85 // If we have the Gradle jars, we can properly process the Gradle task.
[all …]
/external/proguard/build/maven/gradle/
Dpom.xml13 <artifactId>proguard-gradle</artifactId>
23 <include>proguard/gradle/**</include>
31 <include>proguard/gradle/**</include>
48 <subpackages>proguard.gradle</subpackages>
61 <groupId>org.gradle</groupId>
62 <artifactId>gradle-core</artifactId>
67 <groupId>org.gradle</groupId>
68 <artifactId>gradle-base-services</artifactId>
73 <groupId>org.gradle</groupId>
74 <artifactId>gradle-base-services-groovy</artifactId>
[all …]
/external/proguard/examples/
Dproguard.pro9 # We'll filter out the Ant classes, Gradle classes, and WTK classes, keeping
12 -injars ../lib/proguard.jar(!proguard/ant/**,!proguard/gradle/**,!proguard/wtk/**)
54 # If you want to preserve the Gradle task, you'll have to specify the Gradle
57 #-libraryjars /usr/local/java/gradle-1.3/lib/plugins/gradle-plugins-1.3.jar
58 #-libraryjars /usr/local/java/gradle-1.3/lib/gradle-base-services-1.3.jar
59 #-libraryjars /usr/local/java/gradle-1.3/lib/gradle-core-1.3.jar
60 #-libraryjars /usr/local/java/gradle-1.3/lib/groovy-all-1.8.6.jar
62 #-keep public class proguard.gradle.* {
Dproguardall.pro21 -libraryjars /usr/local/java/gradle-1.3/lib/plugins/gradle-plugins-1.3.jar
22 -libraryjars /usr/local/java/gradle-1.3/lib/gradle-base-services-1.3.jar
23 -libraryjars /usr/local/java/gradle-1.3/lib/gradle-core-1.3.jar
24 -libraryjars /usr/local/java/gradle-1.3/lib/groovy-all-1.8.6.jar
64 # If we have the Gradle jars, we can properly process the Gradle task.
66 -keep public class proguard.gradle.* {
/external/droiddriver/
Dbuild.gradle3 // $ ANDROID_HOME=/path/to/android-sdk gradle build
14 classpath 'com.android.tools.build:gradle:1.3.0'
15 classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
16 classpath 'com.jakewharton.sdkmanager:gradle-plugin:0.12.0'
18 classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:3.0.3'
19 classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.1'
24 apply from: 'properties.gradle'
83 // It is needed here because of a Gradle bug: addStringOption(String option) does not work.
100 apply from: 'maven.gradle'
104 apply from: 'jcenter.gradle'
[all …]
/external/conscrypt/release/
Ddocker22 # Update the gradle.properties file for the location of files in the
29 sed -i 's/#signingKeystore/signingKeystore/' /root/.gradle/gradle.properties
30 sed -i 's/#signingPassword/signingPassword/' /root/.gradle/gradle.properties
31 …KeyRingFile=.*\signing.secretKeyRingFile=/root/.gnupg/secring.gpg\' /root/.gradle/gradle.properties
32 sed -i 's\signingKeystore=.*\signingKeystore=/root/certkeystore\' /root/.gradle/gradle.properties
35 ./gradlew -Dorg.gradle.parallel=false uploadArchives
Dlinux19 # Update the build.gradle file for the new version
20 sed -i 's/version = ".*"/version = "'"$1"'"/' build.gradle
22 # Commit the build.gradle, tag the release, and push upstream
34 docker exec $CONTAINER_ID mkdir /root/.gradle
36 docker cp ~/.gradle/gradle.properties $CONTAINER_ID:/root/.gradle/
37 docker cp "$(grep signingKeystore ~/.gradle/gradle.properties | cut -d= -f2)" $CONTAINER_ID:/root/c…
DREADME.md47 ### Set up gradle.properties
50 to `$HOME/.gradle/gradle.properties`.
92 # Change version in build.gradle to X.Y+1-SNAPSHOT
112 # Change version in build.gradle to this version's number
149 # mkdir /root/.gradle
155 $ docker cp ~/.gradle/gradle.properties <container-ID>:/root/.gradle/
160 `/root/.gradle/gradle.properties` to point to `/root/.gnupg/secring.gpg` and
166 $ ./gradlew -Dorg.gradle.parallel=false uploadArchives
192 …$ ./gradlew conscrypt-openjdk:uploadArchives -Dorg.gradle.parallel=false -PrepositoryId=<repositor…
216 $ ./gradlew conscrypt-android:uploadArchives -Dorg.gradle.parallel=false
[all …]
/external/volley/
Dbuild.gradle2 // of tool versions (gradle plugin, compile SDK, build tools), so that
3 // Volley can be built via gradle as a standalone project.
5 // Any other changes to the build config belong in rules.gradle, which
9 // Most users should just add this line to settings.gradle:
12 // If you have a more complicated Gradle setup you can choose to use
15 // project(':volley').buildFileName = 'rules.gradle'
23 classpath 'com.android.tools.build:gradle:3.2.1'
61 apply from: 'rules.gradle'
62 apply from: 'bintray.gradle'
/external/proguard/examples/ant/
Dproguard.xml27 <libraryjar file="/usr/local/java/gradle-2.1/lib/plugins/gradle-plugins-2.1.jar" />
28 <libraryjar file="/usr/local/java/gradle-2.1/lib/gradle-base-services-2.1.jar" />
29 <libraryjar file="/usr/local/java/gradle-2.1/lib/gradle-base-services-groovy-2.1.jar" />
30 <libraryjar file="/usr/local/java/gradle-2.1/lib/gradle-core-2.1.jar" />
31 <libraryjar file="/usr/local/java/gradle-2.1/lib/groovy-all-2.3.6.jar" />
76 <!-- If we have the Gradle jars, we can properly process the Gradle task. -->
78 <keep access="public" name="proguard.gradle.*">
/external/grpc-grpc/examples/android/helloworld/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
12 org.gradle.jvmargs=-Xmx1536m
14 # When configured, Gradle will run in incubating parallel mode.
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 # org.gradle.parallel=true
/external/grpc-grpc/src/android/test/interop/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
12 org.gradle.jvmargs=-Xmx1536m
14 # When configured, Gradle will run in incubating parallel mode.
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 # org.gradle.parallel=true
/external/subsampling-scale-image-view/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
12 org.gradle.jvmargs=-Xmx1536m
14 # When configured, Gradle will run in incubating parallel mode.
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 # org.gradle.parallel=true
/external/tensorflow/tensorflow/lite/java/ovic/demo/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
12 org.gradle.jvmargs=-Xmx1536m
14 # When configured, Gradle will run in incubating parallel mode.
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 # org.gradle.parallel=true
/external/tensorflow/tensorflow/lite/java/demo/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
12 org.gradle.jvmargs=-Xmx1536m
14 # When configured, Gradle will run in incubating parallel mode.
16 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
17 # org.gradle.parallel=true
/external/archive-patcher/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
13 # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding…
15 # When configured, Gradle will run in incubating parallel mode.
17 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 # org.gradle.parallel=true
/external/walt/android/WALT/
Dgradle.properties1 # Project-wide Gradle settings.
4 # Gradle settings configured through the IDE *will override*
8 # http://www.gradle.org/docs/current/userguide/build_environment.html
13 # org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding…
15 # When configured, Gradle will run in incubating parallel mode.
17 # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18 # org.gradle.parallel=true
/external/conscrypt/
DREADME.md76 #### Gradle subsubsection
77 Use the [osdetector-gradle-plugin](https://github.com/google/osdetector-gradle-plugin)
80 ```gradle
86 classpath 'com.google.gradle:osdetector-gradle-plugin:1.4.0'
90 // Use the osdetector-gradle-plugin
116 ##### Gradle l4subsection
117 ```gradle
128 #### Gradle subsubsection
130 ```gradle
/external/toolchain-utils/binary_search_tool/ndk/
DTeapot.tar.gz

12345678910>>...16