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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("compositor") { 5 source_set("compositor") {
6 visibility = [ "//blimp/client/*" ] 6 visibility = [ "//blimp/client/*" ]
7 7
8 sources = [ 8 sources = [
9 "blimp_client_picture_cache.cc", 9 "blimp_client_picture_cache.cc",
10 "blimp_client_picture_cache.h", 10 "blimp_client_picture_cache.h",
(...skipping 12 matching lines...) Expand all
23 23
24 public_deps = [ 24 public_deps = [
25 "//base", 25 "//base",
26 "//blimp/common", 26 "//blimp/common",
27 "//blimp/common/proto", 27 "//blimp/common/proto",
28 "//cc", 28 "//cc",
29 "//skia", 29 "//skia",
30 ] 30 ]
31 } 31 }
32 32
33 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.
34 sources = [
35 "blimp_output_surface.h",
36 "delegated_output_surface.cc",
37 "delegated_output_surface.h",
38 ]
39
40 public_deps = [
41 "//base",
42 "//cc",
43 ]
44 }
45
33 source_set("unit_tests") { 46 source_set("unit_tests") {
34 visibility = [ "//blimp/client/core:unit_tests" ] 47 visibility = [ "//blimp/client/core:unit_tests" ]
35 48
36 testonly = true 49 testonly = true
37 50
38 sources = [ 51 sources = [
39 "blimp_client_picture_cache_unittest.cc", 52 "blimp_client_picture_cache_unittest.cc",
53 "delegated_output_surface_unittest.cc",
40 ] 54 ]
41 55
42 deps = [ 56 deps = [
43 ":compositor", 57 ":compositor",
58 ":compositor_support",
44 "//blimp/test:support", 59 "//blimp/test:support",
60 "//cc:test_support",
45 "//skia", 61 "//skia",
46 "//testing/gtest", 62 "//testing/gtest",
47 ] 63 ]
48 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698