| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |