1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
description: disable dependencies on glmark directory
author: Michael Gilbert <[email protected]>
--- a/third_party/angle/src/tests/BUILD.gn
+++ b/third_party/angle/src/tests/BUILD.gn
@@ -339,13 +339,13 @@ if (build_angle_perftests) {
data_deps += [ "//testing:run_perf_test" ]
}
- if (is_win || is_linux || is_chromeos) {
+ if (false) {
data_deps += [ "${angle_root}/third_party/glmark2:glmark2_angle" ]
}
if (is_win && target_cpu != "arm64") {
data_deps += [ "${angle_root}/third_party/glmark2:glmark2_wgl" ]
}
- if (is_linux || is_chromeos) {
+ if (false) {
data_deps += [ "${angle_root}/third_party/glmark2:glmark2_glx" ]
}
|