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

Side by Side Diff: blimp/client/core/compositor/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 unified diff | Download patch
« no previous file with comments | « blimp/client/app/android/blimp_view.cc ('k') | blimp/client/core/compositor/blimp_compositor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
11 "blimp_compositor.cc", 11 "blimp_compositor.cc",
12 "blimp_compositor.h", 12 "blimp_compositor.h",
13 "blimp_compositor_dependencies.cc", 13 "blimp_compositor_dependencies.cc",
14 "blimp_compositor_dependencies.h", 14 "blimp_compositor_dependencies.h",
15 "blimp_compositor_frame_sink.cc", 15 "blimp_compositor_frame_sink.cc",
16 "blimp_compositor_frame_sink.h", 16 "blimp_compositor_frame_sink.h",
17 "blimp_compositor_frame_sink_proxy.h", 17 "blimp_compositor_frame_sink_proxy.h",
18 "blimp_compositor_manager.cc",
19 "blimp_compositor_manager.h",
20 "blimp_image_decoder.cc", 18 "blimp_image_decoder.cc",
21 "blimp_image_decoder.h", 19 "blimp_image_decoder.h",
22 "blob_channel_feature.cc", 20 "blob_channel_feature.cc",
23 "blob_channel_feature.h", 21 "blob_channel_feature.h",
24 "blob_image_serialization_processor.cc", 22 "blob_image_serialization_processor.cc",
25 "blob_image_serialization_processor.h", 23 "blob_image_serialization_processor.h",
26 "decoding_image_generator.cc", 24 "decoding_image_generator.cc",
27 "decoding_image_generator.h", 25 "decoding_image_generator.h",
28 ] 26 ]
29 27
30 deps = [ 28 deps = [
31 "//blimp/client/public:public_headers", 29 "//blimp/client/public:public_headers",
32 "//blimp/client/support/compositor", 30 "//blimp/client/support/compositor",
33 "//blimp/net", 31 "//blimp/net",
34 "//cc/proto", 32 "//cc/proto",
35 "//cc/surfaces", 33 "//cc/surfaces",
36 "//gpu/command_buffer/client", 34 "//gpu/command_buffer/client",
37 "//third_party/libwebp", 35 "//third_party/libwebp",
38 "//ui/gl:gl", 36 "//ui/gl:gl",
39 ] 37 ]
40 38
41 public_deps = [ 39 public_deps = [
42 "//base", 40 "//base",
43 "//blimp/client/core/input", 41 "//blimp/client/core/input",
44 "//blimp/client/core/render_widget",
45 "//blimp/common", 42 "//blimp/common",
46 "//blimp/common/proto", 43 "//blimp/common/proto",
47 "//cc", 44 "//cc",
48 "//skia", 45 "//skia",
49 ] 46 ]
50 } 47 }
51 48
52 source_set("unit_tests") { 49 source_set("unit_tests") {
53 visibility = [ "//blimp/client/core:unit_tests" ] 50 visibility = [ "//blimp/client/core:unit_tests" ]
54 51
55 testonly = true 52 testonly = true
56 53
57 sources = [ 54 sources = [
58 "blimp_client_picture_cache_unittest.cc", 55 "blimp_client_picture_cache_unittest.cc",
59 "blimp_compositor_frame_sink_unittest.cc", 56 "blimp_compositor_frame_sink_unittest.cc",
60 "blimp_compositor_manager_unittest.cc",
61 "blimp_compositor_unittest.cc", 57 "blimp_compositor_unittest.cc",
62 "blob_channel_feature_unittest.cc", 58 "blob_channel_feature_unittest.cc",
63 ] 59 ]
64 60
65 deps = [ 61 deps = [
66 ":compositor", 62 ":compositor",
67 "//base", 63 "//base",
68 "//blimp/client/core/render_widget",
69 "//blimp/client/core/render_widget:test_support",
70 "//blimp/client/support", 64 "//blimp/client/support",
71 "//blimp/client/test", 65 "//blimp/client/test",
72 "//blimp/test:support", 66 "//blimp/test:support",
73 "//cc", 67 "//cc",
74 "//cc:test_support", 68 "//cc:test_support",
75 "//cc/proto", 69 "//cc/proto",
76 "//cc/surfaces", 70 "//cc/surfaces",
77 "//skia", 71 "//skia",
78 "//testing/gtest", 72 "//testing/gtest",
79 "//ui/events:gesture_detection", 73 "//ui/events:gesture_detection",
80 ] 74 ]
81 } 75 }
OLDNEW
« no previous file with comments | « blimp/client/app/android/blimp_view.cc ('k') | blimp/client/core/compositor/blimp_compositor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698