1# Copyright 2017 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/toolchain.gni") 6 7declare_args() { 8 # Enable Clang's Source-based Code Coverage. 9 use_clang_coverage = false 10} 11 12assert(!use_clang_coverage || is_clang, 13 "Clang Source-based Code Coverage requires clang.") 14