Home
last modified time | relevance | path

Searched +full:build +full:- +full:src +full:- +full:dir (Results 1 – 25 of 1032) sorted by relevance

12345678910>>...42

/external/guice/
Dbuild.xml4 <!-- common definitions are stored in common.xml. -->
8 <fileset dir="${lib.dir}" includes="*.jar"/>
9 <fileset dir="${lib.dir}/build" includes="*.jar"/>
14 <fileset dir="extensions">
17 <pathelement location="${build.dir}/classes"/>
21 <target name="jar" depends="jar.withdeps, manifest" description="Build jar.">
22 <jar jarfile="${build.dir}/dist/guice-${version}.jar"
23 manifest="${build.dir}/META-INF/MANIFEST.MF">
24 <zipfileset src="${build.dir}/${ant.project.name}-with-deps.jar"/>
29 description="Build entire distribution.">
[all …]
Dcommon.xml5 <property file="build.properties"/>
7 <!-- can be overridden at the command line with -Dversion=
8 or in IDEA, in the ant properties dialog -->
13 <mkdir dir="${build.dir}/classes"/>
14 <javac srcdir="${src.dir}"
16 destdir="${build.dir}/classes"
18 <compilerarg value="-Xlint:all,-serial"/>
21 <copy toDir="${build.dir}/classes">
22 <fileset dir="${src.dir}" excludes="**/*.java"/>
29 classpath="${common.basedir}/lib/build/bnd-0.0.384.jar"/>
[all …]
Dbuild.properties1 lib.dir=lib
2 src.dir=core/src
3 test.dir=core/test
4 servlet.src.dir=extensions/servlet/src
5 spring.src.dir=extensions/spring/src
6 assistedinject.src.dir=extensions/assistedinject/src
7 jmx.src.dir=extensions/jmx/src
8 jndi.src.dir=extensions/jndi/src
9 throwingproviders.src.dir=extensions/throwingproviders/src
10 daggeradapter.src.dir=extensions/dagger-adapter/src
[all …]
/external/libphonenumber/
Dbuild.xml4 <property name="libphonenumber.src.dir" value="libphonenumber/src"/>
5 <property name="libphonenumber.test.dir" value="libphonenumber/test"/>
6 <property name="carrier.src.dir" value="carrier/src"/>
7 <property name="carrier.test.dir" value="carrier/test"/>
8 <property name="geocoder.src.dir" value="geocoder/src"/>
9 <property name="geocoder.test.dir" value="geocoder/test"/>
10 <property name="prefixmapper.src.dir" value="internal/prefixmapper/src"/>
11 <property name="prefixmapper.test.dir" value="internal/prefixmapper/test"/>
12 <property name="build.dir" value="build"/>
13 <property name="classes.dir" value="${build.dir}/classes"/>
[all …]
/external/javassist/
Dbuild.xml3 <!-- =================================================================== -->
4 <!-- JBoss build file -->
5 <!-- =================================================================== -->
9 <property name="dist-version" value="javassist-3.24.1-GA"/>
13 <property name="target-src.jar" value="javassist-src.jar"/>
14 <property name="lib.dir" value="${basedir}/lib"/>
15 <property name="src.dir" value="${basedir}/src/main"/>
16 <property name="build.dir" value="${basedir}/target"/>
17 <property name="build.classes.dir" value="${build.dir}/classes"/>
18 <property name="test.src.dir" value="${basedir}/src/test"/>
[all …]
/external/testng/ant/
Dbuild.xml3 <!-- ====================================================================== -->
4 <!-- TestNG build file -->
5 <!-- Created cbeust, April 26th, 2004 -->
6 <!-- ====================================================================== -->
8 <property file="build.properties" />
11 <!-- ====================================================================== -->
12 <!-- PREPARE -->
13 <!-- ====================================================================== -->
14 <target name="prepare" depends="retrieve-dependencies"
15 description="Performs all preparations required to build.">
[all …]
Dbuild.properties5 testng.version=6.8.14-SNAPSHOT
6 testng.fullname=${testng.basename}-${testng.version}
11 root.dir=${basedir}
12 build.3rdparty.dir=${root.dir}/build3rdparty
13 build.maven-bundle.dir=${build.dir}/maven-bundle
14 target=${root.dir}/target
15 lib.dir=${basedir}/lib
16 lib-supplied.dir=${basedir}/lib-supplied
17 src.dir=${basedir}/src/main/java
18 src.resources.dir=${basedir}/src/main/resources
[all …]
/external/antlr/runtime/ActionScript/project/
Dbuild.xml4 <property name="build.dir" value="${basedir}/build"/>
5 <property name="build.lib.dir" value="${build.dir}/lib"/>
6 <property name="build.doc.dir" value="${build.dir}/doc"/>
7 <property name="build.test.dir" value="${build.dir}/test"/>
8 <property name="build.test.output.dir" value="${build.test.dir}/output"/>
9 <property name="src.dir" value="${basedir}/src"/>
13 <!-- Assume SDK 3.0 or greater has the ant tasks -->
17 <fileset id="sources" dir="${src.dir}">
23 <replacestring from="${src.dir}/" to=""/> <!-- Strip off directory -->
24 <replacestring from=".as" to=""/> <!-- Strip off extension -->
[all …]
/external/jarjar/
Dbuild.xml1 <?xml version='1.0' encoding='UTF-8'?>
3 <property file="${user.home}/build.properties" />
4 <property file="build.properties" />
17 <property name="src" location="src" />
18 <property name="build" location="build" />
21 <!-- define Maven coordinates -->
26 <!-- define artifacts' name, which follows the convention of Maven -->
27 <property name="maven-jar" value="${dist}/${artifactId}-${version}.jar" />
28 <property name="maven-javadoc-jar" value="${dist}/${artifactId}-${version}-javadoc.jar" />
29 <property name="maven-sources-jar" value="${dist}/${artifactId}-${version}-sources.jar" />
[all …]
/external/libese/apps/
Dbuild.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Copyright (C) 2017 The Android Open Source Project
8 http://www.apache.org/licenses/LICENSE-2.0
15 -->
16 <!-- Ant XML for out of band building all applets using shared exports. -->
17 <project basedir="." default="sample_apps" name="libese sample applet build scripts">
19 <!-- Project-wide properties -->
20 <!-- TODO: move to file="build.properties" -->
21 <property name="build" location="${basedir}/build"/>
22 <property name="prereqs.dir" location="${basedir}/prereqs"/>
[all …]
/external/jsr305/ri/
Dbuild.xml2 <project name="JSR305-ri" default="build">
5 <target name="build" depends="clean,classes,jars"/>
7 <mkdir dir="build/classes"/>
8 <javac destdir="build/classes" source="1.5" target="1.5" debug="on">
9 <src path="src/main/java"/>
11 <pathelement location="build/classes"/>
17 <delete dir="build/classes"/>
21 <fileset dir="build/jsr305.jar"/>
22 <fileset dir="build/jsr305-src.jar"/>
24 <jar destfile="build/jsr305.jar">
[all …]
/external/emma/
Dbuild.xml2 <!-- ============= [build file for ANT v1.5.x] ====================== -->
8 <project name="emma" default="build" basedir="." >
9 <!-- $Id: build.xml,v 1.2.2.3 2005/06/13 00:20:55 vlad_r Exp $ -->
13 <!-- TODO: build log -->
15 <!-- ============================================================== -->
17 <!-- pull in the OS environment variables; an OS env variable VAR can be used as ${env.VAR}: -->
20 <!-- ============================================================== -->
21 <!-- build branch properties and local customization overrides: -->
23 <!-- first, load the official build settings file: -->
24 <property file="build.properties" />
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Runtime/
Ddefault.build2 <project name="ANTLR C# Runtime Library" default="build">
4 <property name="base.dir" value="${path::get-full-path( project::get-base-directory() )}" />
17 <property name="src.dir" value="${base.dir}/" />
18 <property name="test.src.dir" value="${base.dir}/../Antlr3.Runtime.Tests" />
24 <target name="build" depends="init, compile, test" description="compiles the source code">
28 <mkdir dir="${build.working.dir}/tests" />
32 <!-- Copy Antlr3.Runtime.Tests dependencies -->
33 <copy todir="${build.working.dir}" overwrite="true">
34 <fileset basedir="${sharedlibrary.dir}/MbUnit">
40 <copy todir="${build.working.dir}" overwrite="true">
[all …]
/external/jsilver/
Dbuild.xml2 <property name="jar.dir" value="build/dist" />
3 <property name="jar.file" value="${jar.dir}/jsilver.jar"/>
5 <property name="src" value="src" />
6 <property name="gen" value="build/gen" />
8 <property name="lib.guava" value="lib/guava-r06.jar" />
11 <mkdir dir="${gen}" />
13 <arg value="-jar" />
15 <arg value="src/com/google/clearsilver/jsilver/syntax/jsilver.sablecc" />
16 <arg value="-d" />
25 <mkdir dir="build/classes"/>
[all …]
/external/tagsoup/
Dbuild.xml1 <!--
2 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
6 // http://www.apache.org/licenses/LICENSE-2.0 . You may also have
14 -->
18 <!-- generic properties -->
19 <property file="etc/build/build.properties"/>
20 <!-- additional tasks -->
21 <taskdef file="etc/build/taskdefs.txt" classpath="bin"/>
36 <!-- some folder settings -->
38 <property name="src" value="src"/>
[all …]
/external/kotlinx.atomicfu/atomicfu-gradle-plugin/src/test/kotlin/kotlinx/atomicfu/plugin/gradle/test/
DMppProjectTest.kt7 * Test that ensures correctness of `atomicfu-gradle-plugin` application to the MPP project:
8 * - post-compilation bytecode transformation tasks are created
10 * - original non-transformed classes are not left in compile/runtime classpath.
11 * - no `kotlinx/atomicfu` references are left in the transformed bytecode.
13 class MppLegacyTransformationTest : BaseKotlinGradleTest("mpp-simple") {
17 resolve("projects/mpp-simple/mpp-simple.gradle.kts") in createProject()
20 resolve("projects/mpp-simple/settings.gradle.kts") in createProject()
22 dir("src/commonMain/kotlin") {} in createProject()
24 resolve("projects/mpp-simple/src/commonMain/kotlin/IntArithmetic.kt") in createProject()
26 dir("src/commonTest/kotlin") {} in createProject()
[all …]
DJvmProjectTest.kt8 * Test that ensures correctness of `atomicfu-gradle-plugin` application to the JVM project:
9 * - post-compilation bytecode transformation tasks are created
11 * - original non-transformed classes are not left in compile/runtime classpath.
12 * - no `kotlinx/atomicfu` references are left in the transformed bytecode.
14 class JvmLegacyTransformationTest : BaseKotlinGradleTest("jvm-simple") {
18 resolve("projects/jvm-simple/jvm-simple.gradle.kts") in createProject()
21 resolve("projects/jvm-simple/settings.gradle.kts") in createProject()
23 dir("src/main/kotlin") {} in createProject()
25 resolve("projects/jvm-simple/src/main/kotlin/IntArithmetic.kt") in createProject()
27 dir("src/test/kotlin") {} in createProject()
[all …]
/external/antlr/runtime/JavaScript/build/
Dbuild.xml1 <project name="Antlr3JavaScriptRuntime" basedir=".." default="build">
3 Build procedure and task automation for the ANTLR JavaScript target.
6 <property name="build.dir" value="${basedir}/build" />
7 <property name="out.dir" value="${build.dir}/out" />
8 <property name="lib.dir" value="${basedir}/lib" />
9 <property name="doc.dir" value="${basedir}/doc" />
10 <property name="test.dir" value="${basedir}/tests" />
11 <property name="src.dir" value="${basedir}/src" />
12 <property name="third.dir" value="${basedir}/third" />
13 <property file="${build.dir}/antlr3.properties" />
[all …]
/external/vogar/
Dbuild.xml6 <!-- can be overridden at the command line with -Dversion=
7 or in IDEA, in the ant properties dialog -->
8 <property name="version" value="0.0"/> <!-- subversion revision? -->
10 <property name="installroot" value="build/vogar-${version}"/>
13 <property name="gson" value="lib/gson-1.7.1.jar"/>
15 <property name="kxml2" value="lib/kxml-libcore-20110123.jar"/>
16 <property name="android" value="${android.platform.dir}/android.jar"/>
28 <fail unless="android.platform.dir"
29 … message="No android.platform.dir. Create local.properties or put Android tools on your $PATH."/>
30 <mkdir dir="build/classes"/>
[all …]
/external/s2-geometry-library-java/
Dbuild.xml1 <project name="s2-geometry-java" default="compile">
3 <property name="src.dir" value="${basedir}/src" />
4 <property name="tests.dir" value="${basedir}/tests" />
5 <property name="lib.dir" value="${basedir}/lib" />
6 <property name="build.dir" value="${basedir}/build" />
7 <property name="classes.dir" value="${build.dir}/classes" />
8 <property name="project-jarfile"
9 value="${build.dir}/${ant.project.name}.jar" />
10 <property name="testClasses.dir" value="${build.dir}/test" />
13 <fileset dir="${lib.dir}">
[all …]
/external/hamcrest/
Dbuild.xml.original3 <property name="version" value="SNAPSHOT" description="Version number to use in build files"/>
4 …<property name="haltonfailure" value="true" description="Whether to halt the build if the tests fa…
5 <property name="debug" value="true" description="Whether to build with debug information"/>
7 … <tstamp><format property="build.timestamp" pattern="yyyy-MM-dd HH:mm:ss" timezone="GMT"/></tstamp>
8 …ache.tools.ant.taskdefs.optional.junit.JUnitTask" classpath="lib/integration/ant-junit-1.8.4.jar"/>
11 …<target name="all" depends="clean, bigjar, javadoc" description="Performs clean build, runs tests …
14 <delete dir="build"/>
17 <target name="api" description="Build Hamcrest APIs">
18 <path id="cp-hamcrest-api-main" path=""/>
19 <path id="cp-hamcrest-api-test" path=""/>
[all …]
/external/jacoco/org.jacoco.examples/build/
Dbuild.xml1 <?xml version="1.0" encoding="UTF-8"?>
3 <!--
7 http://www.eclipse.org/legal/epl-2.0
9 SPDX-License-Identifier: EPL-2.0
12 Marc R. Hoffmann - initial API and implementation
13 -->
15 <project name="Example Ant Build with JaCoCo" default="rebuild" xmlns:jacoco="antlib:org.jacoco.ant…
18 Example Ant build file that demonstrates how a JaCoCo coverage report
19 can be itegrated into an existing build in three simple steps.
22 <property name="src.dir" location="./src/main/java" />
[all …]
/external/grpc-grpc/
DRakefile1 # -*- ruby -*-
15 task.options = ['-c', 'src/ruby/.rubocop.yml']
17 task.patterns = ['src/ruby/{lib,spec}/**/*.rb', 'src/ruby/end2end/*.rb']
28 ext.ext_dir = File.join('src', 'ruby', 'ext', 'grpc')
29 ext.lib_dir = File.join('src', 'ruby', 'lib', 'grpc')
32 'x86-mingw32', 'x64-mingw32', 'x64-mingw-ucrt',
33 'x86_64-linux', 'x86-linux', 'aarch64-linux',
34 'x86_64-darwin', 'arm64-darwin',
39 "src/ruby/bin/", "src/ruby/ext/", "src/ruby/lib/", "src/ruby/pb/")
41 … spec.files += %w( etc/roots.pem grpc_c.32-msvcrt.ruby grpc_c.64-msvcrt.ruby grpc_c.64-ucrt.ruby )
[all …]
/external/skia/bin/
Dcoverage4 # Use of this source code is governed by a BSD-style license that can be
7 if [ -z "$1" ]; then
8 cat <<-EOM
13 $0 dm --src tests
15 $0 dm --src gm skp
21 set -x
22 set -e
29 DIR="$(mktemp -d "${TMPDIR:-/tmp}/skia_coverage_XXXXXXXXXX")"
30 BUILD=out/coverage
32 # Build $EXECUTABLE
[all …]
/external/antlr/runtime/CSharp2/Sources/Antlr3.Utility/
Ddefault.build2 <project name="ANTLR C# Runtime Utility Library" default="build">
4 <property name="base.dir" value="${path::get-full-path( project::get-base-directory() )}" />
12 <property name="src.dir" value="${base.dir}/" />
18 <target name="release" depends="clean" description="build non-debug version">
19 <!-- build a clean release distribution for release -->
22 <call target="build"/>
25 <target name="build" depends="init, compile" description="compiles the source code">
34 <target name="clean.vsnet" description="cleans up VS.NET build artifacts and output">
35 <!-- delete VS.NET project artifacts directory -->
36 <echo message="Deleting VS.NET artifacts directory '${base.dir}/bin'" />
[all …]

12345678910>>...42