blob: 3211c4c9391b29abdee51170b134b7c0c6d2aef1 [file] [log] [blame] [edit]
# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
from core import path_util
from telemetry import story
_PAGE_SET_DIR = os.path.join(path_util.GetChromiumSrcDir(), 'tools', 'perf',
'page_sets')
class EmbedderCrossbenchStorySet(story.StorySet):
NAME = 'embedder.crossbench'
def __init__(self):
super().__init__(
base_dir=_PAGE_SET_DIR,
archive_data_file='data/crossbench_android_embedder.json',
cloud_storage_bucket=story.PARTNER_BUCKET)