From eacc31923990fc685551ee920c801c0390c10c84 Mon Sep 17 00:00:00 2001 From: Sergei Trofimov Date: Thu, 1 Mar 2018 16:18:18 +0000 Subject: [PATCH] wa: export target descriptor API - Add exports for target descriptor API. - Arrange exports alphabetically --- wa/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wa/__init__.py b/wa/__init__.py index 1357114e..d6741ccd 100644 --- a/wa/__init__.py +++ b/wa/__init__.py @@ -10,10 +10,12 @@ from wa.framework.exception import (CommandError, ConfigError, HostError, Instru from wa.framework.instrument import (Instrument, very_slow, slow, normal, fast, very_fast) from wa.framework.output import RunOutput, discover_wa_outputs -from wa.framework.plugin import Plugin, Parameter from wa.framework.output_processor import OutputProcessor +from wa.framework.plugin import Plugin, Parameter from wa.framework.resource import (NO_ONE, JarFile, ApkFile, ReventFile, File, Executable) +from wa.framework.target.descriptor import (TargetDescriptor, TargetDescription, + create_target_description, add_description_for_target) from wa.framework.workload import (Workload, ApkWorkload, ApkUiautoWorkload, ApkReventWorkload, UIWorkload, UiautoWorkload, ReventWorkload)