blob: 6b64ca9c44cc19b2f427759d04b1c4754fe88471 [file] [log] [blame]
Andrei Litvind3564842023-06-23 12:30:50 -04001# Copyright (c) 2023 Project CHIP Authors
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import("//build_overrides/build.gni")
16import("//build_overrides/chip.gni")
17
18config("tracing") {
19 include_dirs = [ "include" ]
20}
21
22source_set("multiplexed") {
23 public = [ "include/matter/tracing/macros_impl.h" ]
24 public_deps = [ "${chip_root}/src/tracing" ]
25 public_configs = [ ":tracing" ]
26}