summaryrefslogtreecommitdiff
path: root/chromium/testing/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/testing/BUILD.gn')
-rw-r--r--chromium/testing/BUILD.gn30
1 files changed, 30 insertions, 0 deletions
diff --git a/chromium/testing/BUILD.gn b/chromium/testing/BUILD.gn
index fc50637493a..1477b17320e 100644
--- a/chromium/testing/BUILD.gn
+++ b/chromium/testing/BUILD.gn
@@ -11,3 +11,33 @@ source_set("gmock_mutant") {
"//base",
]
}
+
+# Used by linux-gcc-rel to ensure gcc doesn't choke on clang-only flags.
+executable("empty_main") {
+ sources = [
+ "empty_main.cc",
+ ]
+ deps = [
+ "//build/config:exe_and_shlib_deps",
+ ]
+}
+
+# Targets needed for isolate script to execute.
+group("test_scripts_shared") {
+ data = [
+ "//testing/test_env.py",
+ "//testing/xvfb.py",
+ ]
+}
+
+group("run_gtest_perf_test") {
+ data = [
+ "//testing/scripts/common.py",
+ "//testing/scripts/run_gtest_perf_test.py",
+ "//tools/perf/generate_legacy_perf_dashboard_json.py",
+ ]
+
+ data_deps = [
+ ":test_scripts_shared",
+ ]
+}