HomeSort by relevance Sort by last modified time
    Searched refs:target_arch (Results 1 - 20 of 20) sorted by null

  /external/chromium_org/build/linux/
pkg-config-wrapper 20 target_arch="$1"
25 if [ -z "$root" -o -z "$target_arch" ]
27 echo "usage: $0 /path/to/sysroot target_arch libdir [pkg-config-arguments] package" >&2
31 if [ "$target_arch" = "x64" ]
  /external/compiler-rt/test/asan/
lit.site.cfg.in 13 config.target_arch = "@ASAN_TEST_TARGET_ARCH@"
  /external/chromium_org/ppapi/native_client/src/untrusted/pnacl_support_extension/
pnacl_component_crx_gen.py 76 def DetermineInstallerArches(target_arch):
77 arch = CanonicalArch(target_arch)
79 raise Exception('Unknown target_arch %s' % target_arch)
85 raise Exception('Unknown target_arch on windows w/ target_arch == %s' %
86 target_arch)
165 def LibDir(target_arch):
166 return J(PnaclDirs.TranslatorRoot(), 'translator', '%s' % target_arch)
169 def SandboxedCompilerDir(target_arch)
    [all...]
  /external/chromium_org/build/android/buildbot/
bb_run_bot.py 29 ['script', 'host_steps', 'extra_args', 'extra_gyp_defines', 'target_arch'])
72 if host_obj.target_arch:
73 env['GYP_DEFINES'] += ' target_arch=%s' % host_obj.target_arch
132 H = (lambda steps, extra_args=None, extra_gyp=None, target_arch=None :
134 extra_gyp, target_arch))
161 H(compile_step + std_host_tests, experimental, target_arch='ia32')),
166 H(compile_step + std_host_tests, target_arch='ia32')),
  /external/chromium_org/tools/gyp/pylib/gyp/
MSVSVersion.py 71 def SetupScript(self, target_arch):
75 # the setup script from the SDK if so. |target_arch| should be either
77 assert target_arch in ('x86', 'x64')
81 '/' + target_arch]
86 if target_arch == 'x86':
97 assert target_arch == 'x64'
  /external/chromium_org/remoting/tools/
zip2msi.py 230 target_arch = parameters['target_arch']
231 if target_arch == 'ia32':
233 elif target_arch == 'x64':
236 print 'Invalid target_arch parameter value'
263 parser.add_option('--target_arch', dest='target_arch', default='x86')
  /external/chromium_org/chrome/tools/build/win/
create_installer_archive.py 373 def CopyVisualStudioRuntimeDLLs(target_arch, build_dir):
384 "Debug_NonRedist/" + target_arch + "/Microsoft.*.DebugCRT/*.dll")
388 target_arch + "/Microsoft.*.CRT/*.dll")
393 if target_arch == 'x64':
428 def DoComponentBuildTasks(staging_dir, build_dir, target_arch, current_version):
441 CopyVisualStudioRuntimeDLLs(target_arch, build_dir)
519 options.target_arch, current_version)
577 parser.add_option('--target_arch', default='x86',
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
android_browser_finder.py 117 target_arch=self.finder_options.target_arch,
android_browser_backend.py 175 output_profile_path, extensions_to_load, target_arch,
190 self._target_arch = target_arch
  /external/lldb/source/Plugins/Process/Utility/
UnwindMacOSXFrameBackchain.cpp 43 const ArchSpec& target_arch = target->GetArchitecture (); local
47 if (target_arch.GetAddressByteSize() == 8)
  /external/chromium_org/tools/auto_bisect/
bisect_perf_regression.py 280 def GetZipFileName(build_revision=None, target_arch='ia32', patch_sha=None):
287 if bisect_utils.Is64BitWindows() and target_arch == 'x64':
306 target_arch='ia32', patch_sha=None):
311 if bisect_utils.Is64BitWindows() and target_arch == 'x64':
323 build_revision, target_arch, patch_sha)
    [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 490 const ArchSpec &target_arch = GetTarget().GetArchitecture();
501 if (!target_arch.IsValid())
508 else if (target_arch.GetMachine() == llvm::Triple::arm)
883 ArchSpec &target_arch = GetTarget().GetArchitecture(); local
885 if (target_arch.IsValid())
    [all...]
  /external/lldb/source/Target/
StackFrame.cpp 1425 const ArchSpec &target_arch = target->GetArchitecture(); local
    [all...]
Thread.cpp     [all...]
Process.cpp     [all...]
Target.cpp 62 Target::Target(Debugger &debugger, const ArchSpec &target_arch, const lldb::PlatformSP &platform_sp) :
69 m_arch (target_arch),
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py 499 def GypNinjaBuild_Pnacl(rel_out_dir, target_arch):
509 GypNinjaBuild(target_arch, gyp_py, gyp_file, targets, out_dir, False)
520 gyp_defines.append('target_arch=%s' % arch)
    [all...]
  /external/lldb/include/lldb/Target/
Target.h 426 const ArchSpec &target_arch,
    [all...]
  /external/chromium_org/build/android/
adb_gdb 107 TARGET_ARCH=
179 TARGET_ARCH=$optarg
361 local ARCH=$(echo $GYP_DEFINES | tr ' ' '\n' | grep '^target_arch=' |\
370 if [ -z "$TARGET_ARCH" ]; then
371 TARGET_ARCH=$(get_gyp_target_arch)
372 if [ -z "$TARGET_ARCH" ]; then
373 TARGET_ARCH=arm
379 if [ "$TARGET_ARCH" = "ia32" ]; then
380 TARGET_ARCH=x86
381 log "Auto-config: --arch=$TARGET_ARCH (equivalent to ia32)
    [all...]
  /external/lldb/source/Commands/
CommandObjectTarget.cpp 63 const ArchSpec &target_arch = target->GetArchitecture(); local
77 if (target_arch.IsValid())
79 strm.Printf ("%sarch=%s", properties++ > 0 ? ", " : " ( ", target_arch.GetTriple().str().c_str());
    [all...]

Completed in 648 milliseconds