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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
11 # GN version: //ui/display/types | 11 # GN version: //ui/display/types |
12 'target_name': 'display_types', | 12 'target_name': 'display_types', |
13 'type': '<(component)', | 13 'type': '<(component)', |
14 'dependencies': [ | 14 'dependencies': [ |
15 '../../base/base.gyp:base', | 15 '../../base/base.gyp:base', |
16 '../../ui/gfx/gfx.gyp:gfx_geometry', | 16 '../../ui/gfx/gfx.gyp:gfx_geometry', |
17 ], | 17 ], |
18 'defines': [ | 18 'defines': [ |
19 'DISPLAY_TYPES_IMPLEMENTATION', | 19 'DISPLAY_TYPES_IMPLEMENTATION', |
20 ], | 20 ], |
21 'sources': [ | 21 'sources': [ |
22 # Note: file list duplicated in GN build. | 22 # Note: file list duplicated in GN build. |
23 'types/chromeos/display_mode.cc', | 23 'types/chromeos/display_mode.cc', |
24 'types/chromeos/display_mode.h', | 24 'types/chromeos/display_mode.h', |
25 'types/chromeos/display_snapshot.cc', | 25 'types/chromeos/display_snapshot.cc', |
26 'types/chromeos/display_snapshot.h', | 26 'types/chromeos/display_snapshot.h', |
27 'types/chromeos/native_display_delegate.h', | 27 'types/chromeos/native_display_delegate.h', |
28 'types/chromeos/native_display_observer.h', | 28 'types/chromeos/native_display_observer.h', |
29 'types/chromeos/touchscreen_device.cc', | |
30 'types/chromeos/touchscreen_device.h', | |
31 'types/chromeos/touchscreen_device_manager.h', | |
32 'types/display_constants.h', | 29 'types/display_constants.h', |
33 'types/display_types_export.h', | 30 'types/display_types_export.h', |
34 ], | 31 ], |
35 }, | 32 }, |
36 { | 33 { |
37 # GN version: //ui/display | 34 # GN version: //ui/display |
38 'target_name': 'display', | 35 'target_name': 'display', |
39 'type': '<(component)', | 36 'type': '<(component)', |
40 'dependencies': [ | 37 'dependencies': [ |
41 '../../base/base.gyp:base', | 38 '../../base/base.gyp:base', |
(...skipping 15 matching lines...) Expand all Loading... |
57 'chromeos/x11/display_mode_x11.cc', | 54 'chromeos/x11/display_mode_x11.cc', |
58 'chromeos/x11/display_mode_x11.h', | 55 'chromeos/x11/display_mode_x11.h', |
59 'chromeos/x11/display_snapshot_x11.cc', | 56 'chromeos/x11/display_snapshot_x11.cc', |
60 'chromeos/x11/display_snapshot_x11.h', | 57 'chromeos/x11/display_snapshot_x11.h', |
61 'chromeos/x11/display_util_x11.cc', | 58 'chromeos/x11/display_util_x11.cc', |
62 'chromeos/x11/display_util_x11.h', | 59 'chromeos/x11/display_util_x11.h', |
63 'chromeos/x11/native_display_delegate_x11.cc', | 60 'chromeos/x11/native_display_delegate_x11.cc', |
64 'chromeos/x11/native_display_delegate_x11.h', | 61 'chromeos/x11/native_display_delegate_x11.h', |
65 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 62 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
66 'chromeos/x11/native_display_event_dispatcher_x11.h', | 63 'chromeos/x11/native_display_event_dispatcher_x11.h', |
67 'chromeos/x11/touchscreen_device_manager_x11.cc', | |
68 'chromeos/x11/touchscreen_device_manager_x11.h', | |
69 'display_export.h', | 64 'display_export.h', |
70 'display_switches.cc', | 65 'display_switches.cc', |
71 'display_switches.h', | 66 'display_switches.h', |
72 ], | 67 ], |
73 'conditions': [ | 68 'conditions': [ |
74 ['use_x11 == 1', { | 69 ['use_x11 == 1', { |
75 'dependencies': [ | 70 'dependencies': [ |
76 '../../build/linux/system.gyp:x11', | 71 '../../build/linux/system.gyp:x11', |
77 '../../build/linux/system.gyp:xext', | 72 '../../build/linux/system.gyp:xext', |
78 '../../build/linux/system.gyp:xi', | 73 '../../build/linux/system.gyp:xi', |
79 '../../build/linux/system.gyp:xrandr', | 74 '../../build/linux/system.gyp:xrandr', |
| 75 '../../ui/events/events.gyp:events_base', |
80 '../../ui/events/platform/events_platform.gyp:events_platform', | 76 '../../ui/events/platform/events_platform.gyp:events_platform', |
81 ], | 77 ], |
82 }], | 78 }], |
83 ['chromeos == 1', { | 79 ['chromeos == 1', { |
84 'dependencies': [ | 80 'dependencies': [ |
85 'display_types', | 81 'display_types', |
86 ], | 82 ], |
87 }], | 83 }], |
88 ['use_ozone == 1', { | 84 ['use_ozone == 1', { |
89 'dependencies': [ | 85 'dependencies': [ |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
172 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc', | 168 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc', |
173 'util/display_util_unittest.cc', | 169 'util/display_util_unittest.cc', |
174 'util/edid_parser_unittest.cc', | 170 'util/edid_parser_unittest.cc', |
175 ], | 171 ], |
176 'conditions': [ | 172 'conditions': [ |
177 ['chromeos == 1', { | 173 ['chromeos == 1', { |
178 'dependencies': [ | 174 'dependencies': [ |
179 'display', | 175 'display', |
180 'display_test_util', | 176 'display_test_util', |
181 'display_types', | 177 'display_types', |
| 178 '../../ui/events/events.gyp:events_base', |
182 ], | 179 ], |
183 }], | 180 }], |
184 ], | 181 ], |
185 }, | 182 }, |
186 ], | 183 ], |
187 } | 184 } |
OLD | NEW |