Skip to content

Commit 80e088b

Browse files
committed
Change to use absl-free interface.
1 parent 7777627 commit 80e088b

File tree

4 files changed

+121
-12
lines changed

4 files changed

+121
-12
lines changed

cmake/external/firestore.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if(TARGET firestore)
1818
return()
1919
endif()
2020

21-
set(version CocoaPods-7.11.0)
21+
set(version CocoaPods-8.2.0)
2222
ExternalProject_Add(
2323
firestore
2424

firestore/integration_test_internal/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ platform :ios, '10.0'
33
# Cloud Firestore internal test application.
44

55
target 'integration_test' do
6-
pod 'Firebase/Firestore', '7.11.0'
7-
pod 'Firebase/Auth', '7.11.0'
6+
pod 'Firebase/Firestore', '8.2.0'
7+
pod 'Firebase/Auth', '8.2.0'
88
end
99

1010
post_install do |installer|

firestore/integration_test_internal/integration_test.xcodeproj/project.pbxproj

Lines changed: 115 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,21 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10+
12F9ED6C26839D69003A2BB7 /* bundle_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12F9ED6B26839D69003A2BB7 /* bundle_test.cc */; };
11+
12F9ED7026839D9B003A2BB7 /* bundle_builder.cc in Sources */ = {isa = PBXBuildFile; fileRef = 12F9ED6E26839D9B003A2BB7 /* bundle_builder.cc */; };
12+
17E82E5A586A83A7DB8F17F3 /* firebase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F81BF9BCB61E76BCC6FEE62 /* firebase.framework */; };
13+
1CEF0A3784E1BA6B89043B91 /* firebase_auth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D64BDF95290FA0569880E5E9 /* firebase_auth.framework */; };
14+
2B3C627325B5AD71C90DA998 /* firebase_firestore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BC8FD7EF9C1F37929A28005 /* firebase_firestore.framework */; };
15+
38C8F488DB78DDD2E42CF47B /* firebase_firestore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40BC8070E1C73431A518D992 /* firebase_firestore.framework */; };
16+
4DD5573F427D39C9C0738DE5 /* libPods-integration_test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6555A05CA57D526DDFEBB8BF /* libPods-integration_test.a */; };
1017
520BC0391C869159008CFBC3 /* GoogleService-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 520BC0381C869159008CFBC3 /* GoogleService-Info.plist */; };
1118
529226D61C85F68000C89379 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 529226D51C85F68000C89379 /* Foundation.framework */; };
1219
529226D81C85F68000C89379 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 529226D71C85F68000C89379 /* CoreGraphics.framework */; };
1320
529226DA1C85F68000C89379 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 529226D91C85F68000C89379 /* UIKit.framework */; };
21+
5351D7AD491A76F9C3C34AA4 /* firebase_auth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A6EBFE7B28B5EB3C064F8C3 /* firebase_auth.framework */; };
22+
58E23321A697310ADA6079DE /* firebase_auth.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E7047CF9D2D2C73433AC917A /* firebase_auth.framework */; };
23+
71F3521B71A7E1E9050D4E06 /* firebase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9260D3719364412CC91F2F8 /* firebase.framework */; };
24+
C42342B4C5526A93E7567A46 /* firebase_firestore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C57E88641D22FDE01EA721E /* firebase_firestore.framework */; };
1425
D61A465D2606EA0B007EBE9B /* transaction_extra_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = D61A465C2606EA0B007EBE9B /* transaction_extra_test.cc */; };
1526
D61C5F8E22BABA9C00A79141 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D61C5F8C22BABA9B00A79141 /* Images.xcassets */; };
1627
D61CFBC126091C3B0035CB2A /* integration_test.cc in Sources */ = {isa = PBXBuildFile; fileRef = D61CFBC026091C3A0035CB2A /* integration_test.cc */; };
@@ -45,21 +56,36 @@
4556
D6C179F022CB32A000C2651A /* app_framework.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6C179EF22CB32A000C2651A /* app_framework.cc */; };
4657
D6ED33BD2606CD890058CBF9 /* future_test_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6ED33B92606CD890058CBF9 /* future_test_util.cc */; };
4758
D6ED33BE2606CD890058CBF9 /* integration_test_util.cc in Sources */ = {isa = PBXBuildFile; fileRef = D6ED33BB2606CD890058CBF9 /* integration_test_util.cc */; };
59+
FD4049CEF7CFA5847D2FFE83 /* firebase.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9D9BB6CF66B25ABEDD3EBEA8 /* firebase.framework */; };
4860
/* End PBXBuildFile section */
4961

