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("ebpf_tables") {
18fb726d48Sopenharmony_ci  subsystem_name = "${OHOS_PROFILER_SUBSYS_NAME}"
19fb726d48Sopenharmony_ci  part_name = "${OHOS_PROFILER_PART_NAME}"
20fb726d48Sopenharmony_ci  sources = [
21fb726d48Sopenharmony_ci    "bio_latency_sample_table.cpp",
22fb726d48Sopenharmony_ci    "ebpf_callstack_table.cpp",
23fb726d48Sopenharmony_ci    "file_system_sample_table.cpp",
24fb726d48Sopenharmony_ci  ]
25fb726d48Sopenharmony_ci  include_dirs = [ "include" ]
26fb726d48Sopenharmony_ci  public_configs = [ "${SRC}/table/base:base_tables_cfg" ]
27fb726d48Sopenharmony_ci  if (!is_independent_compile) {
28fb726d48Sopenharmony_ci    configs = [ "${TS_DIR}/gn:ts_config" ]
29fb726d48Sopenharmony_ci  }
30fb726d48Sopenharmony_ci  if (enable_ts_utest && !use_wasm) {
31fb726d48Sopenharmony_ci    cflags = [
32fb726d48Sopenharmony_ci      "-fprofile-arcs",
33fb726d48Sopenharmony_ci      "-ftest-coverage",
34fb726d48Sopenharmony_ci    ]
35fb726d48Sopenharmony_ci    ldflags = [
36fb726d48Sopenharmony_ci      "-fprofile-arcs",
37fb726d48Sopenharmony_ci      "-ftest-coverage",
38fb726d48Sopenharmony_ci      "--coverage",
39fb726d48Sopenharmony_ci    ]
40fb726d48Sopenharmony_ci    if (is_test) {
41fb726d48Sopenharmony_ci      cflags += [ "-D IS_UT" ]
42fb726d48Sopenharmony_ci    }
43fb726d48Sopenharmony_ci  }
44fb726d48Sopenharmony_ci}
45