xref: /aosp_15_r20/external/emboss/runtime/cpp/BUILD (revision 99e0aae7469b87d12f0ad23e61142c2d74c1ef70)
1# Copyright 2019 Google LLC
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#     https://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# Emboss C++ Runtime.
16
17filegroup(
18    name = "raw_headers",
19    srcs = [
20        "emboss_arithmetic.h",
21        "emboss_arithmetic_all_known_generated.h",
22        "emboss_arithmetic_maximum_operation_generated.h",
23        "emboss_array_view.h",
24        "emboss_bit_util.h",
25        "emboss_constant_view.h",
26        "emboss_cpp_types.h",
27        "emboss_cpp_util.h",
28        "emboss_defines.h",
29        "emboss_enum_view.h",
30        "emboss_maybe.h",
31        "emboss_memory_util.h",
32        "emboss_prelude.h",
33        "emboss_text_util.h",
34        "emboss_view_parameters.h",
35    ],
36    visibility = ["//:__subpackages__"],
37)
38
39cc_library(
40    name = "cpp_utils",
41    hdrs = [
42        ":raw_headers",
43    ],
44    visibility = ["//visibility:public"],
45    deps = [
46        # BEGIN INSERT_MY_SITE_DEFINES_TARGET_HERE
47        # "//MY_SITE_DEFINES:TARGET",
48        # END INSERT_MY_SITE_DEFINES_TARGET_HERE
49    ],
50)
51