Skip to content

Commit

Permalink
Address reviews.
Browse files Browse the repository at this point in the history
  • Loading branch information
mandel-macaque committed Jun 29, 2021
1 parent 401befe commit c2c366c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion src/frameworks.sources
Original file line number Diff line number Diff line change
Expand Up @@ -1893,7 +1893,6 @@ COMMON_FRAMEWORKS = \
Accelerate \
AuthenticationServices \
AVFoundation \
Chip \
CoreBluetooth \
CoreData \
CoreFoundation \
Expand Down Expand Up @@ -1925,6 +1924,7 @@ MAC_FRAMEWORKS = \
BusinessChat \
CallKit \
CFNetwork \
Chip \
ClassKit \
CloudKit \
Contacts \
Expand Down Expand Up @@ -2025,6 +2025,7 @@ IOS_FRAMEWORKS = \
CallKit \
CarPlay \
CFNetwork \
Chip \
ClassKit \
CloudKit \
Contacts \
Expand Down Expand Up @@ -2114,6 +2115,7 @@ IOS_FRAMEWORKS = \

WATCHOS_FRAMEWORKS = \
$(COMMON_FRAMEWORKS) \
Chip \
ClockKit \
CloudKit \
Contacts \
Expand Down Expand Up @@ -2146,6 +2148,7 @@ TVOS_FRAMEWORKS = \
AudioUnit \
BackgroundTasks \
CFNetwork \
Chip \
CloudKit \
CoreAnimation \
CoreGraphics \
Expand Down
6 changes: 3 additions & 3 deletions tools/common/Frameworks.cs
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ public static Frameworks CreateiOSFrameworks (bool is_simulator_build)

{ "CoreLocationUI", "CoreLocationUI", 15,0 },

{ "Chip", "CHIP", new Version (15, 0), NotAvailableInSimulator, true /* no headers in beta 2 */ }
{ "Chip", "CHIP", new Version (15, 0), NotAvailableInSimulator /* no headers in beta 2 */ }

// the above MUST be kept in sync with simlauncher
// see tools/mtouch/Makefile
Expand Down Expand Up @@ -491,7 +491,7 @@ public static Frameworks GetwatchOSFrameworks (bool is_simulator_build)
{ "Accessibility", "Accessibility", 7,0 },
{ "UniformTypeIdentifiers", "UniformTypeIdentifiers", 7,0 },

{ "Chip", "CHIP", new Version (8, 0), NotAvailableInSimulator, true /* no headers in beta 2 */ },
{ "Chip", "CHIP", new Version (8, 0), NotAvailableInSimulator /* no headers in beta 2 */ },

};
}
Expand Down Expand Up @@ -582,7 +582,7 @@ public static Frameworks TVOSFrameworks {
{ "UniformTypeIdentifiers", "UniformTypeIdentifiers", 14,0 },
{ "Intents", "Intents", 14,0 },

{ "Chip", "CHIP", new Version (15, 0), NotAvailableInSimulator, true /* no headers in beta 2 */ },
{ "Chip", "CHIP", new Version (15, 0), NotAvailableInSimulator /* no headers in beta 2 */ },
};
}
return tvos_frameworks;
Expand Down
1 change: 1 addition & 0 deletions tools/linker/ObjCExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ static class Namespaces {
public const string AppKit = nameof (AppKit);
public const string AVFoundation = nameof (AVFoundation);
public const string AVKit = nameof (AVKit);
public const string Chip = nameof (Chip);
public const string CloudKit = nameof (CloudKit);
public const string Contacts = nameof (Contacts);
public const string ContactsUI = nameof (ContactsUI);
Expand Down

0 comments on commit c2c366c

Please sign in to comment.