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

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

Issue 2266863003: blimp: Move BlimpCompositor to use delegated rendering. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed comments + tests. Created 4 years, 4 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/client/core/compositor/BUILD.gn
diff --git a/blimp/client/core/compositor/BUILD.gn b/blimp/client/core/compositor/BUILD.gn
index 07a13e856aefdcae308b4523345ac2d758b75706..d094b7957c0f62bfda50c5efaaa3d1411f884fd1 100644
--- a/blimp/client/core/compositor/BUILD.gn
+++ b/blimp/client/core/compositor/BUILD.gn
@@ -30,6 +30,19 @@ source_set("compositor") {
]
}
+source_set("compositor_support") {
David Trainor- moved to gerrit 2016/08/24 23:09:33 Can we remove this and put these in the "composito
Khushal 2016/08/25 02:35:38 Done.
+ sources = [
+ "blimp_output_surface.h",
+ "delegated_output_surface.cc",
+ "delegated_output_surface.h",
+ ]
+
+ public_deps = [
+ "//base",
+ "//cc",
+ ]
+}
+
source_set("unit_tests") {
visibility = [ "//blimp/client/core:unit_tests" ]
@@ -37,11 +50,14 @@ source_set("unit_tests") {
sources = [
"blimp_client_picture_cache_unittest.cc",
+ "delegated_output_surface_unittest.cc",
]
deps = [
":compositor",
+ ":compositor_support",
"//blimp/test:support",
+ "//cc:test_support",
"//skia",
"//testing/gtest",
]

Powered by Google App Engine
This is Rietveld 408576698