-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move VPN ownership to menu agent #1690
Changes from all commits
9d57490
38aaf40
59db7b6
469cf7d
f12b4cf
a138fbe
250c419
1082990
4644cc8
921ac51
59609bf
d7409a1
f810be3
ada544c
13ad7c6
bb326c7
320a16d
d47b6a5
639df55
1e21bdc
f5d9bc2
736771a
2dc13fc
0050236
dd8f7b7
6fde574
d0bfe95
344ea5a
08b0f2b
6646cad
580c522
e3ecd26
a98c62f
251729e
62523be
46f4377
20b3db8
fc255c2
ceebb5c
806cc07
e06e7c6
073c6f8
acafbb8
e6055a3
3ca38d2
6d968e8
74b11c2
baa64ae
68a197b
9cbabb9
bf30d43
40d41cc
3bad595
748d93a
55df97c
9889585
d44e67a
4f73b62
db253e6
57a58ed
c0fb742
b9d50f6
91bffbf
432cb56
1ee50ef
886a68c
c2ea6a5
f22e416
0d06426
c774363
d01c27f
665e60f
e8055d4
123815e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ PRODUCT_BUNDLE_IDENTIFIER[config=Debug][sdk=*] = $(BUNDLE_IDENTIFIER_PREFIX) | |
PRODUCT_BUNDLE_IDENTIFIER[config=CI][sdk=*] = $(BUNDLE_IDENTIFIER_PREFIX) | ||
PRODUCT_BUNDLE_IDENTIFIER[config=Review][sdk=*] = $(BUNDLE_IDENTIFIER_PREFIX) | ||
|
||
INFOPLIST_FILE = DuckDuckGoAgent/Info.plist | ||
INFOPLIST_FILE = DuckDuckGoVPN/Info.plist | ||
samsymons marked this conversation as resolved.
Show resolved
Hide resolved
|
||
GENERATE_INFOPLIST_FILE = YES | ||
INFOPLIST_KEY_LSUIElement = YES | ||
INFOPLIST_KEY_NSPrincipalClass = Application | ||
|
@@ -33,10 +33,10 @@ INFOPLIST_KEY_NSPrincipalClass = Application | |
//CODE_SIGN_STYLE[config=Debug][sdk=*] = Manual | ||
//CODE_SIGN_STYLE[config=Release][sdk=*] = Manual | ||
|
||
CODE_SIGN_ENTITLEMENTS[config=Review][sdk=macosx*] = DuckDuckGoAgent/DuckDuckGoAgent.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=CI][sdk=macosx*] = DuckDuckGoAgent/DuckDuckGoAgent.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=Debug][sdk=macosx*] = DuckDuckGoAgent/DuckDuckGoAgent.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=Release][sdk=macosx*] = DuckDuckGoAgent/DuckDuckGoAgent.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=Review][sdk=macosx*] = DuckDuckGoVPN/DuckDuckGoVPN.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=CI][sdk=macosx*] = DuckDuckGoVPN/DuckDuckGoVPN.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=Debug][sdk=macosx*] = DuckDuckGoVPN/DuckDuckGoVPNDebug.entitlements | ||
CODE_SIGN_ENTITLEMENTS[config=Release][sdk=macosx*] = DuckDuckGoVPN/DuckDuckGoVPN.entitlements | ||
Comment on lines
-36
to
+39
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Agent name changed. |
||
|
||
CODE_SIGN_IDENTITY[sdk=macosx*] = Developer ID Application | ||
CODE_SIGN_IDENTITY[config=Debug][sdk=macosx*] = Apple Development | ||
|
@@ -45,13 +45,13 @@ CODE_SIGN_IDENTITY[config=CI][sdk=macosx*] = | |
PRODUCT_NAME = $(AGENT_PRODUCT_NAME) | ||
|
||
PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*] = | ||
PROVISIONING_PROFILE_SPECIFIER[config=Review][sdk=macosx*] = macOS Network Protection Agent App Product Review | ||
PROVISIONING_PROFILE_SPECIFIER[config=Release][sdk=macosx*] = macOS Network Protection Agent App (Distribution) | ||
PROVISIONING_PROFILE_SPECIFIER[config=Review][sdk=macosx*] = macOS NetP VPN App - Review (XPC) | ||
PROVISIONING_PROFILE_SPECIFIER[config=Release][sdk=macosx*] = macOS NetP VPN App - Release (XPC) | ||
|
||
FEATURE_FLAGS[arch=*][sdk=*] = NETP_SYSTEM_EXTENSION | ||
FEATURE_FLAGS[config=CI][arch=*][sdk=*] = NETP_SYSTEM_EXTENSION | ||
FEATURE_FLAGS[config=Debug][arch=*][sdk=*] = NETP_SYSTEM_EXTENSION | ||
FEATURE_FLAGS[config=Review][arch=*][sdk=*] = NETP_SYSTEM_EXTENSION | ||
FEATURE_FLAGS[arch=*][sdk=*] = NETP_SYSTEM_EXTENSION NETWORK_PROTECTION | ||
FEATURE_FLAGS[config=CI][arch=*][sdk=*] = NETP_SYSTEM_EXTENSION NETWORK_PROTECTION | ||
FEATURE_FLAGS[config=Debug][arch=*][sdk=*] = NETP_SYSTEM_EXTENSION NETWORK_PROTECTION | ||
FEATURE_FLAGS[config=Review][arch=*][sdk=*] = NETP_SYSTEM_EXTENSION NETWORK_PROTECTION | ||
Comment on lines
+51
to
+54
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Need this flag in the VPN app due to some of the code. |
||
|
||
SWIFT_OBJC_BRIDGING_HEADER = | ||
SKIP_INSTALL = YES | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙌