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

Unified Diff: gn/BUILD.gn

Issue 2200833010: GN: build sfntly, icu, harfbuzz (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 4 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
Index: gn/BUILD.gn
diff --git a/gn/BUILD.gn b/gn/BUILD.gn
index 5789aef48b38e0a261e923ab0b5020778e596a50..25d338cefc913b1ed1f2abcdb8dce491e0b49bd3 100644
--- a/gn/BUILD.gn
+++ b/gn/BUILD.gn
@@ -9,6 +9,12 @@ declare_args() {
cxx = "c++"
}
+config("nortti") {
mtklein 2016/08/03 20:06:50 no-rtti or no_rtti?
hal.canary 2016/08/03 21:36:00 Done. no_rtti matches chrome use.
+ cflags_cc = [
+ "-fno-rtti",
+ ]
+}
+
config("default") {
cflags = [
"-g",
@@ -30,7 +36,6 @@ config("default") {
cflags_cc = [
"-std=c++11",
"-fno-exceptions",
- "-fno-rtti",
"-fno-threadsafe-statics",
"-fvisibility-inlines-hidden",

Powered by Google App Engine
This is Rietveld 408576698