Hash :
3da24b5c
Author :
Date :
2022-05-16T11:58:59
Move trace loader code to a common location. With that Capture/Replay will be able to make use of the same code. CL authored by gert.wollny@collabora.com. Bug: angleproject:4964 Change-Id: Ie1ba663169a34929f5a169ab74c7042e9fd5deb0 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/3645441 Reviewed-by: Cody Northrop <cnorthrop@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
# Copyright 2020 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# Contains the build rules for confidential trace tests.
import("../../../gni/angle.gni")
angle_trace_library("angle_restricted_traces") {
json_path = "restricted_traces.json"
}
group("goldctl") {
data = []
# Because this links to a CIPD dependency, which is a symlink on Unix
# platforms, refer to the actual executable rather than the whole directory;
# copying the whole directory doesn't work, at least with "mb.py zip".
if (is_win) {
data += [ "//tools/skia_goldctl/win/goldctl.exe" ]
} else if (is_mac) {
data += [
"//tools/skia_goldctl/mac_amd64/goldctl",
"//tools/skia_goldctl/mac_arm64/goldctl",
]
} else {
data += [ "//tools/skia_goldctl/linux/goldctl" ]
}
}
group("angle_restricted_trace_gold_tests") {
testonly = true
data_deps = [
":goldctl",
"$angle_root/src/tests:angle_perftests",
"$angle_root/src/tests:angle_system_info_test",
]
data = [
"restricted_trace_gold_tests.py",
"restricted_traces.json",
"../py_utils/android_helper.py",
"../py_utils/angle_path_util.py",
"../py_utils/angle_test_util.py",
"../py_utils/skia_gold/",
"//build/skia_gold_common/",
"//testing/scripts/common.py",
"//testing/xvfb.py",
]
}