| 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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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', | 52 'chromeos/display_util.cc', |
| 53 'chromeos/display_util.h', | 53 'chromeos/display_util.h', |
| 54 'chromeos/display_snapshot_virtual.cc', |
| 55 'chromeos/display_snapshot_virtual.h', |
| 54 'chromeos/ozone/display_configurator_ozone.cc', | 56 'chromeos/ozone/display_configurator_ozone.cc', |
| 55 'chromeos/update_display_configuration_task.cc', | 57 'chromeos/update_display_configuration_task.cc', |
| 56 'chromeos/update_display_configuration_task.h', | 58 'chromeos/update_display_configuration_task.h', |
| 57 'chromeos/x11/display_configurator_x11.cc', | 59 'chromeos/x11/display_configurator_x11.cc', |
| 58 'chromeos/x11/display_mode_x11.cc', | 60 'chromeos/x11/display_mode_x11.cc', |
| 59 'chromeos/x11/display_mode_x11.h', | 61 'chromeos/x11/display_mode_x11.h', |
| 60 'chromeos/x11/display_snapshot_x11.cc', | 62 'chromeos/x11/display_snapshot_x11.cc', |
| 61 'chromeos/x11/display_snapshot_x11.h', | 63 'chromeos/x11/display_snapshot_x11.h', |
| 62 'chromeos/x11/display_util_x11.cc', | 64 'chromeos/x11/display_util_x11.cc', |
| 63 'chromeos/x11/display_util_x11.h', | 65 'chromeos/x11/display_util_x11.h', |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 ], | 180 ], |
| 179 }, | 181 }, |
| 180 { | 182 { |
| 181 # GN version: //ui/display:display_unittests | 183 # GN version: //ui/display:display_unittests |
| 182 'target_name': 'display_unittests', | 184 'target_name': 'display_unittests', |
| 183 'type': 'executable', | 185 'type': 'executable', |
| 184 'dependencies': [ | 186 'dependencies': [ |
| 185 '../../base/base.gyp:run_all_unittests', | 187 '../../base/base.gyp:run_all_unittests', |
| 186 '../../testing/gtest.gyp:gtest', | 188 '../../testing/gtest.gyp:gtest', |
| 187 '../../ui/gfx/gfx.gyp:gfx_geometry', | 189 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 190 '../../ui/gfx/gfx.gyp:gfx_test_support', |
| 188 'display_util', | 191 'display_util', |
| 189 ], | 192 ], |
| 190 'include_dirs': [ | 193 'include_dirs': [ |
| 191 '../..', | 194 '../..', |
| 192 ], | 195 ], |
| 193 'sources': [ | 196 'sources': [ |
| 194 'chromeos/configure_displays_task_unittest.cc', | 197 'chromeos/configure_displays_task_unittest.cc', |
| 195 'chromeos/display_configurator_unittest.cc', | 198 'chromeos/display_configurator_unittest.cc', |
| 196 'chromeos/update_display_configuration_task_unittest.cc', | 199 'chromeos/update_display_configuration_task_unittest.cc', |
| 197 'chromeos/x11/display_util_x11_unittest.cc', | 200 'chromeos/x11/display_util_x11_unittest.cc', |
| 198 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc', | 201 'chromeos/x11/native_display_event_dispatcher_x11_unittest.cc', |
| 199 'util/display_util_unittest.cc', | 202 'util/display_util_unittest.cc', |
| 200 'util/edid_parser_unittest.cc', | 203 'util/edid_parser_unittest.cc', |
| 201 ], | 204 ], |
| 202 'conditions': [ | 205 'conditions': [ |
| 203 ['chromeos == 1', { | 206 ['chromeos == 1', { |
| 204 'dependencies': [ | 207 'dependencies': [ |
| 205 'display', | 208 'display', |
| 206 'display_test_support', | 209 'display_test_support', |
| 207 'display_test_util', | 210 'display_test_util', |
| 208 'display_types', | 211 'display_types', |
| 209 ], | 212 ], |
| 210 }], | 213 }], |
| 211 ], | 214 ], |
| 212 }, | 215 }, |
| 213 ], | 216 ], |
| 214 } | 217 } |
| OLD | NEW |