blob: 26432f3f0e3be2b80e9e4580c7fdd73ece428d30 [file] [log] [blame]
Dan Shic1e3ba12020-03-11 15:40:11 +00001//
2// Copyright (C) 2020 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
16
17// TODO(b/150663999): Change this to a filegroup when the build system is able
18// to process a large number of files.
Bob Badourdbbe4462021-03-01 07:43:39 -080019package {
20 default_applicable_licenses: ["Android-Apache-2.0"],
21}
22
Dan Shic1e3ba12020-03-11 15:40:11 +000023genrule {
24 name: "vndk_abi_dump_zip",
25 tools: ["soong_zip"],
26 cmd: "$(location soong_zip) -o $(out) -C prebuilts/abi-dumps/vndk -D prebuilts/abi-dumps/vndk",
27 srcs: ["**/*.lsdump"],
28 out: ["vndk_abi_dump.zip"],
29}