1// 2// Copyright (C) 2015 The Android Open Source Project 3// 4// Licensed under the Apache License, Version 2.0 (the "License"); 5// you may not use this file except in compliance with the License. 6// You may obtain a copy of the License at 7// 8// http://www.apache.org/licenses/LICENSE-2.0 9// 10// Unless required by applicable law or agreed to in writing, software 11// distributed under the License is distributed on an "AS IS" BASIS, 12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13// See the License for the specific language governing permissions and 14// limitations under the License. 15// 16 17package { 18 default_applicable_licenses: ["external_libdivsufsort_license"], 19} 20 21// Added automatically by a large-scale-change that took the approach of 22// 'apply every license found to every target'. While this makes sure we respect 23// every license restriction, it may not be entirely correct. 24// 25// e.g. GPL in an MIT project might only apply to the contrib/ directory. 26// 27// Please consider splitting the single license below into multiple licenses, 28// taking care not to lose any license_kind information, and overriding the 29// default license using the 'licenses: [...]' property on targets as needed. 30// 31// For unused files, consider creating a 'fileGroup' with "//visibility:private" 32// to attach the license to, and including a comment whether the files may be 33// used in the current project. 34// See: http://go/android-license-faq 35license { 36 name: "external_libdivsufsort_license", 37 visibility: [":__subpackages__"], 38 license_kinds: [ 39 "SPDX-license-identifier-Apache-2.0", 40 "SPDX-license-identifier-MIT", 41 ], 42 license_text: [ 43 "LICENSE", 44 ], 45} 46 47cc_defaults { 48 name: "libdivsufsort_defaults", 49 host_supported: true, 50 recovery_available: true, 51 srcs: [ 52 "lib/divsufsort.c", 53 "lib/sssort.c", 54 "lib/trsort.c", 55 "lib/utils.c", 56 ], 57 local_include_dirs: ["include"], 58 export_include_dirs: ["android_include"], 59 cflags: [ 60 "-Wall", 61 "-Werror", 62 "-Wextra", 63 "-DHAVE_CONFIG_H=1", 64 ], 65} 66 67// libdivsufsort defines two different libraries compiled from the same 68// codebase. The libraries export different symbols and differ on the integer 69// type used in the suffix array index. "libdivsufsort" uses 32-bit integers 70// allowing input sizes up to 2GiB, while "libdivsufsort64" uses 64-bit integers 71// allowing larger input sizes (8 EiB) but also requiring twice as much memory 72// for the smaller inputs. 73 74// libdivsufsort using 32-bit integers for the suffix array. 75cc_library_static { 76 name: "libdivsufsort", 77 defaults: ["libdivsufsort_defaults"], 78} 79 80// libdivsufsort using 64-bit integers for the suffix array. 81cc_library_static { 82 name: "libdivsufsort64", 83 defaults: ["libdivsufsort_defaults"], 84 cflags: ["-DBUILD_DIVSUFSORT64"], 85} 86