Files
android_development/vndk/tools/vtable-dumper/Android.bp
Pirama Arumuga Nainar d8f4dc4c66 Make vtable-dumper depend on libLLVM_android.so
Bug: http://b/64121881

The module built in the Android tree is now named libLLVM_android.so.
Let vtable-dumper depend on these temporarily before eventually
depending on the prebuilt libraries.

Test: aosp_marlin checkbuild with FORCE_BUILD_LLVM_COMPONENTS set and
unset.

Change-Id: Ia015956e4a9647e11c9ad62aa2eaa105865cfa27
2017-11-06 11:34:34 -08:00

39 lines
937 B
Plaintext

//
// Copyright (C) 2016 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.
//
cc_binary_host {
name: "vndk-vtable-dumper",
defaults: [
"clang-defaults",
],
srcs: [
"elf_handling.cpp",
"vndk_vtable_dumper.cpp",
],
cflags: [
"-Wall",
"-Werror",
"-std=c++11",
],
shared_libs: [
"libLLVM_android",
],
}