Index: blimp/BUILD.gn |
diff --git a/blimp/BUILD.gn b/blimp/BUILD.gn |
index 03ca1ae9d85bc0f151a6a7026558924d0de8e09d..b69544def4a643bd3d95c594d3d19a2da21cdb00 100644 |
--- a/blimp/BUILD.gn |
+++ b/blimp/BUILD.gn |
@@ -42,7 +42,8 @@ group("blimp_tests") { |
if (is_linux) { |
deps += [ |
- ":blimp_browsertests", |
+ ":blimp_browsertests_grpc", |
+ ":blimp_browsertests_tcp", |
"//blimp/test/fake_engine:fake_engine_app_tests", |
] |
} |
@@ -67,9 +68,19 @@ test("blimp_unittests") { |
} |
if (is_linux) { |
- test("blimp_browsertests") { |
+ test("blimp_browsertests_grpc") { |
deps = [ |
- "//blimp/engine:browser_tests", |
+ "//blimp/engine:browser_tests_grpc", |
+ "//tools/xdisplaycheck", |
+ ] |
+ data = [ |
+ "test/data/", |
+ ] |
+ } |
+ |
+ test("blimp_browsertests_tcp") { |
+ deps = [ |
+ "//blimp/engine:browser_tests_tcp", |
"//tools/xdisplaycheck", |
] |
data = [ |
@@ -95,7 +106,8 @@ if (is_linux) { |
# "data_deps". Otherwise, GN assumes that the executable (and |
# everything it requires) is a build-time dependency only. |
data_deps = [ |
- ":blimp_browsertests", |
+ ":blimp_browsertests_grpc", |
+ ":blimp_browsertests_tcp", |
":blimp_unittests", |
"//base:base_unittests", |
"//breakpad:generate_test_dump", |