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

Side by Side Diff: fusl/BUILD.gn

Issue 1581793002: Remove -Wno-unknown-pragmas from fusl build (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « no previous file | fusl/src/internal/libm.h » ('j') | fusl/src/internal/libm.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 source_set("fusl-x86_64") { 5 source_set("fusl-x86_64") {
6 configs = [] 6 configs = []
7 7
8 asmflags = [ "-Wno-unused-command-line-argument" ] 8 asmflags = [ "-Wno-unused-command-line-argument" ]
9 9
10 # Arch specific sources. 10 # Arch specific sources.
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 "-fdata-sections", 78 "-fdata-sections",
79 "-Werror=implicit-function-declaration", 79 "-Werror=implicit-function-declaration",
80 "-Werror=implicit-int", 80 "-Werror=implicit-int",
81 "-Werror=pointer-sign", 81 "-Werror=pointer-sign",
82 "-Werror=pointer-arith", 82 "-Werror=pointer-arith",
83 83
84 # Silent builds. 84 # Silent builds.
85 "-Wno-ignored-attributes", 85 "-Wno-ignored-attributes",
86 "-Wno-string-plus-int", 86 "-Wno-string-plus-int",
87 "-Wno-tautological-compare", 87 "-Wno-tautological-compare",
88 "-Wno-unknown-pragmas",
89 ] 88 ]
90 89
91 # Arch specific includes. 90 # Arch specific includes.
92 include_dirs = [ "arch/x86_64" ] 91 include_dirs = [ "arch/x86_64" ]
93 92
94 # General includes. 93 # General includes.
95 include_dirs += [ 94 include_dirs += [
96 "src/internal", 95 "src/internal",
97 "include", 96 "include",
98 ] 97 ]
(...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 "//fusl/src/unistd/ttyname.c", 1384 "//fusl/src/unistd/ttyname.c",
1386 "//fusl/src/unistd/ttyname_r.c", 1385 "//fusl/src/unistd/ttyname_r.c",
1387 "//fusl/src/unistd/ualarm.c", 1386 "//fusl/src/unistd/ualarm.c",
1388 "//fusl/src/unistd/unlink.c", 1387 "//fusl/src/unistd/unlink.c",
1389 "//fusl/src/unistd/unlinkat.c", 1388 "//fusl/src/unistd/unlinkat.c",
1390 "//fusl/src/unistd/usleep.c", 1389 "//fusl/src/unistd/usleep.c",
1391 "//fusl/src/unistd/write.c", 1390 "//fusl/src/unistd/write.c",
1392 "//fusl/src/unistd/writev.c", 1391 "//fusl/src/unistd/writev.c",
1393 ] 1392 ]
1394 } 1393 }
OLDNEW
« no previous file with comments | « no previous file | fusl/src/internal/libm.h » ('j') | fusl/src/internal/libm.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698