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

  /external/chromium_org/tools/gyp/tools/
graphviz.py 50 build_file, target_name, toolset = ParseTarget(src)
65 build_file, target_name, toolset = ParseTarget(target)
73 build_file, target_name, toolset = ParseTarget(target)
  /external/chromium_org/tools/gyp/pylib/gyp/
common.py 48 # Splits a qualified target into a build file, target name and toolset.
59 [target, toolset] = target_split
61 toolset = None
63 return [build_file, target, toolset]
66 def ResolveTarget(build_file, target, toolset):
71 # - a toolset
75 # toolset is the default toolset for that target.
95 toolset = parsed_toolset
97 return [build_file, target, toolset]
    [all...]
input.py 85 'toolset',
305 # If this target already has an explicit 'toolset', and no 'toolsets'
307 if 'toolset' in target and 'toolsets' not in target:
318 # Optimization: only do copies if more than one toolset is specified.
321 new_target['toolset'] = build
323 target['toolset'] = toolsets[0]
384 # per toolset.
    [all...]
  /external/chromium_org/v8/tools/
mingw-generate-makefiles.sh 62 (self.flavor != 'mac' or self.toolset != 'target')):
63 # Install all shared libs into a common directory (per toolset) for
65 return '\$(builddir)%slib.%s%s%s' % (sep, self.toolset, sep, self.alias)
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
android.py 35 'SHARED_LIB_DIR': '$(builddir)/lib.$(TOOLSET)',
36 'LIB_DIR': '$(obj).$(TOOLSET)',
159 self.toolset = spec['toolset']
187 if self.toolset == 'host':
498 if self.toolset == 'host':
611 if spec['toolset'] == 'host':
675 if self.type == 'executable' and self.toolset == 'host':
680 if self.toolset == 'host':
686 if self.toolset == 'host'
    [all...]
make.py 39 'INTERMEDIATE_DIR': '$(obj).$(TOOLSET)/$(TARGET)/geni',
92 default_variables.setdefault('SHARED_LIB_DIR','$(builddir)/lib.$(TOOLSET)')
93 default_variables.setdefault('LIB_DIR', '$(obj).$(TOOLSET)')
127 quiet_cmd_alink = AR($(TOOLSET)) $@
128 cmd_alink = rm -f $@ && $(AR.$(TOOLSET)) crs $@ $(filter %.o,$^)
130 quiet_cmd_alink_thin = AR($(TOOLSET)) $@
131 cmd_alink_thin = rm -f $@ && $(AR.$(TOOLSET)) crsT $@ $(filter %.o,$^)
136 quiet_cmd_link = LINK($(TOOLSET)) $@
137 cmd_link = $(LINK.$(TOOLSET)) $(GYP_LDFLAGS) $(LDFLAGS.$(TOOLSET)) -o $@ -Wl,--start-group $(LD_INPUTS) -Wl,--end-group $(LIBS
    [all...]
ninja.py 334 if self.toolset != 'target':
335 obj += '.' + self.toolset
372 self.toolset = spec['toolset']
563 if self.toolset != 'target':
564 verb += '(%s)' % self.toolset
762 if self.toolset == 'host':
    [all...]
xcode.py 224 toolset = target['toolset']
226 toolset)
369 toolset = bf_tgt['toolset']
371 tgt_name, toolset)
647 [build_file, target_name, toolset] = \
651 if spec['toolset'] != 'target':
    [all...]
msvs.py 853 """Get the platform toolset for the project.
860 the platform toolset string or None.
864 toolset = default_config.get('msbuild_toolset')
865 if not toolset and version.DefaultToolset():
866 toolset = version.DefaultToolset()
867 return toolset
    [all...]

Completed in 9191 milliseconds