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

Side by Side Diff: cc/surfaces/BUILD.gn

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: rebase Created 4 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("surface_id") { 5 source_set("surface_id") {
6 sources = [ 6 sources = [
7 "surface_id.h", 7 "surface_id.h",
8 "surface_sequence.h", 8 "surface_sequence.h",
9 ] 9 ]
10 10
11 deps = [ 11 deps = [
12 "//base", 12 "//base",
13 ] 13 ]
14 } 14 }
15 15
16 component("surfaces") { 16 component("surfaces") {
17 output_name = "cc_surfaces" 17 output_name = "cc_surfaces"
18 sources = [ 18 sources = [
19 "direct_compositor_frame_sink.cc",
20 "direct_compositor_frame_sink.h",
19 "display.cc", 21 "display.cc",
20 "display.h", 22 "display.h",
21 "display_client.h", 23 "display_client.h",
22 "display_scheduler.cc", 24 "display_scheduler.cc",
23 "display_scheduler.h", 25 "display_scheduler.h",
24 "surface.cc", 26 "surface.cc",
25 "surface.h", 27 "surface.h",
26 "surface_aggregator.cc", 28 "surface_aggregator.cc",
27 "surface_aggregator.h", 29 "surface_aggregator.h",
28 "surface_display_output_surface.cc",
29 "surface_display_output_surface.h",
30 "surface_factory.cc", 30 "surface_factory.cc",
31 "surface_factory.h", 31 "surface_factory.h",
32 "surface_factory_client.h", 32 "surface_factory_client.h",
33 "surface_hittest.cc", 33 "surface_hittest.cc",
34 "surface_hittest.h", 34 "surface_hittest.h",
35 "surface_hittest_delegate.h", 35 "surface_hittest_delegate.h",
36 "surface_id_allocator.cc", 36 "surface_id_allocator.cc",
37 "surface_id_allocator.h", 37 "surface_id_allocator.h",
38 "surface_manager.cc", 38 "surface_manager.cc",
39 "surface_manager.h", 39 "surface_manager.h",
(...skipping 18 matching lines...) Expand all
58 "//ui/events:events_base", 58 "//ui/events:events_base",
59 "//ui/gfx", 59 "//ui/gfx",
60 "//ui/gfx/geometry", 60 "//ui/gfx/geometry",
61 ] 61 ]
62 62
63 if (is_android && !is_debug) { 63 if (is_android && !is_debug) {
64 configs -= [ "//build/config/compiler:default_optimization" ] 64 configs -= [ "//build/config/compiler:default_optimization" ]
65 configs += [ "//build/config/compiler:optimize_max" ] 65 configs += [ "//build/config/compiler:optimize_max" ]
66 } 66 }
67 } 67 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698