OLD | NEW |
1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 static_library("libdouble_conversion") { | 5 static_library("libdouble_conversion") { |
6 configs += [ "../../..:dart_config" ] | 6 configs += [ "../../..:dart_config" ] |
| 7 if (is_fuchsia) { |
| 8 configs -= [ "//build/config:symbol_visibility_hidden" ] |
| 9 } |
7 sources = [ | 10 sources = [ |
8 "bignum-dtoa.cc", | 11 "bignum-dtoa.cc", |
9 "bignum-dtoa.h", | 12 "bignum-dtoa.h", |
10 "bignum.cc", | 13 "bignum.cc", |
11 "bignum.h", | 14 "bignum.h", |
12 "cached-powers.cc", | 15 "cached-powers.cc", |
13 "cached-powers.h", | 16 "cached-powers.h", |
14 "diy-fp.cc", | 17 "diy-fp.cc", |
15 "diy-fp.h", | 18 "diy-fp.h", |
16 "double-conversion.cc", | 19 "double-conversion.cc", |
17 "double-conversion.h", | 20 "double-conversion.h", |
18 "fast-dtoa.cc", | 21 "fast-dtoa.cc", |
19 "fast-dtoa.h", | 22 "fast-dtoa.h", |
20 "fixed-dtoa.cc", | 23 "fixed-dtoa.cc", |
21 "fixed-dtoa.h", | 24 "fixed-dtoa.h", |
22 "ieee.h", | 25 "ieee.h", |
23 "strtod.cc", | 26 "strtod.cc", |
24 "strtod.h", | 27 "strtod.h", |
25 "utils.h", | 28 "utils.h", |
26 ] | 29 ] |
27 include_dirs = [ "." ] | 30 include_dirs = [ "." ] |
28 } | 31 } |
OLD | NEW |