Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2823)

Unified Diff: chrome/test/BUILD.gn

Issue 2487283002: Adding isolate script targets for all remaining C++ perf tests. (Closed)
Patch Set: Correct formattting in GN file Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | components/tracing/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 +=
« no previous file with comments | « BUILD.gn ('k') | components/tracing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698