48 lines
1.5 KiB
Plaintext
48 lines
1.5 KiB
Plaintext
//
|
|
// Copyright (C) 2022 The Android Open Source Project
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
|
|
package {
|
|
default_applicable_licenses: ["external_dlmalloc_license"],
|
|
}
|
|
|
|
|
|
license {
|
|
name: "external_dlmalloc_license",
|
|
visibility: [":__subpackages__"],
|
|
license_kinds: ["legacy_unencumbered"],
|
|
license_text: ["NOTICE"],
|
|
}
|
|
|
|
// In an ideal world, dlmalloc should be declared as a cc_static_library and
|
|
// linked against libart, but at the moment dlmalloc.c (the source file) is
|
|
// included directly in art/runtime/gc/allocator/art-dlmalloc.cc, and that is
|
|
// made possible by this declaration of dlmalloc as cc_library_headers.
|
|
//
|
|
// TODO: Find a better solution to make dlmalloc be linked against libart
|
|
// without the current dlmalloc.c source inclusion.
|
|
cc_library_headers {
|
|
name: "dlmalloc",
|
|
host_supported: true,
|
|
export_include_dirs: ["."],
|
|
apex_available: [
|
|
"com.android.art",
|
|
"com.android.art.debug",
|
|
"//apex_available:platform",
|
|
],
|
|
min_sdk_version: "apex_inherit",
|
|
tidy: false,
|
|
}
|