/external/emma/ |
dependencies.xml | 8 <pathelement location="${build.target.ant.14.home}/lib/ant.jar" /> 13 <pathelement location="${build.target.ant.15.home}/lib/ant.jar" /> 19 <fileset dir="${build.target.j2se.12.home}/lib/" > 26 value="${build.target.j2se.12.home}/lib/ext/" 32 <fileset dir="${build.target.j2se.13.home}/lib/" > 39 value="${build.target.j2se.13.home}/lib/ext/" 45 <fileset dir="${build.target.j2se.14.home}/lib/" > 52 value="${build.target.j2se.14.home}/lib/ext/"
|
/external/openssl/crypto/des/ |
KERBEROS | 17 Now do a normal kerberos build and things should work. 19 One problem I found when I was build on my local sun.
|
/external/stlport/src/ |
stlport.rc | 80 #if !defined (BUILD) 83 VALUE "OriginalFilename", DLLNAME2(BUILD)
|
/external/svox/pico_resources/tools/LingwareBuilding/ |
Readme.txt | 24 to build intermediate binary files from lingware sources
28 to build final binary platform independent lingware resources from intermediate binaries
|
/external/v8/tools/ |
presubmit.py | 41 # build/include_what_you_use: Started giving false positives for variables 45 build/class 46 build/deprecated 47 build/endif_comment 48 build/forward_decl 49 build/include_order 50 build/printf_format 51 build/storage_class
|
/external/webkit/WebCore/accessibility/ |
AccessibilityAllInOne.cpp | 26 // This all-in-one cpp file cuts down on template bloat to allow us to build our Windows release build.
|
/external/webkit/WebCore/platform/gtk/ |
LoggingGtk.cpp | 47 g_warning("WEBKIT_DEBUG is not empty, but this is a release build. Notice that many log messages will only appear in a debug build.");
|
/external/webkit/WebKitTools/wx/packaging/ |
build-debian-installer.py | 7 sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "build"))) 33 os.system('fakeroot debian/rules build')
|
/ndk/build/core/ |
build-binary.mk | 23 # included the module build script. 27 include $(BUILD_SYSTEM)/build-module.mk 37 # Add the default system shared libraries to the build 78 # The original Android build system allows you to use the .arm prefix 98 # As a special case, the original Android build system 100 # forced to build in ARM mode by using a '.arm' suffix 105 # to build source file $(LOCAL_PATH)/foo.c as ARM 166 # Build the sources to object files
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
GetPropReceiver.java | 45 // to have the build info in the first line, and the build
|
/sdk/eclipse/ |
README_WINDOWS.txt | 3 1- To build the Eclipse plugin: 12 2- To build a Windows SDK, you need two steps:
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
Messages.java | 2 package com.android.ide.eclipse.adt.internal.build; 7 private static final String BUNDLE_NAME = "com.android.ide.eclipse.adt.internal.build.build_messages"; //$NON-NLS-1$
|
/external/webkit/WebKitTools/ |
ChangeLog-2009-06-16 | 15 Build with ENABLE_3D_RENDERING turned on by default on SnowLeopard. 17 * Scripts/build-webkit: 24 Refactor handling of options in the build-webkit script 28 the options on to the underlying port-dependent build systems. 31 pro file (dynamically), and to pass the options on to qmake at build. 33 * Scripts/build-webkit: 175 Fix the Qt build, add missing function declaration. 318 WebKit.tlb and EmbeddedIDL flags from build. 334 This fixes the Windows-build if the user does not have a /tmp directory. 379 Added new build flag --filters. More details in WebCore/ChangeLog [all...] |
/external/bluetooth/glib/ |
autogen.sh | 86 if [ ! -d build ]; then 90 echo " your checkout doesn't contain build/." 91 echo " fetching it from http://svn.gnome.org/svn/build/trunk/" 95 svn checkout http://svn.gnome.org/svn/build/trunk/ build 98 echo 'warning: build/ directory is missing and no "svn" to fetch it!'
|
/external/expat/lib/ |
Makefile.MPW | 11 # This Makefile lets you build static, dynamic (i.e. shared) and stub 14 # no problem to build a 68K version of the expat library, though. 107 ### Build Rules ### 184 ### Build this target to clean out generated intermediate files. ### 189 ### Build this target to clean out all generated files. ### 194 ### Build this target to generate "include file" dependencies. ###
|
/external/icu4c/tools/genrb/ |
Makefile.in | 22 ## Build directory information 53 # build-icu4j variables 85 build-icu4j 136 $(ICU4J_HOME)/build.xml: 142 build-icu4j: $(GENDTJAR) $(ICU4J_HOME)/build.xml #$(GENDTJAR_JARHOME)/jar
|
/external/libpng/contrib/visupng/ |
VisualPng.dsp | 2 # Microsoft Developer Studio Generated Build File, Format Version 6.00
8 !MESSAGE This is not a valid makefile. To build this project using NMAKE,
60 # Begin Special Build Tool
64 # End Special Build Tool
94 # Begin Special Build Tool
98 # End Special Build Tool
|
/external/libpng/scripts/ |
CMakeLists.txt | 34 option(PNG_SHARED "Build shared lib" YES) 35 option(PNG_STATIC "Build static lib" YES) 37 option(PNG_TESTS "Build pngtest" NO) 39 option(PNG_TESTS "Build pngtest" YES) 43 option(PNG_DEBUG "Build with debug output" YES) 132 # NOW BUILD OUR TARGET
|
/external/webkit/WebKitTools/Scripts/webkitpy/commands/ |
early_warning_system.py | 49 "build", 51 "--build-style=%s" % self._build_style, 56 self._update_status("Unable to perform a build") 62 "build-attachment", 64 "--build-style=%s" % self._build_style, 79 message = "Attachment %s did not build on %s:\nBuild output: %s" % (state["patch"].id(), cls.port_name, results_link)
|
/external/webkit/WebKitTools/Scripts/webkitpy/steps/ |
options.py | 32 build = make_option("--no-build", action="store_false", dest="build", default=True, help="Commit without building first, implies --no-test.") variable in class:Options 33 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.") 35 check_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="Don't check to see if the build.webkit.org builders are green before landing.")
|
/external/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/ |
README.VMS | 6 @BUILD.COM xxxC 17 To build with VAX C for VAX/VMS: 21 To build with GNU C for VAX/VMS: 26 To build with DEC C for either VAX/VMS or Alpha/VMS: 76 build.com -- DCL command procedure as alternative to descrip.mms; 79 build from scratch; performs same function as mkskel.sh;
|
/frameworks/base/services/java/com/android/server/ |
BootReceiver.java | 25 import android.os.Build; 101 .append("Build: ").append(Build.FINGERPRINT).append("\n") 102 .append("Hardware: ").append(Build.BOARD).append("\n") 103 .append("Bootloader: ").append(Build.BOOTLOADER).append("\n") 104 .append("Radio: ").append(Build.RADIO).append("\n")
|
/ndk/build/toolchains/arm-eabi-4.2.1/ |
setup.mk | 16 # this file is used to prepare the NDK to build with the arm-eabi-4.2.1 19 # its purpose is to define (or re-define) templates used to build 63 # This function will be called to determine the target CFLAGS used to build 131 define cmd-build-shared-library 147 define cmd-build-executable 164 define cmd-build-static-library
|
/ndk/build/toolchains/x86-4.2.1/ |
setup.mk | 16 # this file is used to prepare the NDK to build with the x86-4.2.1 19 # its purpose is to define (or re-define) templates used to build 48 # This function will be called to determine the target CFLAGS used to build 98 define cmd-build-shared-library 114 define cmd-build-executable 131 define cmd-build-static-library
|
/system/extras/tests/bionic/libc/ |
Android.mk | 15 # Build control file for Bionic's test programs 16 # define the BIONIC_TESTS environment variable to build the test programs 22 # used to define a simple test program and build it as a standalone 26 # in the build. the variable will be cleaned on exit 121 # to build one shared object and one executable that depends 138 # build a shared library, then call it from another
|