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 { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 ], | 42 ], |
43 'defines': [ | 43 'defines': [ |
44 'DISPLAY_IMPLEMENTATION', | 44 'DISPLAY_IMPLEMENTATION', |
45 ], | 45 ], |
46 'sources': [ | 46 'sources': [ |
47 # Note: file list duplicated in GN build. | 47 # Note: file list duplicated in GN build. |
48 'chromeos/configure_displays_task.cc', | 48 'chromeos/configure_displays_task.cc', |
49 'chromeos/configure_displays_task.h', | 49 'chromeos/configure_displays_task.h', |
50 'chromeos/display_configurator.cc', | 50 'chromeos/display_configurator.cc', |
51 'chromeos/display_configurator.h', | 51 'chromeos/display_configurator.h', |
| 52 'chromeos/display_util.cc', |
| 53 'chromeos/display_util.h', |
52 'chromeos/ozone/display_configurator_ozone.cc', | 54 'chromeos/ozone/display_configurator_ozone.cc', |
| 55 'chromeos/update_display_configuration_task.cc', |
| 56 'chromeos/update_display_configuration_task.h', |
53 'chromeos/x11/display_configurator_x11.cc', | 57 'chromeos/x11/display_configurator_x11.cc', |
54 'chromeos/x11/display_mode_x11.cc', | 58 'chromeos/x11/display_mode_x11.cc', |
55 'chromeos/x11/display_mode_x11.h', | 59 'chromeos/x11/display_mode_x11.h', |
56 'chromeos/x11/display_snapshot_x11.cc', | 60 'chromeos/x11/display_snapshot_x11.cc', |
57 'chromeos/x11/display_snapshot_x11.h', | 61 'chromeos/x11/display_snapshot_x11.h', |
58 'chromeos/x11/display_util_x11.cc', | 62 'chromeos/x11/display_util_x11.cc', |
59 'chromeos/x11/display_util_x11.h', | 63 'chromeos/x11/display_util_x11.h', |
60 'chromeos/x11/native_display_delegate_x11.cc', | 64 'chromeos/x11/native_display_delegate_x11.cc', |
61 'chromeos/x11/native_display_delegate_x11.h', | 65 'chromeos/x11/native_display_delegate_x11.h', |
62 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 66 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 '../../testing/gtest.gyp:gtest', | 180 '../../testing/gtest.gyp:gtest', |
177 '../../ui/gfx/gfx.gyp:gfx_geometry', | 181 '../../ui/gfx/gfx.gyp:gfx_geometry', |
178 'display_util', | 182 'display_util', |
179 ], | 183 ], |
180 'include_dirs': [ | 184 'include_dirs': [ |
181 '../..', | 185 '../..', |
182 ], | 186 ], |
183 'sources': [ | 187 'sources': [ |
184 'chromeos/configure_displays_task_unittest.cc', | 188 'chromeos/configure_displays_task_unittest.cc', |
185 'chromeos/display_configurator_unittest.cc', | 189 'chromeos/display_configurator_unittest.cc', |
| 190 'chromeos/update_display_configuration_task_unittest.cc', |
186 'chromeos/x11/display_util_x11_unittest.cc', | 191 'chromeos/x11/display_util_x11_unittest.cc', |
187 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc', | 192 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc', |
188 'util/display_util_unittest.cc', | 193 'util/display_util_unittest.cc', |
189 'util/edid_parser_unittest.cc', | 194 'util/edid_parser_unittest.cc', |
190 ], | 195 ], |
191 'conditions': [ | 196 'conditions': [ |
192 ['chromeos == 1', { | 197 ['chromeos == 1', { |
193 'dependencies': [ | 198 'dependencies': [ |
194 'display', | 199 'display', |
195 'display_test_support', | 200 'display_test_support', |
196 'display_test_util', | 201 'display_test_util', |
197 'display_types', | 202 'display_types', |
198 ], | 203 ], |
199 }], | 204 }], |
200 ], | 205 ], |
201 }, | 206 }, |
202 ], | 207 ], |
203 } | 208 } |
OLD | NEW |