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

Unified Diff: blimp/BUILD.gn

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Address gcasto comments 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 | « no previous file | blimp/client/app/android/blimp_client_session_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « no previous file | blimp/client/app/android/blimp_client_session_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698