// // Copyright (C) 2018 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_defaults { name: "lp_defaults", cflags: [ "-Werror", "-Wextra", "-D_FILE_OFFSET_BITS=64", ], target: { linux_bionic: { enabled: true, }, }, } cc_library_shared { name: "liblpdump", defaults: ["lp_defaults"], host_supported: true, shared_libs: [ "libbase", "liblog", "liblp", "libprotobuf-cpp-full", ], static_libs: [ "libjsonpbparse", ], srcs: [ "lpdump.cc", "dynamic_partitions_device_info.proto", ], proto: { type: "full", }, target: { android: { shared_libs: [ "libcutils", "libfs_mgr", ], }, }, } cc_binary { name: "lpdump", defaults: ["lp_defaults"], host_supported: true, shared_libs: [ "libbase", "liblog", "liblp", ], static_libs: [ "libjsonpbparse", ], target: { android: { srcs: [ "lpdump_target.cc", ], shared_libs: [ "liblpdump_interface-cpp", "libbinder", "libutils", ], required: [ "lpdumpd", ], }, host: { srcs: [ "lpdump_host.cc", ], shared_libs: [ "liblpdump", ], }, }, } cc_binary_host { name: "lpmake", defaults: ["lp_defaults"], shared_libs: [ "libbase", "liblog", "liblp", ], srcs: [ "lpmake.cc", ], target: { windows: { enabled: true, }, }, } cc_binary_host { name: "lpadd", defaults: ["lp_defaults"], shared_libs: [ "libbase", "liblog", "liblp", "libsparse", ], srcs: [ "lpadd.cc", ], } cc_binary { name: "lpflash", defaults: ["lp_defaults"], host_supported: true, shared_libs: [ "libbase", "liblog", "liblp", ], srcs: [ "lpflash.cc", ], } cc_binary { name: "lpdumpd", defaults: [ "lp_defaults", "libsnapshot_cow_defaults", "libsnapshot_hal_deps", ], init_rc: ["lpdumpd.rc"], shared_libs: [ "libbase", "libbinder", "libfs_mgr_binder", "liblog", "liblp", "liblpdump", "liblpdump_interface-cpp", "libprotobuf-cpp-lite", "libsnapshot", "libutils", ], static_libs: [ "update_metadata-protos", ], srcs: [ "lpdumpd.cc", ], } cc_binary_host { name: "lpunpack", defaults: ["lp_defaults"], shared_libs: [ "libbase", "liblog", "liblp", "libsparse", ], static_libs: [ "libc++fs", ], srcs: [ "lpunpack.cc", ], cppflags: [ "-D_FILE_OFFSET_BITS=64", ], }