Lines Matching refs:get

68         jobs = params.get("generator_flags", {}).get("xcode_ninja_jobs", 0)
70 target_name = old_spec.get("target_name")
71 product_name = old_spec.get("product_name", target_name)
72 product_extension = old_spec.get("product_extension")
79 ninja_target["toolset"] = old_spec.get("toolset")
80 ninja_target["default_configuration"] = old_spec.get("default_configuration")
92 old_xcode_settings = old_spec["configurations"][config].get(
109 ninja_target["mac_bundle"] = old_spec.get("mac_bundle", 0)
110 ninja_target["mac_xctest_bundle"] = old_spec.get("mac_xctest_bundle", 0)
111 ninja_target["ios_app_extension"] = old_spec.get("ios_app_extension", 0)
112 ninja_target["ios_watchkit_extension"] = old_spec.get("ios_watchkit_extension", 0)
113 ninja_target["ios_watchkit_app"] = old_spec.get("ios_watchkit_app", 0)
147 target_name = spec.get("target_name")
153 if int(spec.get("mac_xctest_bundle", 0)) != 0 or (
154 spec.get("type", "") == "executable"
155 and spec.get("product_extension", "") != "bundle"
184 generator_flags = params.get("generator_flags", {})
185 main_gyp = generator_flags.get("xcode_ninja_main_gyp", None)
199 new_data[main_gyp]["xcode_settings"] = data[orig_gyp].get("xcode_settings", {})
204 executable_target_pattern = generator_flags.get(
210 target_extras = generator_flags.get("xcode_ninja_target_pattern", None)
216 target_name = spec.get("target_name")
248 skip_excluded_files = not generator_flags.get(
255 files = target_dict.get("sources", []) + target_dict.get(
261 target_dict.get("sources_excluded", [])
262 + target_dict.get("mac_bundle_resources_excluded", [])
265 for action in target_dict.get("actions", []):
266 files.extend(action.get("inputs", []))
269 files.extend(action.get("inputs_excluded", []))
297 new_data[sources_gyp]["xcode_settings"] = data[orig_gyp].get("xcode_settings", {})