OLD | NEW |
| (Empty) |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 """Gathers information about APKs/JARs.""" | |
6 | |
7 import logging | |
8 import os | |
9 import re | |
10 | |
11 from pylib import cmd_helper | |
12 | |
13 import apk_info | |
14 import jar_info | |
15 | |
16 class ApkAndJarInfo(apk_info.ApkInfo, jar_info.JarInfo): | |
17 """Helper class for for wrapping ApkInfo/JarInfo.""" | |
18 | |
19 def __init__(self, apk_path, jar_path): | |
20 apk_info.ApkInfo.__init__(self, apk_path) | |
21 jar_info.JarInfo.__init__(self, jar_path) | |
22 | |
OLD | NEW |