5062
/* Begin PBXFileReference section */
63+
12F9ED6B26839D69003A2BB7 /* bundle_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_test.cc; path = src/bundle_test.cc; sourceTree = "<group>"; };
64+
12F9ED6E26839D9B003A2BB7 /* bundle_builder.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bundle_builder.cc; path = src/util/bundle_builder.cc; sourceTree = "<group>"; };
65+
12F9ED6F26839D9B003A2BB7 /* bundle_builder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = bundle_builder.h; path = src/util/bundle_builder.h; sourceTree = "<group>"; };
66+
1E762AB91722E110D27CB068 /* Pods-integration_test.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-integration_test.debug.xcconfig"; path = "Target Support Files/Pods-integration_test/Pods-integration_test.debug.xcconfig"; sourceTree = "<group>"; };
67+
2BC8FD7EF9C1F37929A28005 /* firebase_firestore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase_firestore.framework; path = Frameworks/firebase_firestore.framework; sourceTree = "<group>"; };
68+
40BC8070E1C73431A518D992 /* firebase_firestore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase_firestore.framework; path = Frameworks/firebase_firestore.framework; sourceTree = "<group>"; };
5169
520BC0381C869159008CFBC3 /* GoogleService-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "GoogleService-Info.plist"; sourceTree = "<group>"; };
5270
529226D21C85F68000C89379 /* integration_test.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = integration_test.app; sourceTree = BUILT_PRODUCTS_DIR; };
5371
529226D51C85F68000C89379 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
5472
529226D71C85F68000C89379 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
5573
529226D91C85F68000C89379 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
5674
529226EE1C85F68000C89379 /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; };
75+
5F81BF9BCB61E76BCC6FEE62 /* firebase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase.framework; path = Frameworks/firebase.framework; sourceTree = "<group>"; };
76+
6555A05CA57D526DDFEBB8BF /* libPods-integration_test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-integration_test.a"; sourceTree = BUILT_PRODUCTS_DIR; };
77+
6C57E88641D22FDE01EA721E /* firebase_firestore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase_firestore.framework; path = Frameworks/firebase_firestore.framework; sourceTree = "<group>"; };
78+
7A6EBFE7B28B5EB3C064F8C3 /* firebase_auth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase_auth.framework; path = Frameworks/firebase_auth.framework; sourceTree = "<group>"; };
79+
9D9BB6CF66B25ABEDD3EBEA8 /* firebase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase.framework; path = Frameworks/firebase.framework; sourceTree = "<group>"; };
80+
B0FF92E89FB1DC477174B4D3 /* Pods-integration_test.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-integration_test.release.xcconfig"; path = "Target Support Files/Pods-integration_test/Pods-integration_test.release.xcconfig"; sourceTree = "<group>"; };
81+
C9260D3719364412CC91F2F8 /* firebase.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase.framework; path = Frameworks/firebase.framework; sourceTree = "<group>"; };
5782
D61A465C2606EA0B007EBE9B /* transaction_extra_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = transaction_extra_test.cc; path = src/transaction_extra_test.cc; sourceTree = "<group>"; };
5883
D61C5F8C22BABA9B00A79141 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
5984
D61C5F8D22BABA9C00A79141 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6085
D61CFBC026091C3A0035CB2A /* integration_test.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = integration_test.cc; path = src/integration_test.cc; sourceTree = "<group>"; };
6186
D62CCBBF22F367140099BE9F /* gmock-all.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "gmock-all.cc"; path = "external/googletest/src/googlemock/src/gmock-all.cc"; sourceTree = "<group>"; };
6287
D62CCBC122F367320099BE9F /* gmock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gmock.h; path = external/googletest/src/googlemock/include/gmock/gmock.h; sourceTree = "<group>"; };
88+
D64BDF95290FA0569880E5E9 /* firebase_auth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase_auth.framework; path = Frameworks/firebase_auth.framework; sourceTree = "<group>"; };
6389
D66B16861CE46E8900E5638A /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = LaunchScreen.storyboard; sourceTree = "<group>"; };
6490
D67D355622BABD2100292C1D /* gtest-all.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = "gtest-all.cc"; path = "external/googletest/src/googletest/src/gtest-all.cc"; sourceTree = "<group>"; };
6591
D67D355722BABD2100292C1D /* gtest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = gtest.h; path = external/googletest/src/googletest/include/gtest/gtest.h; sourceTree = "<group>"; };
@@ -97,6 +123,7 @@
97123
D6ED33BA2606CD890058CBF9 /* event_accumulator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = event_accumulator.h; path = src/util/event_accumulator.h; sourceTree = "<group>"; };
98124
D6ED33BB2606CD890058CBF9 /* integration_test_util.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = integration_test_util.cc; path = src/util/integration_test_util.cc; sourceTree = "<group>"; };
99125
D6ED33BC2606CD890058CBF9 /* future_test_util.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = future_test_util.h; path = src/util/future_test_util.h; sourceTree = "<group>"; };
126+
E7047CF9D2D2C73433AC917A /* firebase_auth.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = firebase_auth.framework; path = Frameworks/firebase_auth.framework; sourceTree = "<group>"; };
100127
/* End PBXFileReference section */
101128

