blob: e833d33429567eb3e22e1d8721ad49e031ac24cc [file] [log] [blame]
Arun Bharadwaj5dcbd402021-01-25 15:39:27 -08001# Copyright (c) 2020 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/chip.gni")
16
Michael Spange772be02021-04-09 14:03:22 -040017import("${chip_root}/src/app/chip_data_model.gni")
Arun Bharadwaj5dcbd402021-01-25 15:39:27 -080018
Michael Spange772be02021-04-09 14:03:22 -040019chip_data_model("bridge-common") {
Michael Spang9e282882021-04-26 15:54:03 -040020 zap_file = "bridge-app.zap"
Arun Bharadwaj5dcbd402021-01-25 15:39:27 -080021
Vivien Nicolas92e36832021-05-01 00:38:25 +020022 is_server = true
jrhees-cae14edc102021-06-02 23:16:24 -060023
24 # TODO: the definition of DYNAMIC_ENDPOINT_COUNT needs find a common home!
25 cflags = [ "-DDYNAMIC_ENDPOINT_COUNT=16" ]
Arun Bharadwaj5dcbd402021-01-25 15:39:27 -080026}