blob: 681b405f7d56211d1eb3e812701a4cdd6f89c5a0 [file] [log] [blame]
Joe Onoratod636ea12024-05-23 12:25:27 -07001#!/usr/bin/env python3
2
3# Copyright (C) 2024 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
17# Get the path of a specific module in the android tree, as cached in module-info.json.
18# If any build change is made, and it should be reflected in the output, you should run
19# 'refreshmod' first. Note: This is the inverse of dirmods.
20
21import sys
22sys.dont_write_bytecode = True
23
24import modinfo
25
26import os
27
28
29def main(argv):
30 if len(argv) != 2:
31 sys.stderr.write("usage: outmod <module>\n")
32 sys.exit(1)
33
34 for output in modinfo.GetModule(modinfo.ReadModuleInfo(), argv[1])['installed']:
35 print(os.path.join(os.getenv("ANDROID_BUILD_TOP"), output))
36
37if __name__ == "__main__":
38 main(sys.argv)
39