Skip to content

Commit b4d7275

Browse files
authored
Add Info.plist from build directory as input path to Thin Binary build phase (#118209)
* Add Info.plist from build directory as input path to Thin Binary build phase * fix directive ordering * migrate benchmark, integration, and example tests
1 parent cea55d9 commit b4d7275

File tree

35 files changed

+214
-0
lines changed

35 files changed

+214
-0
lines changed

dev/benchmarks/complex_layout/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@
232232
files = (
233233
);
234234
inputPaths = (
235+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
235236
);
236237
name = "Thin Binary";
237238
outputPaths = (

dev/benchmarks/macrobenchmarks/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@
236236
files = (
237237
);
238238
inputPaths = (
239+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
239240
);
240241
name = "Thin Binary";
241242
outputPaths = (

dev/benchmarks/microbenchmarks/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@
187187
files = (
188188
);
189189
inputPaths = (
190+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
190191
);
191192
name = "Thin Binary";
192193
outputPaths = (

dev/benchmarks/platform_channels_benchmarks/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@
179179
files = (
180180
);
181181
inputPaths = (
182+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
182183
);
183184
name = "Thin Binary";
184185
outputPaths = (

dev/benchmarks/platform_views_layout/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@
191191
files = (
192192
);
193193
inputPaths = (
194+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
194195
);
195196
name = "Thin Binary";
196197
outputPaths = (

dev/benchmarks/platform_views_layout_hybrid_composition/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,7 @@
192192
files = (
193193
);
194194
inputPaths = (
195+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
195196
);
196197
name = "Thin Binary";
197198
outputPaths = (

dev/benchmarks/test_apps/stocks/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@
194194
files = (
195195
);
196196
inputPaths = (
197+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
197198
);
198199
name = "Thin Binary";
199200
outputPaths = (

dev/integration_tests/channels/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,7 @@
186186
files = (
187187
);
188188
inputPaths = (
189+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
189190
);
190191
name = "Thin Binary";
191192
outputPaths = (

dev/integration_tests/external_ui/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@
177177
files = (
178178
);
179179
inputPaths = (
180+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
180181
);
181182
name = "Thin Binary";
182183
outputPaths = (

dev/integration_tests/flavors/ios/Runner.xcodeproj/project.pbxproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@
288288
files = (
289289
);
290290
inputPaths = (
291+
"${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
291292
);
292293
name = "Thin Binary";
293294
outputPaths = (

0 commit comments

Comments
 (0)