| 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 29 matching lines...) Expand all Loading... |
| 40 '../../ui/gfx/gfx.gyp:gfx_geometry', | 40 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 41 'display_util', | 41 'display_util', |
| 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/display_configurator.cc', | 48 'chromeos/display_configurator.cc', |
| 49 'chromeos/display_configurator.h', | 49 'chromeos/display_configurator.h', |
| 50 'chromeos/ozone/display_configurator_ozone.cc', | |
| 51 'chromeos/x11/display_configurator_x11.cc', | 50 'chromeos/x11/display_configurator_x11.cc', |
| 52 'chromeos/x11/display_mode_x11.cc', | 51 'chromeos/x11/display_mode_x11.cc', |
| 53 'chromeos/x11/display_mode_x11.h', | 52 'chromeos/x11/display_mode_x11.h', |
| 54 'chromeos/x11/display_snapshot_x11.cc', | 53 'chromeos/x11/display_snapshot_x11.cc', |
| 55 'chromeos/x11/display_snapshot_x11.h', | 54 'chromeos/x11/display_snapshot_x11.h', |
| 56 'chromeos/x11/display_util_x11.cc', | 55 'chromeos/x11/display_util_x11.cc', |
| 57 'chromeos/x11/display_util_x11.h', | 56 'chromeos/x11/display_util_x11.h', |
| 58 'chromeos/x11/native_display_delegate_x11.cc', | 57 'chromeos/x11/native_display_delegate_x11.cc', |
| 59 'chromeos/x11/native_display_delegate_x11.h', | 58 'chromeos/x11/native_display_delegate_x11.h', |
| 60 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 59 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 71 '../../build/linux/system.gyp:xi', | 70 '../../build/linux/system.gyp:xi', |
| 72 '../../build/linux/system.gyp:xrandr', | 71 '../../build/linux/system.gyp:xrandr', |
| 73 '../../ui/events/platform/events_platform.gyp:events_platform', | 72 '../../ui/events/platform/events_platform.gyp:events_platform', |
| 74 ], | 73 ], |
| 75 }], | 74 }], |
| 76 ['chromeos == 1', { | 75 ['chromeos == 1', { |
| 77 'dependencies': [ | 76 'dependencies': [ |
| 78 'display_types', | 77 'display_types', |
| 79 ], | 78 ], |
| 80 }], | 79 }], |
| 81 ['use_ozone == 1', { | |
| 82 'dependencies': [ | |
| 83 '../../ui/ozone/ozone.gyp:ozone', | |
| 84 ], | |
| 85 }], | |
| 86 ], | 80 ], |
| 87 }, | 81 }, |
| 88 { | 82 { |
| 89 # GN version: //ui/display/util | 83 # GN version: //ui/display/util |
| 90 'target_name': 'display_util', | 84 'target_name': 'display_util', |
| 91 'type': '<(component)', | 85 'type': '<(component)', |
| 92 'dependencies': [ | 86 'dependencies': [ |
| 93 '../../base/base.gyp:base', | 87 '../../base/base.gyp:base', |
| 94 '../../ui/gfx/gfx.gyp:gfx_geometry', | 88 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 95 ], | 89 ], |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 'dependencies': [ | 164 'dependencies': [ |
| 171 'display', | 165 'display', |
| 172 'display_test_util', | 166 'display_test_util', |
| 173 'display_types', | 167 'display_types', |
| 174 ], | 168 ], |
| 175 }], | 169 }], |
| 176 ], | 170 ], |
| 177 }, | 171 }, |
| 178 ], | 172 ], |
| 179 } | 173 } |
| OLD | NEW |