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

Side by Side Diff: build/config/compiler/BUILD.gn

Issue 1226583002: clang/win: Build chromium code without -Wno-incompatible-pointer-types. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@clang-logical-op-parentheses
Patch Set: Created 5 years, 5 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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 if (current_cpu == "arm") { 7 if (current_cpu == "arm") {
8 import("//build/config/arm.gni") 8 import("//build/config/arm.gni")
9 } 9 }
10 if (current_cpu == "mipsel" || current_cpu == "mips64el") { 10 if (current_cpu == "mipsel" || current_cpu == "mips64el") {
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 # Building with Clang on Windows is a work in progress and very 795 # Building with Clang on Windows is a work in progress and very
796 # experimental. See crbug.com/82385. 796 # experimental. See crbug.com/82385.
797 # Keep this in sync with the similar block in build/common.gypi 797 # Keep this in sync with the similar block in build/common.gypi
798 if (is_clang) { 798 if (is_clang) {
799 default_warning_flags += [ 799 default_warning_flags += [
800 # TODO(hans): Make this list shorter eventually, http://crbug.com/504657 800 # TODO(hans): Make this list shorter eventually, http://crbug.com/504657
801 "-Qunused-arguments", # http://crbug.com/504658 801 "-Qunused-arguments", # http://crbug.com/504658
802 "-Wno-empty-body", # http://crbug.com/504661 802 "-Wno-empty-body", # http://crbug.com/504661
803 "-Wno-extra-tokens", # http://crbug.com/504663 803 "-Wno-extra-tokens", # http://crbug.com/504663
804 "-Wno-ignored-attributes", # http://crbug.com/504695 804 "-Wno-ignored-attributes", # http://crbug.com/504695
805 "-Wno-incompatible-pointer-types", # http://crbug.com/504696
806 "-Wno-int-to-void-pointer-cast", # http://crbug.com/504697 805 "-Wno-int-to-void-pointer-cast", # http://crbug.com/504697
807 "-Wno-invalid-noreturn", # http://crbug.com/504698 806 "-Wno-invalid-noreturn", # http://crbug.com/504698
808 "-Wno-logical-op-parentheses", # http://crbug.com/504699 807 "-Wno-logical-op-parentheses", # http://crbug.com/504699
809 "-Wno-microsoft", # http://crbug.com/505296 808 "-Wno-microsoft", # http://crbug.com/505296
810 "-Wno-missing-braces", # http://crbug.com/505297 809 "-Wno-missing-braces", # http://crbug.com/505297
811 "-Wno-msvc-include", # http://crbug.com/505299 810 "-Wno-msvc-include", # http://crbug.com/505299
812 "-Wno-overloaded-virtual", # http://crbug.com/505301 811 "-Wno-overloaded-virtual", # http://crbug.com/505301
813 "-Wno-pointer-sign", # http://crbug.com/505303 812 "-Wno-pointer-sign", # http://crbug.com/505303
814 "-Wno-reorder", # http://crbug.com/505304 813 "-Wno-reorder", # http://crbug.com/505304
815 "-Wno-sometimes-uninitialized", # http://crbug.com/505307 814 "-Wno-sometimes-uninitialized", # http://crbug.com/505307
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
971 } 970 }
972 } 971 }
973 cflags += default_warning_flags 972 cflags += default_warning_flags
974 cflags_cc = default_warning_flags_cc 973 cflags_cc = default_warning_flags_cc
975 } 974 }
976 config("no_chromium_code") { 975 config("no_chromium_code") {
977 cflags = [] 976 cflags = []
978 cflags_cc = [] 977 cflags_cc = []
979 defines = [] 978 defines = []
980 979
980 if (is_clang) {
981 cflags += [ "-Wno-incompatible-pointer-types" ]
982 }
983
981 if (is_win) { 984 if (is_win) {
982 cflags += [ 985 cflags += [
983 "/W3", # Warning level 3. 986 "/W3", # Warning level 3.
984 "/wd4800", # Disable warning when forcing value to bool. 987 "/wd4800", # Disable warning when forcing value to bool.
985 "/wd4267", # TODO(jschuh): size_t to int. 988 "/wd4267", # TODO(jschuh): size_t to int.
986 "/wd4996", # Deprecated function warning. 989 "/wd4996", # Deprecated function warning.
987 ] 990 ]
988 defines += [ 991 defines += [
989 "_CRT_NONSTDC_NO_WARNINGS", 992 "_CRT_NONSTDC_NO_WARNINGS",
990 "_CRT_NONSTDC_NO_DEPRECATE", 993 "_CRT_NONSTDC_NO_DEPRECATE",
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1236 cflags += [ "-gsplit-dwarf" ] 1239 cflags += [ "-gsplit-dwarf" ]
1237 } 1240 }
1238 } 1241 }
1239 } 1242 }
1240 1243
1241 config("no_symbols") { 1244 config("no_symbols") {
1242 if (!is_win) { 1245 if (!is_win) {
1243 cflags = [ "-g0" ] 1246 cflags = [ "-g0" ]
1244 } 1247 }
1245 } 1248 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698