Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / tools / cr / cr / targets / content_shell.py
1 # Copyright 2013 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 """Module for the content_shell targets."""
6
7 import cr
8
9
10 class ContentShellTarget(cr.NamedTarget):
11   NAME = 'content_shell'
12   CONFIG = cr.Config.From(
13       CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
14       CR_TARGET_NAME='ContentShell',
15       CR_PACKAGE='org.chromium.content_shell_apk',
16       CR_ACTIVITY='.ContentShellActivity',
17   )
18
19
20 class ContentShellTestTarget(cr.NamedTarget):
21   NAME = 'content_shell_test'
22   CONFIG = cr.Config.From(
23       CR_TARGET_NAME='ContentShellTest',
24   )