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

Side by Side Diff: runtime/runtime_args.gni

Issue 2619443002: Created placeholders for MallocHooks implementation and added define DART_USE_TCMALLOC to specifiy … (Closed)
Patch Set: Removed extra dependencies and corrected some code style issues. Created 3 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 | « runtime/bin/bin.gypi ('k') | runtime/vm/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « runtime/bin/bin.gypi ('k') | runtime/vm/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698