blob: ab969504b1ca652b49bf6c07a391e517c697530f [file] [log] [blame]
Mathias Agopian1d77b712017-02-17 15:46:13 -08001// Copyright (C) 2017 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
15cc_library_static {
16 name: "libmath",
17 host_supported: true,
Jiyong Parkc45a8162017-04-27 17:29:29 +090018 vendor_available: true,
Jooyung Han54042e02020-05-13 16:04:07 +090019 apex_available: [
20 "//apex_available:platform",
21 "com.android.media",
22 "com.android.media.swcodec",
23 "com.android.neuralnetworks",
24 ],
Dan Stozaa3d8f052020-09-29 13:37:23 -070025
Jooyung Han54042e02020-05-13 16:04:07 +090026 min_sdk_version: "29",
27
Mathias Agopian1d77b712017-02-17 15:46:13 -080028 export_include_dirs: ["include"],
Alec Mouri4fbd9bc2020-02-18 13:56:48 -080029 target: {
30 windows: {
31 enabled: true,
32 }
33 }
Mathias Agopian1d77b712017-02-17 15:46:13 -080034}
35
Dan Stozaa3d8f052020-09-29 13:37:23 -070036cc_library_headers {
37 name: "libmath_headers",
38 export_include_dirs: ["include"],
39 host_supported: true,
40 vendor_available: true,
41
42 apex_available: [
43 "//apex_available:anyapex",
44 "//apex_available:platform",
45 ],
46 min_sdk_version: "apex_inherit",
47
48 target: {
49 windows: {
50 enabled: true,
51 }
52 }
53}
54
Mathias Agopian1d77b712017-02-17 15:46:13 -080055subdirs = ["tests"]