Searched refs:target_dict (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/tools/gyp/pylib/gyp/ |
D | MSVSUtil.py | 126 def _GetPdbPath(target_dict, config_name, vars): argument 144 config = target_dict['configurations'][config_name] 153 variables = target_dict.get('variables', {}) 159 pdb_base = target_dict.get('product_name', target_dict['target_name']) 160 pdb_base = '%s%s.pdb' % (pdb_base, _TARGET_TYPE_EXT[target_dict['type']]) 182 target_dict = target_dicts[t] 185 if not int(target_dict.get('msvs_large_pdb', 0)): 196 target_dict = target_dicts[t] 197 target_name = target_dict.get('target_name') 199 base_dict = _DeepCopySomeKeys(target_dict, [all …]
|
D | input.py | 439 for target_dict in build_file_data['targets']: 440 if 'dependencies' not in target_dict: 442 for dependency in target_dict['dependencies']: 1352 for target, target_dict in targets.iteritems(): 1354 toolset = target_dict['toolset'] 1356 dependencies = target_dict.get(dependency_key, []) 1371 dependency not in target_dict['dependencies']: 1392 for target, target_dict in targets.iteritems(): 1393 toolset = target_dict['toolset'] 1396 dependencies = target_dict.get(dependency_key, []) [all …]
|
D | xcode_ninja.py | 222 for target, target_dict in target_dicts.iteritems(): 224 files = target_dict.get('sources', []) + \ 225 target_dict.get('mac_bundle_resources', [])
|
D | xcode_emulation.py | 1555 for target_dict in targets.values(): 1556 for config in target_dict['configurations'].values(): 1565 for target_dict in targets.itervalues(): 1566 toolset = target_dict['toolset'] 1567 configs = target_dict['configurations']
|
/external/chromium_org/tools/gyp/pylib/gyp/generator/ |
D | analyzer.py | 140 def _ExtractSources(target, target_dict, toplevel_dir): argument 155 if 'sources' in target_dict: 156 _AddSources(target_dict['sources'], base_path, base_path_components, 160 if 'actions' in target_dict: 161 for action in target_dict['actions']: 164 if 'rules' in target_dict: 165 for rule in target_dict['rules']: 266 def _DoesTargetTypeRequireBuild(target_dict): argument 269 return target_dict['type'] != 'none' or \ 270 target_dict.get('actions') or target_dict.get('rules')
|
/external/chromium_org/v8/tools/testrunner/local/ |
D | statusfile.py | 99 def _ParseOutcomeList(rule, outcomes, target_dict, variables): argument 114 if rule in target_dict: 115 target_dict[rule] |= result 117 target_dict[rule] = result
|