1fb726d48Sopenharmony_ci# Copyright (c) Huawei Technologies Co., Ltd. 2023. All rights reserved.
2fb726d48Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License");
3fb726d48Sopenharmony_ci# you may not use this file except in compliance with the License.
4fb726d48Sopenharmony_ci# You may obtain a copy of the License at
5fb726d48Sopenharmony_ci#
6fb726d48Sopenharmony_ci#     http://www.apache.org/licenses/LICENSE-2.0
7fb726d48Sopenharmony_ci#
8fb726d48Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software
9fb726d48Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS,
10fb726d48Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11fb726d48Sopenharmony_ci# See the License for the specific language governing permissions and
12fb726d48Sopenharmony_ci# limitations under the License.
13fb726d48Sopenharmony_ci
14fb726d48Sopenharmony_ciimport("../../../build/config.gni")
15fb726d48Sopenharmony_ci
16fb726d48Sopenharmony_cisubsys_name = OHOS_PROFILER_SUBSYS_NAME
17fb726d48Sopenharmony_cipart_name = OHOS_PROFILER_PART_NAME
18fb726d48Sopenharmony_ci
19fb726d48Sopenharmony_ci# subsys_x64_out = "clang_x64/$subsys_name/$part_name"
20fb726d48Sopenharmony_cilibc_dir_proto = rebase_path("$asdk_libs_dir", "//")
21fb726d48Sopenharmony_ciroot_output_dir_proto = rebase_path("$root_out_dir", "//")
22fb726d48Sopenharmony_ci
23fb726d48Sopenharmony_ci#host:clang_x64 default:arm mingw:mingw_x86_64
24fb726d48Sopenharmony_ciif (current_toolchain != host_toolchain) {
25fb726d48Sopenharmony_ci  if (current_toolchain == default_toolchain) {
26fb726d48Sopenharmony_ci    root_output_dir_proto = "$root_output_dir_proto/$clang_x64_folder"
27fb726d48Sopenharmony_ci  } else {
28fb726d48Sopenharmony_ci    root_output_dir_proto =
29fb726d48Sopenharmony_ci        get_path_info("$root_output_dir_proto", "dir") + "/$clang_x64_folder"
30fb726d48Sopenharmony_ci  }
31fb726d48Sopenharmony_ci}
32fb726d48Sopenharmony_ciprotoc = root_output_dir_proto
33fb726d48Sopenharmony_ciprint("default_toolchain = ", default_toolchain)
34fb726d48Sopenharmony_ciprint("current_toolchain = ", current_toolchain)
35fb726d48Sopenharmony_ciprint("host_toolchain = ", host_toolchain)
36fb726d48Sopenharmony_ciprint("root_out_dir = ", root_out_dir)
37fb726d48Sopenharmony_ciprint("root_output_dir_proto = ", root_output_dir_proto)
38