123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163 |
- // 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.
- subdirs = [
- "test"
- ]
- cc_defaults {
- name: "libvintf-defaults",
- cflags: [
- "-Wall",
- "-Werror",
- "-Wextra-semi",
- ],
- target: {
- android: {
- cflags: ["-DLIBVINTF_TARGET"],
- },
- }
- }
- cc_library {
- name: "libvintf",
- defaults: ["libvintf-defaults"],
- host_supported: true,
- recovery_available: true,
- srcs: [
- "parse_string.cpp",
- "parse_xml.cpp",
- "CompatibilityMatrix.cpp",
- "FileSystem.cpp",
- "HalManifest.cpp",
- "HalInterface.cpp",
- "KernelConfigTypedValue.cpp",
- "KernelConfigParser.cpp",
- "KernelInfo.cpp",
- "RuntimeInfo.cpp",
- "ManifestHal.cpp",
- "ManifestInstance.cpp",
- "MatrixHal.cpp",
- "MatrixInstance.cpp",
- "MatrixKernel.cpp",
- "PropertyFetcher.cpp",
- "Regex.cpp",
- "SystemSdk.cpp",
- "TransportArch.cpp",
- "VintfObject.cpp",
- "XmlFile.cpp",
- ],
- shared_libs: [
- "libbase",
- "libhidl-gen-utils",
- "liblog",
- "libselinux",
- "libtinyxml2",
- "libz",
- ],
- export_include_dirs: ["include", "."],
- local_include_dirs: ["include/vintf"],
- export_shared_lib_headers: [
- "libhidl-gen-utils",
- ],
- target: {
- host: {
- srcs: [
- "RuntimeInfo-host.cpp",
- ],
- },
- android: {
- srcs: [
- "RuntimeInfo-target.cpp",
- ],
- },
- }
- }
- cc_binary {
- name: "vintf",
- defaults: ["libvintf-defaults"],
- shared_libs: [
- "libbase",
- "libhidl-gen-utils",
- "libvintf",
- ],
- srcs: [
- "main.cpp"
- ],
- }
- cc_binary_host {
- name: "checkvintf",
- defaults: ["libvintf-defaults"],
- static_libs: [
- "libbase",
- "libhidl-gen-utils",
- "libvintf",
- "libutils",
- "libtinyxml2",
- ],
- stl: "libc++_static",
- srcs: [
- "check_vintf.cpp",
- ],
- }
- cc_library_static {
- name: "libassemblevintf",
- host_supported: true,
- defaults: ["libvintf-defaults"],
- shared_libs: [
- "libvintf",
- "libbase",
- ],
- srcs: [
- "AssembleVintf.cpp",
- ],
- export_include_dirs: ["include-test"],
- }
- cc_binary_host {
- name: "assemble_vintf",
- defaults: ["libvintf-defaults"],
- shared_libs: [
- "libvintf",
- "libbase",
- ],
- static_libs: [
- "libassemblevintf",
- ],
- srcs: [
- "assemble_vintf_main.cpp"
- ],
- }
- cc_library_static {
- name: "libvintf_recovery",
- recovery_available: true,
- defaults: ["libvintf-defaults"],
- srcs: ["VintfObjectRecovery.cpp"],
- export_include_dirs: ["include"],
- local_include_dirs: ["include/vintf"],
- static_libs: [
- "libbase",
- "libvintf",
- "libhidl-gen-utils",
- "libfs_mgr",
- ],
- export_static_lib_headers: ["libhidl-gen-utils"],
- }
|