1# Copyright 2016 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
5DESKTOP = 'desktop'
6MOBILE = 'mobile'
7
8ALL_PLATFORMS = frozenset({DESKTOP, MOBILE})
9
10# Use the constants below to mark on which platforms the story has WPR
11# recordings. To disable a story (e.g. because it crashes or takes too long),
12# use StoryExpectations instead.
13DESKTOP_ONLY = frozenset({DESKTOP})
14MOBILE_ONLY = frozenset({MOBILE})
15NO_PLATFORMS = frozenset()
16