Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6)

Unified Diff: skia/BUILD.gn

Issue 1318153005: Bump min SDK version to 10.9 and suppress deprecation warnings (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: clarify comment Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/mac/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/BUILD.gn
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
index c226044ff187071b93a8b68a361a50e52aadfd42..994b89f01006504d7cc3ee32c80646669a1c3839 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -242,12 +242,14 @@ config("skia_library_config") {
]
}
- if (is_ios) {
+ if (is_ios || is_mac) {
cflags = [
# Skia uses routines deprecated in iOS 7 and above
"-Wno-deprecated-declarations",
]
+ }
+ if (is_ios) {
libs = [ "ImageIO.framework" ]
}
}
« no previous file with comments | « build/config/mac/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698