Add a test suite for ChromeOS performance tests.

This suite should work as per below specifications:
- Runs at least once per day.
- On all boards.
- Runs on branches.
- 40 mins of test timeouts.

TEST=None
BUG=chromium:439653

Change-Id: I9686732f086dfea2174ad5ffd1970150f9c61ee8
Previous-Reviewed-on: https://chromium-review.googlesource.com/233714
(cherry picked from commit d2bce7c41506e7283aed87d3c2c48c5d3ebf2e7e)
Reviewed-on: https://chromium-review.googlesource.com/237083
Reviewed-by: Rohit Makasana <rohitbm@chromium.org>
Commit-Queue: Rohit Makasana <rohitbm@chromium.org>
Tested-by: Rohit Makasana <rohitbm@chromium.org>
diff --git a/suite_scheduler.ini b/suite_scheduler.ini
index c6b8b40..9b2e41b 100644
--- a/suite_scheduler.ini
+++ b/suite_scheduler.ini
@@ -405,3 +405,10 @@
 suite: ui
 branch_specs: >=R39
 pool: suites
+
+[Performance]
+run_on: nightly
+suite: performance
+branch_specs: >=tot-2
+pool: suites
+file_bugs: True
diff --git a/test_suites/control.performance b/test_suites/control.performance
new file mode 100644
index 0000000..b25fe67
--- /dev/null
+++ b/test_suites/control.performance
@@ -0,0 +1,47 @@
+# Copyright 2014 The Chromium OS Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+AUTHOR = "rohitbm@chromium.org, chromeos-performance@google.com"
+NAME = "performance"
+PURPOSE = "Performance tests"
+CRITERIA = "All tests with SUITE=performance must pass."
+
+TIME = "LONG"
+TEST_CATEGORY = "General"
+TEST_CLASS = "suite"
+TEST_TYPE = "Server"
+
+DOC = """
+ChromeOS performance tests including telemetry tests.
+
+@param build: The name of the image to test.
+              Ex: x86-mario-release/R17-1412.33.0-a1-b29
+@param board: The board to test on. Ex: x86-mario
+@param pool: The pool of machines to utilize for scheduling. If pool=None
+             board is used.
+@param check_hosts: require appropriate live hosts to exist in the lab.
+@param SKIP_IMAGE: (optional) If present and True, don't re-image devices.
+"""
+
+import common
+from autotest_lib.server.cros import provision
+from autotest_lib.server.cros.dynamic_suite import dynamic_suite
+
+
+# Values specified in this bug template will override default values when
+# filing bugs on tests that are a part of this suite. If left unspecified
+# the bug filer will fallback to its defaults.
+_BUG_TEMPLATE = {
+    'labels': ['Type-Bug', 'Cros-Perf-Test'],
+    'owner': 'rohitbm@chromium.org',
+    'ccs': ['lafeenstra@chromium.org']
+}
+
+dynamic_suite.reimage_and_run(
+    build=build, board=board, name='performance', job=job, pool=pool,
+    check_hosts=check_hosts, add_experimental=True, num=num,
+    file_bugs=False, priority=priority, timeout_mins=40,
+    bug_template=_BUG_TEMPLATE, devserver_url=devserver_url,
+    version_prefix=provision.CROS_VERSION_PREFIX,
+    wait_for_results=wait_for_results, job_retry=job_retry)