Skip to content
Snippets Groups Projects
Commit f825c98e authored by Konstantinov Maxim's avatar Konstantinov Maxim Committed by Mark Mentovai
Browse files

Fix issue with missing resources in Xcode ui tests targets.

Adding any entries in 'mac_bundle_resources' section for 'mac_xcuitest_bundle' targets didn't affect generated project.
This change fixes it.

Change-Id: I6d0bbf18deb5a9ffaeb5697f5bae8d72d976b0a1
Reviewed-on: https://chromium-review.googlesource.com/c/1329753


Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
parent 197c82b7
No related branches found
No related tags found
No related merge requests found
......@@ -710,7 +710,7 @@ def GenerateOutput(target_list, target_dicts, data, params):
type = spec['type']
is_xctest = int(spec.get('mac_xctest_bundle', 0))
is_xcuitest = int(spec.get('mac_xcuitest_bundle', 0))
is_bundle = int(spec.get('mac_bundle', 0)) or is_xctest
is_bundle = int(spec.get('mac_bundle', 0)) or is_xctest or is_xcuitest
is_app_extension = int(spec.get('ios_app_extension', 0))
is_watchkit_extension = int(spec.get('ios_watchkit_extension', 0))
is_watch_app = int(spec.get('ios_watch_app', 0))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment