7acb5ddb3b4e557d7038caeeb26151c2bf6eeccc
[platform/framework/web/crosswalk.git] / src / tools / perf / benchmarks / image_decoding.py
1 # Copyright (c) 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 import sys
6
7 from telemetry import test
8
9 from measurements import image_decoding
10
11
12 class ImageDecodingToughImageCases(test.Test):
13   test = image_decoding.ImageDecoding
14   # TODO: Rename this page set to tough_image_cases.json
15   page_set = 'page_sets/image_decoding_measurement.json'
16
17   # crbug.com/323015
18   enabled = not sys.platform.startswith('linux')