OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gyp_defines
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/chrome/installer/linux/sysroot_scripts/
install-debian.wheezy.sysroot.py
51
gyp_defines
= os.environ.get('
GYP_DEFINES
', '')
53
if option not in
gyp_defines
:
56
if option in
gyp_defines
:
63
if 'target_arch=x64' in
gyp_defines
:
65
elif 'target_arch=ia32' in
gyp_defines
:
/external/chromium_org/build/
landmines.py
64
def
gyp_defines
():
function
65
"""Parses and returns
GYP_DEFINES
env var as a dictionary."""
67
for arg in shlex.split(os.environ.get('
GYP_DEFINES
', '')))
79
if 'goma' in
gyp_defines
():
92
if 'OS' in
gyp_defines
():
93
if 'android' in
gyp_defines
()['OS']:
96
return
gyp_defines
()['OS']
157
gyp_defines
().get('target_arch') == 'x64' and
158
gyp_defines
().get('dcheck_always_on') == '1'):
/external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py
531
gyp_defines
= []
533
gyp_defines
.append('mac_sdk=%s' % options.mac_sdk)
535
gyp_defines
.append('target_arch=%s' % arch)
537
gyp_defines
+= ['armv7=1', 'arm_thumb=0', 'arm_neon=1']
539
gyp_defines
+= ['nacl_enable_arm_gcc=1']
541
gyp_env['
GYP_DEFINES
'] = ' '.join(
gyp_defines
)
542
for key in ['GYP_GENERATORS', '
GYP_DEFINES
']:
Completed in 748 milliseconds