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/ohos.gni")
15fb726d48Sopenharmony_ci
16fb726d48Sopenharmony_ciimport("../../../build/ts.gni")
17fb726d48Sopenharmony_ciohos_source_set("hiperf_tables") {
18fb726d48Sopenharmony_ci  subsystem_name = "${OHOS_PROFILER_SUBSYS_NAME}"
19fb726d48Sopenharmony_ci  part_name = "${OHOS_PROFILER_PART_NAME}"
20fb726d48Sopenharmony_ci  sources = [
21fb726d48Sopenharmony_ci    "perf_call_chain_table.cpp",
22fb726d48Sopenharmony_ci    "perf_files_table.cpp",
23fb726d48Sopenharmony_ci    "perf_napi_async_table.cpp",
24fb726d48Sopenharmony_ci    "perf_report_table.cpp",
25fb726d48Sopenharmony_ci    "perf_sample_table.cpp",
26fb726d48Sopenharmony_ci    "perf_thread_table.cpp",
27fb726d48Sopenharmony_ci  ]
28fb726d48Sopenharmony_ci  include_dirs = [ "include" ]
29fb726d48Sopenharmony_ci  public_configs = [ "${SRC}/table/base:base_tables_cfg" ]
30fb726d48Sopenharmony_ci  if (!is_independent_compile) {
31fb726d48Sopenharmony_ci    configs = [ "${TS_DIR}/gn:ts_config" ]
32fb726d48Sopenharmony_ci  }
33fb726d48Sopenharmony_ci  if (enable_ts_utest && !use_wasm) {
34fb726d48Sopenharmony_ci    cflags = [
35fb726d48Sopenharmony_ci      "-fprofile-arcs",
36fb726d48Sopenharmony_ci      "-ftest-coverage",
37fb726d48Sopenharmony_ci    ]
38fb726d48Sopenharmony_ci    ldflags = [
39fb726d48Sopenharmony_ci      "-fprofile-arcs",
40fb726d48Sopenharmony_ci      "-ftest-coverage",
41fb726d48Sopenharmony_ci      "--coverage",
42fb726d48Sopenharmony_ci    ]
43fb726d48Sopenharmony_ci    if (is_test) {
44fb726d48Sopenharmony_ci      cflags += [ "-D IS_UT" ]
45fb726d48Sopenharmony_ci    }
46fb726d48Sopenharmony_ci  }
47fb726d48Sopenharmony_ci}
48