Dummy test / build rule for OpenScreen perf tests.
Bug: 403338499 Following structure from https://crrev.com/c/5727141. Change-Id: I5c7290f3f4c43f553d368cb3c559c1d52fb3c4ae Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/6354725 Reviewed-by: Jordan Bayles <jophba@chromium.org> Reviewed-by: Zijie He <zijiehe@google.com> Commit-Queue: Bailey Myers-Morgan <bmyersmorgan@google.com> Reviewed-by: Muyao Xu <muyaoxu@google.com> Cr-Commit-Position: refs/heads/main@{#1438465}
This commit is contained in:
parent
824f5014c6
commit
bd1221344f
@ -2412,6 +2412,7 @@ _GENERIC_PYDEPS_FILES = [
|
||||
'chrome/android/monochrome/scripts/monochrome_python_tests.pydeps',
|
||||
'chrome/test/chromedriver/log_replay/client_replay_unittest.pydeps',
|
||||
'chrome/test/chromedriver/test/run_py_tests.pydeps',
|
||||
'chrome/test/media_router/performance/performance_test.pydeps',
|
||||
'chromecast/resource_sizes/chromecast_resource_sizes.pydeps',
|
||||
'components/cronet/tools/check_combined_proguard_file.pydeps',
|
||||
'components/cronet/tools/generate_proguard_file.pydeps',
|
||||
|
6
chrome/test/media_router/performance/BUILD.gn
Normal file
6
chrome/test/media_router/performance/BUILD.gn
Normal file
@ -0,0 +1,6 @@
|
||||
import("//build/config/python.gni")
|
||||
|
||||
python_library("performance_test") {
|
||||
testonly = true
|
||||
pydeps_file = "performance_test.pydeps"
|
||||
}
|
13
chrome/test/media_router/performance/performance_test.py
Normal file
13
chrome/test/media_router/performance/performance_test.py
Normal file
@ -0,0 +1,13 @@
|
||||
# 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.
|
||||
|
||||
""" Execute Media Router performance tests against miscellaneous test devices. """
|
||||
|
||||
# TODO(crbug.com/403338499): Implement tests.
|
||||
def main() -> int:
|
||||
print('Running Media Router performance tests.')
|
||||
return 0
|
||||
|
||||
if __name__ == "__main__":
|
||||
sys.exit(main())
|
@ -0,0 +1,3 @@
|
||||
# Generated by running:
|
||||
# build/print_python_deps.py --root chrome/test/media_router/performance --output chrome/test/media_router/performance/performance_test.pydeps chrome/test/media_router/performance/performance_test.py
|
||||
performance_test.py
|
Loading…
x
Reference in New Issue
Block a user