1# Copyright 2019 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build/toolchain/gcc_toolchain.gni")
6
7# Fake toolchain to enable build output for a pointer-compression-comparison
8# build in a nested build sub-directory. We toggle pointer compression when
9# this toolchain is used in v8/BUILD.gn.
10clang_toolchain("clang_x64_pointer_compression") {
11  toolchain_args = {
12    current_cpu = "x64"
13    current_os = "linux"
14  }
15}
16