Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Side by Side Diff: ui/display/display.gyp

Issue 788423002: Add display task to trigger display configuration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@async-refactor3
Patch Set: Remove include in favour of forward declare Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « ui/display/chromeos/x11/native_display_delegate_x11.cc ('k') | ui/display/types/native_display_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698