81 lines
2.2 KiB
Plaintext
81 lines
2.2 KiB
Plaintext
|
|
// Copyright (C) 2017 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: ["Android-Apache-2.0"],
|
||
|
|
}
|
||
|
|
|
||
|
|
cc_library_headers {
|
||
|
|
name: "libberberis_tinyloader_headers",
|
||
|
|
defaults: ["berberis_defaults"],
|
||
|
|
host_supported: true,
|
||
|
|
export_include_dirs: ["include"],
|
||
|
|
header_libs: ["libberberis_base_headers"],
|
||
|
|
export_header_lib_headers: ["libberberis_base_headers"],
|
||
|
|
}
|
||
|
|
|
||
|
|
cc_library_static {
|
||
|
|
name: "libberberis_tinyloader",
|
||
|
|
defaults: ["berberis_defaults"],
|
||
|
|
host_supported: true,
|
||
|
|
srcs: [
|
||
|
|
"tiny_loader.cc",
|
||
|
|
"tiny_symbol_table.cc",
|
||
|
|
],
|
||
|
|
header_libs: [
|
||
|
|
"libberberis_tinyloader_headers",
|
||
|
|
"libberberis_base_headers",
|
||
|
|
"libbase_headers",
|
||
|
|
"liblog_headers",
|
||
|
|
],
|
||
|
|
export_header_lib_headers: ["libberberis_tinyloader_headers"],
|
||
|
|
}
|
||
|
|
|
||
|
|
cc_test_library {
|
||
|
|
name: "libberberis_tinyloader_unit_tests",
|
||
|
|
defaults: ["berberis_test_library_defaults"],
|
||
|
|
host_supported: true,
|
||
|
|
srcs: [
|
||
|
|
"tests/tiny_loader_tests.cc",
|
||
|
|
],
|
||
|
|
header_libs: [
|
||
|
|
"libberberis_tinyloader_headers",
|
||
|
|
"libbase_headers",
|
||
|
|
"liblog_headers",
|
||
|
|
],
|
||
|
|
}
|
||
|
|
|
||
|
|
// The following targets are not used directly since the test
|
||
|
|
// is checking some values against hard-coded constants.
|
||
|
|
// In case they need to be updated, please copy them to
|
||
|
|
// `tests/files/32` and `tests/files/64` and update the
|
||
|
|
// test accordingly.
|
||
|
|
cc_library {
|
||
|
|
name: "libtinytest",
|
||
|
|
srcs: ["tests/tiny_test_lib.cc"],
|
||
|
|
}
|
||
|
|
|
||
|
|
cc_library {
|
||
|
|
name: "libtinytest_sysv",
|
||
|
|
srcs: ["tests/tiny_test_lib.cc"],
|
||
|
|
ldflags: ["-Wl,--hash-style=sysv"],
|
||
|
|
}
|
||
|
|
|
||
|
|
cc_binary {
|
||
|
|
name: "tiny_static_executable",
|
||
|
|
srcs: ["tests/tiny_static_executable.cc"],
|
||
|
|
static_executable: true,
|
||
|
|
}
|