Commit 2c415f77 authored by Sylvain Defresne's avatar Sylvain Defresne Committed by Commit Bot

[ios] Convert GN libs lists to frameworks in //ios/public.

GN recently added support for Apple frameworks to link, rather than
overloading the libs lists. This pulls .frameworks out of the libs
lists, so that GN can stop supporting .frameworks in libs in the
future.

Bug: 1052560
Change-Id: I494e828033221636b70c618e46bca99ec9e5aa98
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2276415
Auto-Submit: Sylvain Defresne <sdefresne@chromium.org>
Commit-Queue: Rohit Rao <rohitrao@chromium.org>
Reviewed-by: default avatarRohit Rao <rohitrao@chromium.org>
Cr-Commit-Position: refs/heads/master@{#784398}
parent f5cc0e08
......@@ -23,7 +23,7 @@ source_set("browser") {
"//ios/web/public",
"//url",
]
libs = [ "CoreLocation.framework" ]
frameworks = [ "CoreLocation.framework" ]
}
source_set("test_support") {
......
......@@ -13,7 +13,7 @@ source_set("images") {
"//base",
"//components/search_engines",
]
libs = [ "UIKit.framework" ]
frameworks = [ "UIKit.framework" ]
}
source_set("test_support") {
......
......@@ -9,7 +9,7 @@ source_set("spotlight") {
"spotlight_provider.mm",
]
deps = [ "//base" ]
libs = [ "Foundation.framework" ]
frameworks = [ "Foundation.framework" ]
}
source_set("test_support") {
......
......@@ -13,5 +13,5 @@ source_set("ui") {
"//base",
"//ios/public/provider/chrome/browser/voice",
]
libs = [ "CoreGraphics.framework" ]
frameworks = [ "CoreGraphics.framework" ]
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment