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

Unified Diff: skia/BUILD.gn

Issue 1522653002: Use std=c++11 instead of std=gnu++11 everywhere except nacl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years 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 | « sandbox/linux/services/credentials_unittest.cc ('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 442c732f4375251fe29e868f209f951d414bc4a3..baadc5962027f24b3c7d29463278a8ad2439ee6b 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -133,10 +133,10 @@ config("skia_config") {
if (is_mac) {
defines += [ "SK_BUILD_FOR_MAC" ]
- }
-
- if (is_ios) {
+ } else if (is_ios) {
defines += [ "SK_BUILD_FOR_IOS" ]
+ } else {
+ defines += [ "SK_BUILD_FOR_UNIX" ]
}
}
« no previous file with comments | « sandbox/linux/services/credentials_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698