1*38e8c45fSAndroid Build Coastguard Worker// Copyright (C) 2017 The Android Open Source Project 2*38e8c45fSAndroid Build Coastguard Worker// 3*38e8c45fSAndroid Build Coastguard Worker// Licensed under the Apache License, Version 2.0 (the "License"); 4*38e8c45fSAndroid Build Coastguard Worker// you may not use this file except in compliance with the License. 5*38e8c45fSAndroid Build Coastguard Worker// You may obtain a copy of the License at 6*38e8c45fSAndroid Build Coastguard Worker// 7*38e8c45fSAndroid Build Coastguard Worker// http://www.apache.org/licenses/LICENSE-2.0 8*38e8c45fSAndroid Build Coastguard Worker// 9*38e8c45fSAndroid Build Coastguard Worker// Unless required by applicable law or agreed to in writing, software 10*38e8c45fSAndroid Build Coastguard Worker// distributed under the License is distributed on an "AS IS" BASIS, 11*38e8c45fSAndroid Build Coastguard Worker// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*38e8c45fSAndroid Build Coastguard Worker// See the License for the specific language governing permissions and 13*38e8c45fSAndroid Build Coastguard Worker// limitations under the License. 14*38e8c45fSAndroid Build Coastguard Worker 15*38e8c45fSAndroid Build Coastguard Workerpackage { 16*38e8c45fSAndroid Build Coastguard Worker default_applicable_licenses: ["frameworks_native_libs_math_license"], 17*38e8c45fSAndroid Build Coastguard Worker} 18*38e8c45fSAndroid Build Coastguard Worker 19*38e8c45fSAndroid Build Coastguard Worker// Added automatically by a large-scale-change 20*38e8c45fSAndroid Build Coastguard Worker// See: http://go/android-license-faq 21*38e8c45fSAndroid Build Coastguard Workerlicense { 22*38e8c45fSAndroid Build Coastguard Worker name: "frameworks_native_libs_math_license", 23*38e8c45fSAndroid Build Coastguard Worker visibility: [":__subpackages__"], 24*38e8c45fSAndroid Build Coastguard Worker license_kinds: [ 25*38e8c45fSAndroid Build Coastguard Worker "SPDX-license-identifier-Apache-2.0", 26*38e8c45fSAndroid Build Coastguard Worker ], 27*38e8c45fSAndroid Build Coastguard Worker license_text: [ 28*38e8c45fSAndroid Build Coastguard Worker "NOTICE", 29*38e8c45fSAndroid Build Coastguard Worker ], 30*38e8c45fSAndroid Build Coastguard Worker} 31*38e8c45fSAndroid Build Coastguard Worker 32*38e8c45fSAndroid Build Coastguard Workercc_library_static { 33*38e8c45fSAndroid Build Coastguard Worker name: "libmath", 34*38e8c45fSAndroid Build Coastguard Worker host_supported: true, 35*38e8c45fSAndroid Build Coastguard Worker vendor_available: true, 36*38e8c45fSAndroid Build Coastguard Worker apex_available: [ 37*38e8c45fSAndroid Build Coastguard Worker "//apex_available:platform", 38*38e8c45fSAndroid Build Coastguard Worker "com.android.media", 39*38e8c45fSAndroid Build Coastguard Worker "com.android.media.swcodec", 40*38e8c45fSAndroid Build Coastguard Worker "com.android.neuralnetworks", 41*38e8c45fSAndroid Build Coastguard Worker ], 42*38e8c45fSAndroid Build Coastguard Worker 43*38e8c45fSAndroid Build Coastguard Worker min_sdk_version: "29", 44*38e8c45fSAndroid Build Coastguard Worker 45*38e8c45fSAndroid Build Coastguard Worker export_include_dirs: ["include"], 46*38e8c45fSAndroid Build Coastguard Worker target: { 47*38e8c45fSAndroid Build Coastguard Worker windows: { 48*38e8c45fSAndroid Build Coastguard Worker enabled: true, 49*38e8c45fSAndroid Build Coastguard Worker } 50*38e8c45fSAndroid Build Coastguard Worker } 51*38e8c45fSAndroid Build Coastguard Worker} 52*38e8c45fSAndroid Build Coastguard Worker 53*38e8c45fSAndroid Build Coastguard Workercc_library_headers { 54*38e8c45fSAndroid Build Coastguard Worker name: "libmath_headers", 55*38e8c45fSAndroid Build Coastguard Worker export_include_dirs: ["include"], 56*38e8c45fSAndroid Build Coastguard Worker host_supported: true, 57*38e8c45fSAndroid Build Coastguard Worker vendor_available: true, 58*38e8c45fSAndroid Build Coastguard Worker 59*38e8c45fSAndroid Build Coastguard Worker apex_available: [ 60*38e8c45fSAndroid Build Coastguard Worker "//apex_available:anyapex", 61*38e8c45fSAndroid Build Coastguard Worker "//apex_available:platform", 62*38e8c45fSAndroid Build Coastguard Worker ], 63*38e8c45fSAndroid Build Coastguard Worker min_sdk_version: "apex_inherit", 64*38e8c45fSAndroid Build Coastguard Worker 65*38e8c45fSAndroid Build Coastguard Worker target: { 66*38e8c45fSAndroid Build Coastguard Worker windows: { 67*38e8c45fSAndroid Build Coastguard Worker enabled: true, 68*38e8c45fSAndroid Build Coastguard Worker } 69*38e8c45fSAndroid Build Coastguard Worker } 70*38e8c45fSAndroid Build Coastguard Worker} 71*38e8c45fSAndroid Build Coastguard Worker 72*38e8c45fSAndroid Build Coastguard Workersubdirs = ["tests"] 73