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("types") { | 5 component("types") { |
6 output_name = "display_types" | 6 output_name = "display_types" |
7 sources = [ | 7 sources = [ |
8 "display_constants.h", | 8 "display_constants.h", |
9 "display_mode.cc", | 9 "display_mode.cc", |
10 "display_mode.h", | 10 "display_mode.h", |
11 "display_snapshot.cc", | 11 "display_snapshot.cc", |
12 "display_snapshot.h", | 12 "display_snapshot.h", |
| 13 "display_snapshot_mojo.cc", |
| 14 "display_snapshot_mojo.h", |
13 "display_types_export.h", | 15 "display_types_export.h", |
14 "fake_display_controller.h", | 16 "fake_display_controller.h", |
15 "gamma_ramp_rgb_entry.h", | 17 "gamma_ramp_rgb_entry.h", |
16 "native_display_delegate.cc", | 18 "native_display_delegate.cc", |
17 "native_display_delegate.h", | 19 "native_display_delegate.h", |
18 "native_display_observer.h", | 20 "native_display_observer.h", |
19 ] | 21 ] |
20 | 22 |
21 defines = [ "DISPLAY_TYPES_IMPLEMENTATION" ] | 23 defines = [ "DISPLAY_TYPES_IMPLEMENTATION" ] |
22 | 24 |
23 deps = [ | 25 deps = [ |
24 "//base", | 26 "//base", |
25 "//ui/gfx:memory_buffer", | 27 "//ui/gfx:memory_buffer", |
26 "//ui/gfx/geometry", | 28 "//ui/gfx/geometry", |
27 ] | 29 ] |
28 } | 30 } |
OLD | NEW |