xref: /aosp_15_r20/external/openscreen/tools/cddl/BUILD.gn (revision 3f982cf4871df8771c9d4abe6e9a6f8d829b2736)
1# Copyright 2018 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import("//build_overrides/build.gni")
6
7if (current_toolchain == host_toolchain) {
8  executable("cddl") {
9    sources = [
10      "codegen.cc",
11      "codegen.h",
12      "logging.cc",
13      "logging.h",
14      "main.cc",
15      "parse.cc",
16      "parse.h",
17      "sema.cc",
18      "sema.h",
19    ]
20
21    deps = [
22      "../../third_party/abseil",
23    ]
24
25    configs += [ "../../build:openscreen_include_dirs" ]
26  }
27}
28