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

Unified Diff: blimp/client/core/render_widget/BUILD.gn

Issue 2382733007: Add BlimpDocument, pull out functions in BlimpCompositor. (Closed)
Patch Set: Remove Webkit DEPS modification. Created 4 years, 2 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
« no previous file with comments | « blimp/client/core/feedback/blimp_feedback_data.cc ('k') | blimp/client/core/render_widget/blimp_document.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/client/core/render_widget/BUILD.gn
diff --git a/blimp/client/core/render_widget/BUILD.gn b/blimp/client/core/render_widget/BUILD.gn
index 34ec7207176f22c223515d154757211777277cdd..2448725bbf9a7bd45d4b2b2794442fe7f0af80cb 100644
--- a/blimp/client/core/render_widget/BUILD.gn
+++ b/blimp/client/core/render_widget/BUILD.gn
@@ -6,6 +6,10 @@ source_set("render_widget") {
visibility = [ "//blimp/client/*" ]
sources = [
+ "blimp_document.cc",
+ "blimp_document.h",
+ "blimp_document_manager.cc",
+ "blimp_document_manager.h",
"render_widget_feature.cc",
"render_widget_feature.h",
]
@@ -18,6 +22,7 @@ source_set("render_widget") {
public_deps = [
"//base",
+ "//blimp/client/core/compositor",
"//blimp/net",
]
}
@@ -26,6 +31,8 @@ source_set("test_support") {
testonly = true
sources = [
+ "mock_render_widget_feature.cc",
+ "mock_render_widget_feature.h",
"mock_render_widget_feature_delegate.cc",
"mock_render_widget_feature_delegate.h",
]
@@ -34,6 +41,10 @@ source_set("test_support") {
":render_widget",
"//testing/gmock",
]
+
+ deps = [
+ "//cc/proto",
+ ]
}
source_set("unit_tests") {
@@ -42,6 +53,8 @@ source_set("unit_tests") {
testonly = true
sources = [
+ "blimp_document_manager_unittest.cc",
+ "blimp_document_unittest.cc",
"render_widget_feature_unittest.cc",
]
@@ -49,9 +62,11 @@ source_set("unit_tests") {
":render_widget",
":test_support",
"//base",
+ "//blimp/client/test/compositor",
"//blimp/common",
"//blimp/net:test_support",
"//cc/proto",
+ "//cc/surfaces",
"//net",
"//net:test_support",
"//testing/gtest",
« no previous file with comments | « blimp/client/core/feedback/blimp_feedback_data.cc ('k') | blimp/client/core/render_widget/blimp_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698