Home
last modified time | relevance | path

Searched refs:old_spec (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/tools/gyp/pylib/gyp/
Dxcode_ninja.py53 def _TargetFromSpec(old_spec, params): argument
65 target_name = old_spec.get('target_name')
66 product_name = old_spec.get('product_name', target_name)
71 ninja_target['toolset'] = old_spec.get('toolset')
72 ninja_target['default_configuration'] = old_spec.get('default_configuration')
81 if 'configurations' in old_spec:
82 for config in old_spec['configurations'].iterkeys():
84 old_spec['configurations'][config].get('xcode_settings', {})
93 ninja_target['mac_bundle'] = old_spec.get('mac_bundle', 0)
94 ninja_target['ios_app_extension'] = old_spec.get('ios_app_extension', 0)
[all …]
/external/chromium_org/chrome/browser/profiles/
Dprofile_downloader.cc97 const std::string& old_spec = old_url.spec(); in GetImageURLWithSize() local
103 size_t pos = old_spec.find(default_size_component); in GetImageURLWithSize()
114 pos = old_spec.find(file_name); in GetImageURLWithSize()
120 std::string new_spec = old_spec.substr(0, pos) + new_size_component + in GetImageURLWithSize()
121 old_spec.substr(end); in GetImageURLWithSize()