OLD | NEW |
(Empty) | |
| 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 declare_args() { |
| 6 # Whether to fall back to built-in root certificates when they cannot be |
| 7 # verified at the operating system level. |
| 8 dart_use_fallback_root_certificates = false |
| 9 |
| 10 # The BUILD.gn file that we pull from chromium as part of zlib has a |
| 11 # dependence on //base, which we don't pull in. In a standalone build of the |
| 12 # VM, we set this to //runtime/bin/zlib where we have a BUILD.gn file without |
| 13 # a dependence on //base. |
| 14 dart_zlib_path = "//third_party/zlib" |
| 15 |
| 16 # Whether to link the standalone VM against tcmalloc. The standalone build of |
| 17 # the VM enables this only for Linux builds. |
| 18 dart_use_tcmalloc = false |
| 19 } |
| 20 |
| 21 # TODO(zra): Remove this when Fuchsia has a root cert cache on the filesystem. |
| 22 if (defined(is_fuchsia) && is_fuchsia) { |
| 23 dart_use_fallback_root_certificates = true |
| 24 } |
OLD | NEW |