Home
last modified time | relevance | path

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

12345678910>>...44

/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 …]
/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/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/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/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/antlr/runtime/CSharp2/
Dall.antlr3.runtime.net.build1 <?xml version="1.0" encoding='iso-8859-1' ?>
4 <property name="base.dir" value="${path::get-full-path( project::get-base-directory() )}" />
5 <property name="sharedlibrary.dir" value="${base.dir}/Libraries" />
6 <property name="tools.dir" value="${base.dir}/Tools" />
13 <!-- =================================================================== -->
14 <!-- Help on usage -->
15 <!-- =================================================================== -->
18 <echo message="ANTLR v3 C# Runtime - Nant Build file"/>
19 <echo message="-------------------------------------------------------------"/>
23 …<echo message=" build - build debug or release version in '${base.dir}/build/${framework::ge…
[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/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-tests.xml3 <property file="build.properties"/>
5 <property name="report.dir" value="${test.output.dir}"/>
6 <property name="junit.report.dir" value="${report.dir}/test-tmp"/>
7 <property name="testng.report.dir" value="${report.dir}"/>
11 <!-- ==================================================================== -->
12 <!-- Compile -->
13 <!-- ==================================================================== -->
16 <fileset dir="${lib.dir}" includes="${guice2.jar}" />
17 <fileset dir="${lib.dir}" includes="${junit.jar}" />
18 <fileset dir="${lib.dir}" includes="aopalliance-1.0.jar" />
[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/androidplot/Examples/
Dpom.xml1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
9 ~ http://www.apache.org/licenses/LICENSE-2.0
16 -->
19 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 …xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <version>0.6.0-SNAPSHOT</version>
28 <artifactId>androidplot-examples</artifactId>
29 <name>AndroidPlot-Examples</name>
37 <!--<dependency>
[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/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 …]
/external/jarjar/
Dbuild.xml1 <?xml version='1.0' encoding='UTF-8'?>
3 <property file="${user.home}/build.properties" />
4 <property file="build.properties" />
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" />
31 <!-- defined maven snapshots and staging repository id and url -->
[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/mobile-data-download/javatests/com/google/android/libraries/mobiledatadownload/file/openers/
DRecursiveSizeOpenerTest.java8 * http://www.apache.org/licenses/LICENSE-2.0
52 FileNotFoundException.class, () -> storage.open(missing, RecursiveSizeOpener.create())); in open_nonExistentUri_throwsFileNotFoundException()
60 FileNotFoundException.class, () -> storage.open(file, RecursiveSizeOpener.create())); in open_file_throwsFileNotFoundException()
65 Uri dir = tmpUri.newDirectoryUri(); in open_emptyDirectory_returns0() local
66 assertThat(storage.open(dir, RecursiveSizeOpener.create())).isEqualTo(0); in open_emptyDirectory_returns0()
71 Uri dir = tmpUri.newDirectoryUri(); in open_nonEmptyDirectory_returnsSizeOfChildrenFiles() local
75 storage, FileUri.builder().setPath(dir.getPath()).appendPath("file0").build(), "12345"); in open_nonEmptyDirectory_returnsSizeOfChildrenFiles()
77 storage, FileUri.builder().setPath(dir.getPath()).appendPath("file1").build(), "678"); in open_nonEmptyDirectory_returnsSizeOfChildrenFiles()
79 assertThat(storage.open(dir, RecursiveSizeOpener.create())).isEqualTo(8); in open_nonEmptyDirectory_returnsSizeOfChildrenFiles()
84 Uri dir = tmpUri.newDirectoryUri(); in open_directoryTree_recurses() local
[all …]
/external/angle/build/android/docs/
Dcoverage.md10 In order to use JaCoCo code coverage, we need to create build time pre-instrumented
12 [build/android/generate_jacoco_report.py](https://source.chromium.org/chromium/chromium/src/+/main:
16 1. Use the following GN build arguments:
23 Now when building, pre-instrumented files will be created in the build directory.
25 2. Run tests, with option `--coverage-dir <directory>`, to specify where to save
27 `out/Debug/bin/run_chrome_junit_tests --coverage-dir /tmp/coverage`.
38 build/android/generate_jacoco_report.py \
39 --format html \
40 --output-dir /tmp/coverage_report/ \
41 --coverage-dir /tmp/coverage/ \
[all …]
/external/cronet/build/android/docs/
Dcoverage.md10 In order to use JaCoCo code coverage, we need to create build time pre-instrumented
12 [build/android/generate_jacoco_report.py](https://source.chromium.org/chromium/chromium/src/+/main:
16 1. Use the following GN build arguments:
23 Now when building, pre-instrumented files will be created in the build directory.
25 2. Run tests, with option `--coverage-dir <directory>`, to specify where to save
27 `out/Debug/bin/run_chrome_junit_tests --coverage-dir /tmp/coverage`.
38 build/android/generate_jacoco_report.py \
39 --format html \
40 --output-dir /tmp/coverage_report/ \
41 --coverage-dir /tmp/coverage/ \
[all …]
/external/mobile-data-download/java/com/google/android/libraries/mobiledatadownload/file/backends/
DAndroidFileEnvironment.java8 * http://www.apache.org/licenses/LICENSE-2.0
20 import android.os.Build;
33 * Provides access to high-level information about the Android file environment. These utilities are
43 for (File dir : dirs) { in getMountedExternalDirs()
44 if (dir == null) { in getMountedExternalDirs()
47 String state = getStorageState(dir); in getMountedExternalDirs()
49 Log.d(TAG, String.format("External storage: [%s] is [%s]", dir.getAbsolutePath(), state)); in getMountedExternalDirs()
52 result.add(dir); in getMountedExternalDirs()
62 private static String getStorageState(File dir) { in getStorageState() argument
63 if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) { in getStorageState()
[all …]
/external/guice/extensions/servlet/
Dbuild.xml3 <project name="guice-servlet" basedir="." default="jar">
8 <fileset dir="${lib.dir}" includes="*.jar"/>
9 <fileset dir="${lib.dir}/build" includes="*.jar"/>
10 <fileset dir="${ext.lib.dir}" includes="*.jar"/>
11 <fileset dir="${ext.lib.dir}/build" includes="*.jar"/>
12 <pathelement path="../../build/classes"/>
15 <target name="jar" depends="compile, manifest" description="Build jar.">
16 <jar destfile="${build.dir}/${ant.project.name}-${version}.jar"
17 manifest="${build.dir}/META-INF/MANIFEST.MF">
18 <fileset dir="${build.dir}/classes" />
/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/apache-commons-io/src/test/java/org/apache/commons/io/
DFileUtilsListFilesTest.java9 * http://www.apache.org/licenses/LICENSE-2.0
58 files.forEachRemaining(f -> fileNames.add(f.getName())); in filesToFilenames()
65 File dir = temporaryFolder; in setUp() local
66 File file = new File(dir, "dummy-build.xml"); in setUp()
68 file = new File(dir, "README"); in setUp()
71 dir = new File(dir, "subdir1"); in setUp()
72 dir.mkdirs(); in setUp()
73 file = new File(dir, "dummy-build.xml"); in setUp()
75 file = new File(dir, "dummy-readme.txt"); in setUp()
78 dir = new File(dir, "subsubdir1"); in setUp()
[all …]
/external/clang/utils/analyzer/
DSATestBuild.py10 information on how to build them and the expected output.
12 - ProjectMap file
13 - Historical Performance Data
14 - Project Dir1
15 - ReferenceOutput
16 - Project Dir2
17 - ReferenceOutput
19 Note that the build tree must be inside the project dir.
21 To test the build of the analyzer one would:
22 - Copy over a copy of the Repository Directory. (TODO: Prefer to ensure that
[all …]

12345678910>>...44