Michael Spang | 42c2ccd | 2021-06-23 11:39:40 -0400 | [diff] [blame] | 1 | # Copyright (c) 2021 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 | |
| 15 | import("//build_overrides/chip.gni") |
yunhanw-google | f473579 | 2023-10-24 20:42:50 -0700 | [diff] [blame] | 16 | import("${chip_root}/src/app/common_flags.gni") |
Andrei Litvin | a3d0a86 | 2024-02-20 04:56:48 -0500 | [diff] [blame] | 17 | |
| 18 | source_set("types") { |
| 19 | sources = [ |
Andrei Litvin | f05f3f0 | 2024-03-05 14:36:04 -0500 | [diff] [blame] | 20 | "att-storage.h", |
Andrei Litvin | 42727b1 | 2024-02-29 18:38:19 -0500 | [diff] [blame] | 21 | "attribute-metadata.cpp", |
Andrei Litvin | a3d0a86 | 2024-02-20 04:56:48 -0500 | [diff] [blame] | 22 | "attribute-metadata.h", |
| 23 | "basic-types.h", |
Andrei Litvin | 42727b1 | 2024-02-29 18:38:19 -0500 | [diff] [blame] | 24 | "ember-strings.cpp", |
| 25 | "ember-strings.h", |
Andrei Litvin | 4b0cbcc | 2024-03-05 12:15:25 -0500 | [diff] [blame] | 26 | "endpoint-config-defines.h", |
Andrei Litvin | a3d0a86 | 2024-02-20 04:56:48 -0500 | [diff] [blame] | 27 | "types_stub.h", |
| 28 | ] |
Andrei Litvin | 42727b1 | 2024-02-29 18:38:19 -0500 | [diff] [blame] | 29 | |
| 30 | deps = [ |
| 31 | "${chip_root}/src/app/common:attribute-type", |
| 32 | "${chip_root}/src/lib/core:encoding", |
| 33 | "${chip_root}/src/lib/core:types", |
| 34 | ] |
| 35 | public_configs = [ "${chip_root}/src:includes" ] |
Andrei Litvin | a3d0a86 | 2024-02-20 04:56:48 -0500 | [diff] [blame] | 36 | } |