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

Unified Diff: blimp/engine/BUILD.gn

Issue 2033013003: Use shared memory for moving data over BlobChannel Mojo interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blobchannel-master
Patch Set: dcheng feedback Created 4 years, 6 months 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
Index: blimp/engine/BUILD.gn
diff --git a/blimp/engine/BUILD.gn b/blimp/engine/BUILD.gn
index 32b2b5adcf350e1a4608034c4eff87975dfb6d86..88903769060d008be9057b48babc6d7fd5f3fb42 100644
--- a/blimp/engine/BUILD.gn
+++ b/blimp/engine/BUILD.gn
@@ -396,7 +396,6 @@ source_set("app_unit_tests") {
":app_net",
":app_settings",
"//base",
- "//base/test:run_all_unittests",
"//base/test:test_support",
"//blimp/common",
"//blimp/common:test_support",
@@ -424,7 +423,6 @@ source_set("common_unit_tests") {
deps = [
":common",
"//base",
- "//base/test:run_all_unittests",
"//base/test:test_support",
"//components/metrics:metrics",
"//content/public/browser",
@@ -446,7 +444,6 @@ source_set("feature_unit_tests") {
deps = [
":feature",
"//base",
- "//base/test:run_all_unittests",
"//base/test:test_support",
"//blimp/common",
"//blimp/common/proto",
@@ -464,6 +461,27 @@ source_set("feature_unit_tests") {
]
}
+source_set("renderer_unit_tests") {
+ testonly = true
+
+ sources = [
+ "renderer/blob_channel_sender_proxy_unittest.cc",
+ ]
+
+ deps = [
+ ":renderer",
+ "//base",
+ "//blimp/common",
+ "//blimp/common:test_support",
+ "//blimp/engine:blob_channel_mojo_cpp_sources",
+ "//blimp/engine:blob_channel_service",
+ "//blimp/net:test_support",
+ "//mojo/public",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
+
source_set("unit_tests") {
testonly = true
@@ -471,6 +489,7 @@ source_set("unit_tests") {
":app_unit_tests",
":common_unit_tests",
":feature_unit_tests",
+ ":renderer_unit_tests",
]
}

Powered by Google App Engine
This is Rietveld 408576698