blob: 46b27da28f229cc02d3f0ee78b26ca78103cb1af [file] [log] [blame]
Hsin-Yi Chenae8cd2f2020-03-03 11:58:13 +08001//
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.
19genrule {
20 name: "vndk_abi_dump_zip",
21 tools: ["soong_zip"],
22 cmd: "$(location soong_zip) -o $(out) -C prebuilts/abi-dumps/vndk -D prebuilts/abi-dumps/vndk",
23 srcs: ["**/*.lsdump"],
24 out: ["vndk_abi_dump.zip"],
25}