Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit a342f44

Browse files
committed
Merge pull request #322 from eseidelGoogle/ios_build
Fix iOS build
2 parents e67aa5a + 9ccebe6 commit a342f44

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

sky/shell/ios/Info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
ios_app GN template
1111
-->
1212
<key>CFBundleExecutable</key>
13-
<string>Sky</string>
13+
<string>SkyShell</string>
1414

1515
<key>CFBundleIdentifier</key>
16-
<string>org.domokit.sky</string>
17-
16+
<string>org.domokit.SkyShell</string>
17+
1818
<key>CFBundleInfoDictionaryVersion</key>
1919
<string>6.0</string>
2020
<key>CFBundleName</key>

sky/shell/mac/platform_service_provider_mac.cc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
#include "sky/engine/wtf/Assertions.h"
1212
#include "sky/services/ns_net/network_service_impl.h"
1313
#include "sky/shell/service_provider.h"
14+
#if !TARGET_OS_IPHONE
1415
#include "sky/shell/testing/test_runner.h"
16+
#endif
1517

1618
namespace sky {
1719
namespace shell {
@@ -27,7 +29,9 @@ static void CreatePlatformServiceProvider(
2729
g_service_provider.Get().reset(new mojo::ServiceProviderImpl(request.Pass()));
2830
g_network_service_factory.Get().reset(new mojo::NetworkServiceFactory());
2931
g_service_provider.Get()->AddService(g_network_service_factory.Get().get());
32+
#if !TARGET_OS_IPHONE
3033
g_service_provider.Get()->AddService(&TestRunner::Shared());
34+
#endif
3135
}
3236

3337
mojo::ServiceProviderPtr CreateServiceProvider(

0 commit comments

Comments
 (0)