mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
46 lines
1.4 KiB
Plaintext
46 lines
1.4 KiB
Plaintext
|
# Copyright 2017 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
common_data = [
|
||
|
"./__init__.py",
|
||
|
"./android_vr_perf_test.py",
|
||
|
"./vr_perf_test.py",
|
||
|
"./vr_test_arg_parser.py",
|
||
|
"//third_party/android_tools/sdk/platform-tools/adb",
|
||
|
"//third_party/gvr-android-sdk/test-apks/vr_services/vr_services_current.apk",
|
||
|
]
|
||
|
|
||
|
group("motopho_latency_test") {
|
||
|
testonly = true
|
||
|
data = common_data + [
|
||
|
"./latency/__init__.py",
|
||
|
"./latency/android_webvr_latency_test.py",
|
||
|
"./latency/latency_test_config.py",
|
||
|
"./latency/motopho_thread.py",
|
||
|
"./latency/robot_arm.py",
|
||
|
"./latency/robot_arm_arduino.py",
|
||
|
"./latency/robot_arm_maestro.py",
|
||
|
"./latency/run_latency_test.py",
|
||
|
"./latency/webvr_latency_test.py",
|
||
|
"./latency/third_party/",
|
||
|
]
|
||
|
data_deps = [
|
||
|
"//chrome/android:chrome_public_apk",
|
||
|
]
|
||
|
}
|
||
|
|
||
|
group("vrcore_fps_test") {
|
||
|
testonly = true
|
||
|
data = common_data + [
|
||
|
"./vrcore_fps/__init__.py",
|
||
|
"./vrcore_fps/run_vrcore_fps_test.py",
|
||
|
"./vrcore_fps/vrcore_fps_test.py",
|
||
|
"./vrcore_fps/vrcore_fps_test_config.py",
|
||
|
"./vrcore_fps/vr_perf_summary.py",
|
||
|
]
|
||
|
data_deps = [
|
||
|
"//chrome/android:chrome_public_apk",
|
||
|
]
|
||
|
}
|