OLD | NEW |
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 component("surfaces") { | 5 component("surfaces") { |
6 output_name = "cc_surfaces" | 6 output_name = "cc_surfaces" |
7 sources = [ | 7 sources = [ |
8 "display.cc", | 8 "display.cc", |
9 "display.h", | 9 "display.h", |
10 "display_client.h", | 10 "display_client.h", |
| 11 "display_scheduler.cc", |
| 12 "display_scheduler.h", |
11 "surface.cc", | 13 "surface.cc", |
12 "surface.h", | 14 "surface.h", |
13 "surface_aggregator.cc", | 15 "surface_aggregator.cc", |
14 "surface_aggregator.h", | 16 "surface_aggregator.h", |
15 "surface_factory.cc", | 17 "surface_factory.cc", |
16 "surface_factory.h", | 18 "surface_factory.h", |
17 "surface_factory_client.h", | 19 "surface_factory_client.h", |
18 "surface_id.h", | 20 "surface_id.h", |
19 "surface_id_allocator.cc", | 21 "surface_id_allocator.cc", |
20 "surface_id_allocator.h", | 22 "surface_id_allocator.h", |
(...skipping 15 matching lines...) Expand all Loading... |
36 "//ui/gfx", | 38 "//ui/gfx", |
37 "//ui/gfx/geometry", | 39 "//ui/gfx/geometry", |
38 ] | 40 ] |
39 | 41 |
40 if (is_android && !is_debug) { | 42 if (is_android && !is_debug) { |
41 configs -= [ "//build/config/compiler:optimize" ] | 43 configs -= [ "//build/config/compiler:optimize" ] |
42 configs += [ "//build/config/compiler:optimize_max" ] | 44 configs += [ "//build/config/compiler:optimize_max" ] |
43 } | 45 } |
44 } | 46 } |
45 | 47 |
OLD | NEW |