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

Unified Diff: blimp/engine/browser/BUILD.gn

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Fix build break Created 5 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 | « blimp/engine/DEPS ('k') | blimp/engine/browser/blimp_engine_session.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/engine/browser/BUILD.gn
diff --git a/blimp/engine/browser/BUILD.gn b/blimp/engine/browser/BUILD.gn
index a4ce000d104de5d22fb1425c3c09123bd5a1457c..9524816730b051284ef1fd28be7dad0615285660 100644
--- a/blimp/engine/browser/BUILD.gn
+++ b/blimp/engine/browser/BUILD.gn
@@ -18,6 +18,8 @@ source_set("browser") {
"blimp_permission_manager.h",
"blimp_url_request_context_getter.cc",
"blimp_url_request_context_getter.h",
+ "engine_render_widget_message_processor.cc",
+ "engine_render_widget_message_processor.h",
]
deps = [
@@ -36,3 +38,23 @@ source_set("browser") {
"//ui/wm",
]
}
+
+source_set("unit_tests") {
+ testonly = true
+
+ sources = [
+ "engine_render_widget_message_processor_unittest.cc",
+ ]
+
+ deps = [
+ ":browser",
+ "//base",
+ "//base/test:run_all_unittests",
+ "//base/test:test_support",
+ "//blimp/common/proto",
+ "//blimp/engine/common",
+ "//blimp/net:blimp_net",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « blimp/engine/DEPS ('k') | blimp/engine/browser/blimp_engine_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698