aboutsummaryrefslogtreecommitdiff
path: root/src/base/http/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'src/base/http/BUILD.gn')
-rw-r--r--src/base/http/BUILD.gn11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/base/http/BUILD.gn b/src/base/http/BUILD.gn
index e0861347c..dda19a743 100644
--- a/src/base/http/BUILD.gn
+++ b/src/base/http/BUILD.gn
@@ -40,8 +40,11 @@ perfetto_unittest_source_set("unittests") {
"../../../gn:default_deps",
"../../../gn:gtest_and_gmock",
]
- sources = [
- "http_server_unittest.cc",
- "sha1_unittest.cc",
- ]
+ sources = [ "sha1_unittest.cc" ]
+
+ # The HTTP server unittests cannot be run in parallel. Chromium runs tests
+ # in parallel on some bots so exclude all of these ones.
+ if (!build_with_chromium) {
+ sources += [ "http_server_unittest.cc" ]
+ }
}