blob: 87e74db7ac39ae2c07297507c70a6366d023c41c [file] [log] [blame]
Colin Cross4603c7e2017-04-18 15:59:31 -07001// Copyright (C) 2015 The Android Open Source Project
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
Miao Wang7ca694a2017-07-18 16:59:08 -070015cc_library_headers {
16 name: "libfixedpoint",
Miao Wang81ef1492017-07-28 17:33:26 -070017 vendor_available: true,
Miao Wang7ca694a2017-07-18 16:59:08 -070018 host_supported: true,
19 export_include_dirs: ["fixedpoint"],
20}
21
22cc_library_headers {
23 name: "libgemmlowp",
Miao Wang81ef1492017-07-28 17:33:26 -070024 vendor_available: true,
Miao Wang7ca694a2017-07-18 16:59:08 -070025 host_supported: true,
26 export_include_dirs: ["public"],
27}
28
Miao Wang3dd9fc32017-12-06 17:00:59 -080029cc_library_headers {
30 name: "gemmlowp_headers",
31 vendor_available: true,
32 host_supported: true,
33 export_include_dirs: ["."],
Przemyslaw Szczepaniak4ed14f62020-02-05 17:41:58 +000034 apex_available: [
35 "com.android.neuralnetworks",
36 "test_com.android.neuralnetworks",
37 "//apex_available:platform",
38 ],
Miao Wang3dd9fc32017-12-06 17:00:59 -080039}
40
Colin Cross4603c7e2017-04-18 15:59:31 -070041subdirs = ["eight_bit_int_gemm"]