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