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

Unified Diff: build/config/compiler/BUILD.gn

Issue 2692273008: Hacky slashy (Closed)
Patch Set: rebase on config CL, and minor fixes Created 3 years, 7 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 | « base/trace_event/trace_log.cc ('k') | build/config/fuchsia/rules.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/config/compiler/BUILD.gn
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn
index ddf4044a55e6b6b3ba2b35f2256b083024bd789c..e274daca51648ea6d8472da4f75202017079f923 100644
--- a/build/config/compiler/BUILD.gn
+++ b/build/config/compiler/BUILD.gn
@@ -167,6 +167,8 @@ config("compiler") {
configs += [ "//build/config/nacl:compiler" ]
} else if (is_mac) {
configs += [ "//build/config/mac:compiler" ]
+ } else if (is_fuchsia) {
+ configs += [ "//build/config/fuchsia:compiler" ]
} else if (is_ios) {
configs += [ "//build/config/ios:compiler" ]
} else if (is_fuchsia) {
@@ -1091,7 +1093,7 @@ config("default_warnings") {
"-Wno-inconsistent-missing-override",
]
- if (is_linux && target_cpu == "x86") {
+ if (is_linux && target_cpu == "x86" || is_fuchsia) {
cflags += [
# TODO(thakis): Remove from 32-bit Linux eventually, https://707084
"-Wno-deprecated-register",
« no previous file with comments | « base/trace_event/trace_log.cc ('k') | build/config/fuchsia/rules.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698