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