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

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

Issue 2411793008: Adds BeginFrameControl via DevTools.
Patch Set: BFC prototype v2 with allow_latency_opts and waiting for BFOs. Created 4 years 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 | « cc/scheduler/scheduler_state_machine.cc ('k') | cc/surfaces/display.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 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 "frame_sink_id.h", 7 "frame_sink_id.h",
8 "local_frame_id.h", 8 "local_frame_id.h",
9 "surface_id.h", 9 "surface_id.h",
10 "surface_sequence.h", 10 "surface_sequence.h",
11 "surface_sequence_generator.cc", 11 "surface_sequence_generator.cc",
12 "surface_sequence_generator.h", 12 "surface_sequence_generator.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//base", 16 "//base",
17 ] 17 ]
18 } 18 }
19 19
20 component("surfaces") { 20 component("surfaces") {
21 output_name = "cc_surfaces" 21 output_name = "cc_surfaces"
22 sources = [ 22 sources = [
23 "direct_compositor_frame_sink.cc", 23 "direct_compositor_frame_sink.cc",
24 "direct_compositor_frame_sink.h", 24 "direct_compositor_frame_sink.h",
25 "display.cc", 25 "display.cc",
26 "display.h", 26 "display.h",
27 "display_begin_frame_source.cc",
28 "display_begin_frame_source.h",
27 "display_client.h", 29 "display_client.h",
28 "display_scheduler.cc", 30 "display_scheduler.cc",
29 "display_scheduler.h", 31 "display_scheduler.h",
30 "surface.cc", 32 "surface.cc",
31 "surface.h", 33 "surface.h",
32 "surface_aggregator.cc", 34 "surface_aggregator.cc",
33 "surface_aggregator.h", 35 "surface_aggregator.h",
34 "surface_factory.cc", 36 "surface_factory.cc",
35 "surface_factory.h", 37 "surface_factory.h",
36 "surface_factory_client.h", 38 "surface_factory_client.h",
(...skipping 24 matching lines...) Expand all
61 "//ui/events:events_base", 63 "//ui/events:events_base",
62 "//ui/gfx", 64 "//ui/gfx",
63 "//ui/gfx/geometry", 65 "//ui/gfx/geometry",
64 ] 66 ]
65 67
66 if (is_android && !is_debug) { 68 if (is_android && !is_debug) {
67 configs -= [ "//build/config/compiler:default_optimization" ] 69 configs -= [ "//build/config/compiler:default_optimization" ]
68 configs += [ "//build/config/compiler:optimize_max" ] 70 configs += [ "//build/config/compiler:optimize_max" ]
69 } 71 }
70 } 72 }
OLDNEW
« no previous file with comments | « cc/scheduler/scheduler_state_machine.cc ('k') | cc/surfaces/display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698