OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:host_platform
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/android_webview/tools/
gyp_webview
56
host_platform
=$(echo $host_os | sed -e 's/mac/darwin/')
60
'${ANDROID_SDK_ROOT}/../tools/${
host_platform
}', \
65
if [ "$PLATFORM" == "${
host_platform
}-arm" -o "$PLATFORM" == "all" ]; then
66
${GYP} --suffix .${
host_platform
}-arm ${EFLAGS} -Dtarget_arch=arm
68
if [ "$PLATFORM" == "${
host_platform
}-arm64" -o "$PLATFORM" == "all" ]; then
69
${GYP} --suffix .${
host_platform
}-arm64 ${EFLAGS} -Dtarget_arch=arm64
71
if [ "$PLATFORM" == "${
host_platform
}-x86" -o "$PLATFORM" == "all" ]; then
72
${GYP} --suffix .${
host_platform
}-x86 ${EFLAGS} -Dtarget_arch=ia32
74
if [ "$PLATFORM" == "${
host_platform
}-x86_64" -o "$PLATFORM" == "all" ]; then
75
${GYP} --suffix .${
host_platform
}-x86_64 ${EFLAGS} -Dtarget_arch=x6
[
all
...]
/external/chromium_org/third_party/mesa/src/
common.py
17
host_platform
= _platform.system().lower()
variable
18
if
host_platform
.startswith('cygwin'):
19
host_platform
= 'cygwin'
variable
26
target_platform =
host_platform
56
if target_platform == 'windows' and
host_platform
!= 'windows':
91
opts.Add(EnumOption('platform', 'target platform',
host_platform
,
102
if
host_platform
== 'windows':
SConstruct
108
host_env['platform'] = common.
host_platform
/external/mesa3d/
common.py
17
host_platform
= _platform.system().lower()
variable
18
if
host_platform
.startswith('cygwin'):
19
host_platform
= 'cygwin'
variable
26
target_platform =
host_platform
56
if target_platform == 'windows' and
host_platform
!= 'windows':
91
opts.Add(EnumOption('platform', 'target platform',
host_platform
,
102
if
host_platform
== 'windows':
SConstruct
108
host_env['platform'] = common.
host_platform
/external/chromium_org/tools/telemetry/telemetry/core/forwarders/
android_forwarder.py
195
host_platform
= platform.GetHostPlatform().GetOSName()
196
if
host_platform
== 'linux':
198
if
host_platform
== 'mac':
200
raise NotImplementedError('Platform %s not supported!' %
host_platform
)
/external/chromium_org/third_party/mesa/src/scons/
gallium.py
162
host_platform
= _platform.system().lower()
163
if
host_platform
.startswith('cygwin'):
164
host_platform
= 'cygwin'
176
env['crosscompile'] = platform !=
host_platform
/external/mesa3d/scons/
gallium.py
162
host_platform
= _platform.system().lower()
163
if
host_platform
.startswith('cygwin'):
164
host_platform
= 'cygwin'
176
env['crosscompile'] = platform !=
host_platform
Completed in 981 milliseconds