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 chrome targets."""
6
7import cr
8
9
10class ChromeTarget(cr.NamedTarget):
11  NAME = 'chrome'
12  CONFIG = cr.Config.From(
13      CR_RUN_ARGUMENTS=cr.Config.Optional('-d "{CR_URL!e}"'),
14      CR_TARGET_NAME='Chrome',
15  )
16
17
18class ChromeTestTarget(cr.NamedTarget):
19  NAME = 'chrome_test'
20  CONFIG = cr.Config.From(
21      CR_TARGET_NAME='ChromeTest',
22  )
23