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 config("fusl_config") { | 5 config("fusl_config") { |
6 cflags = [ | 6 cflags = [ |
7 # Flags from musl | 7 # Flags from musl |
8 "-std=c99", | 8 "-std=c99", |
9 "-ffreestanding", | 9 "-ffreestanding", |
10 "-nostdinc", | 10 "-nostdinc", |
(...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1558 ":copy_include_bits", | 1558 ":copy_include_bits", |
1559 ":copy_libc", | 1559 ":copy_libc", |
1560 ] | 1560 ] |
1561 } | 1561 } |
1562 | 1562 |
1563 group("fusl") { | 1563 group("fusl") { |
1564 deps = [ | 1564 deps = [ |
1565 ":crt", | 1565 ":crt", |
1566 ":libc", | 1566 ":libc", |
1567 ":sysroot", | 1567 ":sysroot", |
| 1568 "//third_party/libcxx:libcxx", |
| 1569 "//third_party/libcxx:libcxxabi", |
1568 ] | 1570 ] |
1569 } | 1571 } |
OLD | NEW |