| Index: chrome/test/BUILD.gn
|
| diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
|
| index 54bb2285e3658ee2ad0f0b5cc16ae22c2ef77feb..f55a3bba1f2bd18c95d990019c65719738f396b2 100644
|
| --- a/chrome/test/BUILD.gn
|
| +++ b/chrome/test/BUILD.gn
|
| @@ -2917,6 +2917,14 @@ if (!is_android) {
|
| ]
|
| }
|
|
|
| + data = [
|
| + # Needed for isolate script to execute.
|
| + "//testing/scripts/common.py",
|
| + "//testing/xvfb.py",
|
| + "//testing/scripts/run_gtest_perf_test.py",
|
| + "//tools/perf/generate_legacy_perf_dashboard_json.py",
|
| + ]
|
| +
|
| # This target should not require the Chrome executable to run.
|
| assert_no_deps = [ "//chrome" ]
|
| }
|
| @@ -2959,6 +2967,23 @@ group("telemetry_perf_tests") {
|
| ]
|
| }
|
|
|
| +group("angle_perftests") {
|
| + testonly = true
|
| + if (is_win) {
|
| + data_deps = [
|
| + "//third_party/angle/src/tests:angle_perftests",
|
| + ]
|
| + }
|
| +
|
| + data = [
|
| + # Needed for isolate script to execute.
|
| + "//testing/scripts/common.py",
|
| + "//testing/xvfb.py",
|
| + "//testing/scripts/run_gtest_perf_test.py",
|
| + "//tools/perf/generate_legacy_perf_dashboard_json.py",
|
| + ]
|
| +}
|
| +
|
| js2gtest("unit_tests_js") {
|
| test_type = "unit"
|
| sources = [
|
| @@ -4973,6 +4998,14 @@ if (!is_android && !is_ios && !is_chromecast) {
|
| "//testing/perf",
|
| ]
|
|
|
| + data = [
|
| + # Needed for isolate script to execute.
|
| + "//testing/scripts/common.py",
|
| + "//testing/xvfb.py",
|
| + "//testing/scripts/run_gtest_perf_test.py",
|
| + "//tools/perf/generate_legacy_perf_dashboard_json.py",
|
| + ]
|
| +
|
| if (is_win) {
|
| configs -= [ "//build/config/win:default_incremental_linking" ]
|
| configs +=
|
|
|