102129
/* Begin PBXFrameworksBuildPhase section */
@@ -107,6 +134,16 @@
107134
529226D81C85F68000C89379 /* CoreGraphics.framework in Frameworks */,
108135
529226DA1C85F68000C89379 /* UIKit.framework in Frameworks */,
109136
529226D61C85F68000C89379 /* Foundation.framework in Frameworks */,
137+
4DD5573F427D39C9C0738DE5 /* libPods-integration_test.a in Frameworks */,
138+
17E82E5A586A83A7DB8F17F3 /* firebase.framework in Frameworks */,
139+
1CEF0A3784E1BA6B89043B91 /* firebase_auth.framework in Frameworks */,
140+
C42342B4C5526A93E7567A46 /* firebase_firestore.framework in Frameworks */,
141+
71F3521B71A7E1E9050D4E06 /* firebase.framework in Frameworks */,
142+
58E23321A697310ADA6079DE /* firebase_auth.framework in Frameworks */,
143+
2B3C627325B5AD71C90DA998 /* firebase_firestore.framework in Frameworks */,
144+
FD4049CEF7CFA5847D2FFE83 /* firebase.framework in Frameworks */,
145+
5351D7AD491A76F9C3C34AA4 /* firebase_auth.framework in Frameworks */,
146+
38C8F488DB78DDD2E42CF47B /* firebase_firestore.framework in Frameworks */,
110147
);
111148
runOnlyForDeploymentPostprocessing = 0;
112149
};
@@ -116,6 +153,8 @@
116153
2AD084A34AA54558B7AFA683 /* Pods */ = {
117154
isa = PBXGroup;
118155
children = (
156+
1E762AB91722E110D27CB068 /* Pods-integration_test.debug.xcconfig */,
157+
B0FF92E89FB1DC477174B4D3 /* Pods-integration_test.release.xcconfig */,
119158
);
120159
path = Pods;
121160
sourceTree = "<group>";
@@ -149,13 +188,26 @@
149188
529226D71C85F68000C89379 /* CoreGraphics.framework */,
150189
529226D91C85F68000C89379 /* UIKit.framework */,
151190
529226EE1C85F68000C89379 /* XCTest.framework */,
191+
6555A05CA57D526DDFEBB8BF /* libPods-integration_test.a */,
192+
5F81BF9BCB61E76BCC6FEE62 /* firebase.framework */,
193+
D64BDF95290FA0569880E5E9 /* firebase_auth.framework */,
194+
6C57E88641D22FDE01EA721E /* firebase_firestore.framework */,
195+
C9260D3719364412CC91F2F8 /* firebase.framework */,
196+
E7047CF9D2D2C73433AC917A /* firebase_auth.framework */,
197+
2BC8FD7EF9C1F37929A28005 /* firebase_firestore.framework */,
198+
9D9BB6CF66B25ABEDD3EBEA8 /* firebase.framework */,
199+
7A6EBFE7B28B5EB3C064F8C3 /* firebase_auth.framework */,
200+
40BC8070E1C73431A518D992 /* firebase_firestore.framework */,
152201
);
153202
name = Frameworks;
154203
sourceTree = "<group>";
155204
};
156205
5292271D1C85FB5500C89379 /* src */ = {
157206
isa = PBXGroup;
158207
children = (
208+
12F9ED6E26839D9B003A2BB7 /* bundle_builder.cc */,
209+
12F9ED6F26839D9B003A2BB7 /* bundle_builder.h */,
210+
12F9ED6B26839D69003A2BB7 /* bundle_test.cc */,
159211
D61CFBC026091C3A0035CB2A /* integration_test.cc */,
160212
D6ED33BA2606CD890058CBF9 /* event_accumulator.h */,
161213
D6ED33B92606CD890058CBF9 /* future_test_util.cc */,
@@ -215,9 +267,11 @@
215267
isa = PBXNativeTarget;
216268
buildConfigurationList = 529226F91C85F68000C89379 /* Build configuration list for PBXNativeTarget "integration_test" */;
217269
buildPhases = (
270+
0CD9CF6D8467EE09FEEB4D3F /* [CP] Check Pods Manifest.lock */,
218271
529226CE1C85F68000C89379 /* Sources */,
219272
529226CF1C85F68000C89379 /* Frameworks */,
220273
529226D01C85F68000C89379 /* Resources */,
274+
A456C77481A58C8C5F958C9B /* [CP] Copy Pods Resources */,
221275
);
222276
buildRules = (
223277
);
@@ -239,7 +293,7 @@
239293
TargetAttributes = {
240294
529226D11C85F68000C89379 = {
241295
CreatedOnToolsVersion = 6.4;
242-
DevelopmentTeam = EQHXZ8M8AV;
296+
DevelopmentTeam = PP3FQRCL4W;
243297
ProvisioningStyle = Automatic;
244298
};
245299
};
@@ -275,6 +329,49 @@
275329
};
276330
/* End PBXResourcesBuildPhase section */
277331

332+
/* Begin PBXShellScriptBuildPhase section */
333+
0CD9CF6D8467EE09FEEB4D3F /* [CP] Check Pods Manifest.lock */ = {
334+
isa = PBXShellScriptBuildPhase;
335+
buildActionMask = 2147483647;
336+
files = (
337+
);
338+
inputFileListPaths = (
339+
);
340+
inputPaths = (
341+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
342+
"${PODS_ROOT}/Manifest.lock",
343+
);
344+
name = "[CP] Check Pods Manifest.lock";
345+
outputFileListPaths = (
346+
);
347+
outputPaths = (
348+
"$(DERIVED_FILE_DIR)/Pods-integration_test-checkManifestLockResult.txt",
349+
);
350+
runOnlyForDeploymentPostprocessing = 0;
351+
shellPath = /bin/sh;
352+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
353+
showEnvVarsInLog = 0;
354+
};
355+
A456C77481A58C8C5F958C9B /* [CP] Copy Pods Resources */ = {
356+
isa = PBXShellScriptBuildPhase;
357+
buildActionMask = 2147483647;
358+
files = (
359+
);
360+
inputPaths = (
361+
"${PODS_ROOT}/Target Support Files/Pods-integration_test/Pods-integration_test-resources.sh",
362+
"${PODS_CONFIGURATION_BUILD_DIR}/gRPC-C++/gRPCCertificates-Cpp.bundle",
363+
);
364+
name = "[CP] Copy Pods Resources";
365+
outputPaths = (
366+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/gRPCCertificates-Cpp.bundle",
367+
);
368+
runOnlyForDeploymentPostprocessing = 0;
369+
shellPath = /bin/sh;
370+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-integration_test/Pods-integration_test-resources.sh\"\n";
371+
showEnvVarsInLog = 0;
372+
};
373+
/* End PBXShellScriptBuildPhase section */
374+
278375
/* Begin PBXSourcesBuildPhase section */
279376
529226CE1C85F68000C89379 /* Sources */ = {
280377
isa = PBXSourcesBuildPhase;
@@ -286,6 +383,7 @@
286383
D6AAAD572606C22D0025C53B /* document_reference_test.cc in Sources */,
287384
D67D355822BABD2200292C1D /* gtest-all.cc in Sources */,
288385
D6AAAD4D2606C22D0025C53B /* query_snapshot_test.cc in Sources */,
386+
12F9ED6C26839D69003A2BB7 /* bundle_test.cc in Sources */,
289387
D6AAAD4F2606C22D0025C53B /* transaction_test.cc in Sources */,
290388
D61A465D2606EA0B007EBE9B /* transaction_extra_test.cc in Sources */,
291389
D6AAAD5A2606C22D0025C53B /* cleanup_test.cc in Sources */,
@@ -304,6 +402,7 @@
304402
D6AAAD442606C22D0025C53B /* field_value_test.cc in Sources */,
305403
D6AAAD562606C22D0025C53B /* query_network_test.cc in Sources */,
306404
D6AAAD552606C22D0025C53B /* listener_registration_test.cc in Sources */,
405+
12F9ED7026839D9B003A2BB7 /* bundle_builder.cc in Sources */,
307406
D6AAAD4A2606C22D0025C53B /* fields_test.cc in Sources */,
308407
D6AAAD462606C22D0025C53B /* query_test.cc in Sources */,
309408
D6ED33BD2606CD890058CBF9 /* future_test_util.cc in Sources */,
@@ -400,15 +499,17 @@
400499
};
401500
529226FA1C85F68000C89379 /* Debug */ = {
402501
isa = XCBuildConfiguration;
502+
baseConfigurationReference = 1E762AB91722E110D27CB068 /* Pods-integration_test.debug.xcconfig */;
403503
buildSettings = {
404504
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
405505
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
406506
CODE_SIGN_IDENTITY = "iPhone Developer";
407507
CODE_SIGN_STYLE = Automatic;
408-
DEVELOPMENT_TEAM = "";
508+
DEVELOPMENT_TEAM = PP3FQRCL4W;
509+
ENABLE_BITCODE = NO;
409510
FRAMEWORK_SEARCH_PATHS = (
410-
"$(inherited)",
411-
"$(PROJECT_DIR)",
511+
"${inherited}",
512+
"/Users/wuandy/projects/firebase-cpp-sdk/firestore/integration_test_internal/Frameworks",
412513
);
413514
GCC_PREPROCESSOR_DEFINITIONS = (
414515
"$(inherited)",
@@ -429,6 +530,9 @@
429530
"\"$(SRCROOT)/external/googletest/src/googlemock\"",
430531
"\"$(SRCROOT)/Pods/FirebaseFirestore\"",
431532
"\"$(SRCROOT)/../..\"",
533+
/Users/wuandy/dev/firebase/cpp,
534+
/Users/wuandy/dev/firebase/cpp,
535+
/Users/wuandy/dev/firebase/cpp,
432536
);
433537
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
434538
PRODUCT_BUNDLE_IDENTIFIER = com.google.firebase.cpp.firestore.testapp;
@@ -440,15 +544,17 @@
440544
};
441545
529226FB1C85F68000C89379 /* Release */ = {
442546
isa = XCBuildConfiguration;
547+
baseConfigurationReference = B0FF92E89FB1DC477174B4D3 /* Pods-integration_test.release.xcconfig */;
443548
buildSettings = {
444549
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
445550
ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
446551
CODE_SIGN_IDENTITY = "iPhone Developer";
447552
CODE_SIGN_STYLE = Automatic;
448553
DEVELOPMENT_TEAM = "";
554+
ENABLE_BITCODE = NO;
449555
FRAMEWORK_SEARCH_PATHS = (
450-
"$(inherited)",
451-
"$(PROJECT_DIR)",
556+
"${inherited}",
557+
"/Users/wuandy/projects/firebase-cpp-sdk/firestore/integration_test_internal/Frameworks",
452558
);
453559
GCC_PREPROCESSOR_DEFINITIONS = (
454560
"$(inherited)",
@@ -469,6 +575,9 @@
469575
"\"$(SRCROOT)/external/googletest/src/googlemock\"",
470576
"\"$(SRCROOT)/Pods/FirebaseFirestore\"",
471577
"\"$(SRCROOT)/../..\"",
578+
/Users/wuandy/dev/firebase/cpp,
579+
/Users/wuandy/dev/firebase/cpp,
580+
/Users/wuandy/dev/firebase/cpp,
472581
);
473582
INFOPLIST_FILE = "$(SRCROOT)/Info.plist";
474583
PRODUCT_BUNDLE_IDENTIFIER = com.google.firebase.cpp.firestore.testapp;

0 commit comments

Comments
 (0)