1# Copyright 2019 The TensorFlow Authors. All Rights Reserved.
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
16package(default_visibility = [
17    "//visibility:public",
18])
19
20licenses([
21    "notice",  # BSD-3-Clause-Clear
22])
23
24exports_files(glob(["hexagon/**/*.so"]))
25
26#Just header file, needed for data types in the interface.
27cc_library(
28    name = "hexagon_nn_header",
29    hdrs = [
30        "hexagon/hexagon_nn.h",
31    ],
32    tags = [
33        "manual",
34        "nobuilder",
35    ],
36)
37
38cc_library(
39    name = "hexagon_nn_ops",
40    hdrs = [
41        "hexagon/hexagon_nn_ops.h",
42        "hexagon/ops.def",
43    ],
44    tags = [
45        "manual",
46        "nobuilder",
47    ],
48)
49