1// 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 15package { 16 default_team: "trendy_team_java_core_libraries", 17 // http://go/android-license-faq 18 // A large-scale-change added 'default_applicable_licenses' to import 19 // the below license kinds from "libcore_luni_license": 20 // SPDX-license-identifier-Apache-2.0 21 default_applicable_licenses: ["libcore_luni_license"], 22} 23 24filegroup { 25 name: "luni_native_srcs", 26 visibility: [ 27 "//libcore", 28 ], 29 srcs: [ 30 "ExecStrings.cpp", 31 "IcuUtilities.cpp", 32 "JniConstants.cpp", 33 "JniException.cpp", 34 "NetworkUtilities.cpp", 35 "Register.cpp", 36 "ZipUtilities.cpp", 37 "android_system_OsConstants.cpp", 38 "cbigint.cpp", 39 "java_lang_StringToReal.cpp", 40 "java_lang_invoke_MethodHandle.cpp", 41 "java_lang_invoke_VarHandle.cpp", 42 "libcore_math_NativeBN.cpp", 43 "libcore_icu_ICU.cpp", 44 "libcore_io_AsynchronousCloseMonitor.cpp", 45 "libcore_io_Linux.cpp", 46 "libcore_io_Memory.cpp", 47 "libcore_util_NativeAllocationRegistry.cpp", 48 "org_apache_harmony_xml_ExpatParser.cpp", 49 "sun_misc_Unsafe.cpp", 50 "valueOf.cpp", 51 ], 52} 53 54filegroup { 55 name: "libandroidio_srcs", 56 visibility: [ 57 "//libcore", 58 ], 59 srcs: [ 60 "AsynchronousCloseMonitor.cpp", 61 ], 62} 63