Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: build/android/pylib/utils/apk_and_jar_info.py

Issue 11780003: [Android] Revert 175082 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/android/pylib/run_python_tests.py ('k') | build/android/pylib/utils/apk_info.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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
OLDNEW
« no previous file with comments | « build/android/pylib/run_python_tests.py ('k') | build/android/pylib/utils/apk_info.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698