HomeSort by relevance Sort by last modified time
    Searched refs:toolchain (Results 26 - 50 of 150) sorted by null

12 3 4 5 6

  /external/chromium_org/native_client_sdk/src/resources/
background.js 5 function makeURL(toolchain, config) {
6 return 'index.html?tc=' + toolchain + '&config=' + config;
25 // toolchain/config combinations) from the commandline, so we to read
  /external/chromium_org/tools/gn/
ninja_toolchain_writer.cc 14 #include "tools/gn/toolchain.h"
19 const Toolchain* toolchain,
23 toolchain_(toolchain),
42 const Toolchain* toolchain,
58 NinjaToolchainWriter gen(settings, toolchain, targets, file);
69 for (int i = Toolchain::TYPE_NONE + 1; i < Toolchain::TYPE_NUMTYPES; i++) {
70 Toolchain::ToolType tool_type = static_cast<Toolchain::ToolType>(i)
    [all...]
ninja_binary_target_writer_unittest.cc 25 NinjaBinaryTargetWriter writer(&target, setup.toolchain(), out);
58 NinjaBinaryTargetWriter writer(&shlib_target, setup.toolchain(), out);
ninja_copy_target_writer.cc 12 const Toolchain* toolchain,
14 : NinjaTargetWriter(target, toolchain, out) {
ninja_copy_target_writer_unittest.cc 30 NinjaCopyTargetWriter writer(&target, setup.toolchain(), out);
50 NinjaCopyTargetWriter writer(&target, setup.toolchain(), out);
scope_per_file_provider_unittest.cc 10 #include "tools/gn/toolchain.h"
19 // Test the default toolchain.
25 EXPECT_EQ("//toolchain:default", GPV(variables::kCurrentToolchain));
26 // TODO(brettw) this test harness does not set up the Toolchain manager
28 //EXPECT_EQ("//toolchain:default", GPV(variables::kDefaultToolchain));
36 // Test some with an alternate toolchain.
39 Toolchain toolchain(&settings, Label(SourceDir("//toolchain/"), "tc"));
40 settings.set_toolchain_label(toolchain.label())
    [all...]
ninja_script_target_writer_unittest.cc 24 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
52 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
73 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
120 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
157 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
223 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
262 NinjaScriptTargetWriter writer(&target, setup.toolchain(), out);
gyp_script_target_writer_unittest.cc 31 GypScriptTargetWriter writer(group, setup.toolchain(),
ninja_script_target_writer.h 21 const Toolchain* toolchain,
loader.h 23 class Toolchain;
35 // Loads the given file in the conext of the given toolchain. The initial
37 // empty toolchain name, which will trigger the load of the default build
42 // Notification that the given toolchain has loaded. This will unblock files
44 virtual void ToolchainLoaded(const Toolchain* toolchain) = 0;
46 // Returns the label of the default toolchain.
49 // Returns information about the toolchain with the given label. Will return
50 // false if we haven't processed this toolchain yet.
53 // Helper function that extracts the file and toolchain name from the give
    [all...]
  /ndk/build/core/
setup-toolchain.mk 17 # to setup the target toolchain for a given platform/abi combination.
25 # Check that we have a toolchain that supports the current ABI.
31 # Filter out the Clang toolchain, so that we can keep GCC as the default
32 # toolchain.
40 $(call __ndk_info,There is no toolchain that supports the $(TARGET_ARCH_ABI) ABI.)
45 # Select the last toolchain from the sorted list.
49 # If NDK_TOOLCHAIN_VERSION is defined, we replace the toolchain version
57 # We assume the toolchain name uses dashes (-) as separators and doesn't
75 $(call ndk_log,Using target toolchain '$(TARGET_TOOLCHAIN)' for '$(TARGET_ARCH_ABI)' ABI (through NDK_TOOLCHAIN_VERSION))
77 $(call ndk_log,Using target toolchain '$(TARGET_TOOLCHAIN)' for '$(TARGET_ARCH_ABI)' ABI
    [all...]
add-toolchain.mk 16 # this script is included repeatedly by main.mk to add a new toolchain
19 # '_config_mk' must be defined as the path of a toolchain
25 # by the toolchain configuration file
55 # Now record the toolchain-specific information
63 # check that the toolchain name is unique
65 $(call __ndk_error,Toolchain $(_name) defined in $(_parent) is\
74 $(call __ndk_error, Toolchain $(_name) lacks a setup.mk in $(_dir)))
  /bionic/libc/tools/
check-symbols.py 10 toolchain = os.environ['ANDROID_TOOLCHAIN'] variable
11 arch = re.sub(r'.*/linux-x86/([^/]+)/.*', r'\1', toolchain)
  /external/chromium_org/native_client_sdk/src/build_tools/
build_projects.py 78 buildbot_common.ErrorExit('Invalid toolchain(s): %s' % (
88 if not os.path.exists(os.path.join(pepperdir, 'toolchain')):
181 make_cmd.append('TOOLCHAIN=all')
213 parser.add_option('-t', '--toolchain',
214 help='Build using toolchain. Can be passed more than once.',
246 if not options.toolchain:
247 # Order matters here: the default toolchain for an example's Makefile will
248 # be the first toolchain in this list that is available in the example.
251 options.toolchain = ['pnacl', 'newlib', 'glibc', 'host']
253 if 'host' in options.toolchain
    [all...]
test_sdk.py 73 def RunTest(test, toolchain, arch, config):
74 args = ['TOOLCHAIN=%s' % toolchain, 'NACL_ARCH=%s' % arch]
96 for toolchain in ('newlib', 'glibc'):
99 RunTest(location, toolchain, arch, config)
113 for toolchain in toolchains:
114 args.extend(['-t', toolchain])
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/
build-hardy-toolchain.sh 18 # This script is used to rebuild the Linux 32-bit cross-toolchain
25 # WARNING: At this time, the generated toolchain binaries will *not* run
56 # Versions of various toolchain components, do not touch unless you know
70 GIT_BASE_DEFAULT=https://android.googlesource.com/toolchain
72 # Location where we will download the toolchain sources
73 TOOLCHAIN_SRC_DIR=$WORK_DIR/toolchain-src
79 # Name of the final generated toolchain
82 # Name of the final toolchain binary tarball that this script will create
85 # Location where we're going to install the toolchain during the build
90 # the final toolchain. This includes both SHA-1 for toolchain git repositorie
    [all...]
  /external/chromium_org/v8/
Makefile.nacl 49 TOOLCHAIN_PATH = $(realpath ${NACL_SDK_ROOT}/toolchain)
71 $(error Cannot find Native Client toolchain in "${NACL_TOOLCHAIN}")
  /external/chromium_org/v8/tools/
nacl-run.py 106 toolchain = platform + "_x86_glibc"
111 toolchain = platform + "_x86_glibc"
124 nacl_ld_so = os.path.join(nacl_sdk_dir, "toolchain", toolchain,
126 nacl_lib_path = os.path.join(nacl_sdk_dir, "toolchain", toolchain,
  /ndk/build/tools/
make-release.sh 70 # If darwin toolchain exist, build darwin too
83 register_option "--also-64" do_ALSO_64 "Also build 64-bit host toolchain"
87 register_var_option "--toolchain-src-dir=<path>" TOOLCHAIN_SRCDIR "Use toolchain sources from <path>"
141 - downloading toolchain sources from the Internet
143 - rebuilding the toolchain binaries for the host system
157 more quickly, by preparing toolchain binary tarballs that can be
202 # Step 1, If needed, download toolchain sources into a temporary directory
204 dump "Using toolchain source directory: $TOOLCHAIN_SRCDIR"
205 timestamp_set toolchain-download-source
    [all...]
  /build/core/combo/arch/x86/
x86-atom.mk 16 # This flag is used to enabled Atom-specific optimizations with our toolchain
  /ndk/toolchains/mipsel-linux-android-clang3.2/
setup.mk 17 # toolchain any number of source files
27 # Override the toolchain prefix
52 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
63 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
  /ndk/toolchains/mipsel-linux-android-clang3.3/
setup.mk 17 # toolchain any number of source files
27 # Override the toolchain prefix
52 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
63 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
  /external/oprofile/
common.mk 38 toolchain := prebuilts/gcc/$(HOST_PREBUILT_TAG)/arm/arm-linux-androideabi-4.6 macro
43 toolchain := prebuilts/gcc/$(HOST_PREBUILT_TAG)/mips/mipsel-linux-android-4.6 macro
48 common_host_c_includes := $(common_c_includes) $(toolchain)/include
  /ndk/toolchains/x86-clang3.2/
setup.mk 17 # toolchain any number of source files
27 # Override the toolchain prefix
48 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
61 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
89 # this toolchain's generated binaries
  /ndk/toolchains/x86-clang3.3/
setup.mk 17 # toolchain any number of source files
27 # Override the toolchain prefix
48 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
61 -gcc-toolchain $(call host-path,$(TOOLCHAIN_PREBUILT_ROOT)) \
89 # this toolchain's generated binaries

Completed in 965 milliseconds

12 3 4 5 6