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 "chromeos/display_mode.cc", | 8 "chromeos/display_mode.cc", |
9 "chromeos/display_mode.h", | 9 "chromeos/display_mode.h", |
10 "chromeos/display_snapshot.cc", | 10 "chromeos/display_snapshot.cc", |
11 "chromeos/display_snapshot.h", | 11 "chromeos/display_snapshot.h", |
12 "chromeos/native_display_delegate.h", | 12 "chromeos/native_display_delegate.h", |
13 "chromeos/native_display_observer.h", | 13 "chromeos/native_display_observer.h", |
14 "chromeos/touchscreen_device.cc", | |
15 "chromeos/touchscreen_device.h", | |
16 "chromeos/touchscreen_device_manager.h", | |
17 "display_constants.h", | 14 "display_constants.h", |
18 "display_types_export.h", | 15 "display_types_export.h", |
19 ] | 16 ] |
20 | 17 |
21 defines = [ "DISPLAY_TYPES_IMPLEMENTATION" ] | 18 defines = [ "DISPLAY_TYPES_IMPLEMENTATION" ] |
22 | 19 |
23 deps = [ | 20 deps = [ |
24 "//base", | 21 "//base", |
25 "//ui/gfx/geometry", | 22 "//ui/gfx/geometry", |
26 ] | 23 ] |
27 } | 24 } |
OLD | NEW |