1# Copyright 2014 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 7default_clang_base_path = "//prebuilts/clang/ohos/${host_platform_dir}/llvm" 8 9declare_args() { 10 # Indicates if the build should use the Chrome-specific plugins for enforcing 11 # coding guidelines, etc. Only used when compiling with Clang. 12 #clang_use_chrome_plugins = is_clang && !is_nacl && !use_xcode_clang 13 clang_use_chrome_plugins = false 14 15 clang_base_path = default_clang_base_path 16} 17