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

Unified Diff: gn/BUILDCONFIG.gn

Issue 2200833010: GN: build sfntly, icu, harfbuzz (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2016-08-03 (Wednesday) 17:32:27 EDT 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
« no previous file with comments | « gn/BUILD.gn ('k') | third_party/harfbuzz/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gn/BUILDCONFIG.gn
diff --git a/gn/BUILDCONFIG.gn b/gn/BUILDCONFIG.gn
index 681b15b83bad2ce2a2a783c45a3ae79a7cee0765..e2719c196e184e5ce315bfaad179fb2f00168ac4 100644
--- a/gn/BUILDCONFIG.gn
+++ b/gn/BUILDCONFIG.gn
@@ -40,29 +40,32 @@ template("component") {
}
# Default configs
-_default_configs = [ "//gn:default" ]
+default_configs = [
+ "//gn:default",
+ "//gn:no_rtti",
+]
if (!is_debug) {
- _default_configs += [ "//gn:release" ]
+ default_configs += [ "//gn:release" ]
}
set_defaults("executable") {
- configs = _default_configs + [ "//gn:executable" ]
+ configs = default_configs + [ "//gn:executable" ]
}
set_defaults("source_set") {
- configs = _default_configs
+ configs = default_configs
}
set_defaults("static_library") {
- configs = _default_configs
+ configs = default_configs
}
set_defaults("shared_library") {
- configs = _default_configs
+ configs = default_configs
}
set_defaults("component") {
- configs = _default_configs
+ configs = default_configs
}
# For now, we support GCC-like toolchains, including Clang.
« no previous file with comments | « gn/BUILD.gn ('k') | third_party/harfbuzz/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698