| 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 'target_name': 'display_types', | 11 'target_name': 'display_types', |
| 12 'type': '<(component)', | 12 'type': '<(component)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../../base/base.gyp:base', | 14 '../../base/base.gyp:base', |
| 15 '../../ui/gfx/gfx.gyp:gfx_geometry', | 15 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 16 ], | 16 ], |
| 17 'defines': [ | 17 'defines': [ |
| 18 'DISPLAY_TYPES_IMPLEMENTATION', | 18 'DISPLAY_TYPES_IMPLEMENTATION', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 'types/chromeos/display_mode.cc', | 21 'types/chromeos/display_mode.cc', |
| 22 'types/chromeos/display_mode.h', | 22 'types/chromeos/display_mode.h', |
| 23 'types/chromeos/display_snapshot.cc', | 23 'types/chromeos/display_snapshot.cc', |
| 24 'types/chromeos/display_snapshot.h', | 24 'types/chromeos/display_snapshot.h', |
| 25 'types/chromeos/native_display_delegate.h', | 25 'types/chromeos/native_display_delegate.h', |
| 26 'types/chromeos/native_display_observer.h', | 26 'types/chromeos/native_display_observer.h', |
| 27 'types/chromeos/touchscreen_device.cc', | |
| 28 'types/chromeos/touchscreen_device.h', | |
| 29 'types/chromeos/touchscreen_device_manager.h', | |
| 30 'types/display_constants.h', | 27 'types/display_constants.h', |
| 31 'types/display_types_export.h', | 28 'types/display_types_export.h', |
| 32 ], | 29 ], |
| 33 }, | 30 }, |
| 34 { | 31 { |
| 35 'target_name': 'display', | 32 'target_name': 'display', |
| 36 'type': '<(component)', | 33 'type': '<(component)', |
| 37 'dependencies': [ | 34 'dependencies': [ |
| 38 '../../base/base.gyp:base', | 35 '../../base/base.gyp:base', |
| 39 '../../ui/gfx/gfx.gyp:gfx', | 36 '../../ui/gfx/gfx.gyp:gfx', |
| 40 '../../ui/gfx/gfx.gyp:gfx_geometry', | 37 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 41 'display_util', | 38 'display_util', |
| 42 ], | 39 ], |
| 43 'defines': [ | 40 'defines': [ |
| 44 'DISPLAY_IMPLEMENTATION', | 41 'DISPLAY_IMPLEMENTATION', |
| 45 ], | 42 ], |
| 46 'sources': [ | 43 'sources': [ |
| 47 'chromeos/display_configurator.cc', | 44 'chromeos/display_configurator.cc', |
| 48 'chromeos/display_configurator.h', | 45 'chromeos/display_configurator.h', |
| 49 'chromeos/touchscreen_delegate_impl.cc', | |
| 50 'chromeos/touchscreen_delegate_impl.h', | |
| 51 'chromeos/ozone/display_configurator_ozone.cc', | 46 'chromeos/ozone/display_configurator_ozone.cc', |
| 52 'chromeos/x11/display_configurator_x11.cc', | 47 'chromeos/x11/display_configurator_x11.cc', |
| 53 'chromeos/x11/display_mode_x11.cc', | 48 'chromeos/x11/display_mode_x11.cc', |
| 54 'chromeos/x11/display_mode_x11.h', | 49 'chromeos/x11/display_mode_x11.h', |
| 55 'chromeos/x11/display_snapshot_x11.cc', | 50 'chromeos/x11/display_snapshot_x11.cc', |
| 56 'chromeos/x11/display_snapshot_x11.h', | 51 'chromeos/x11/display_snapshot_x11.h', |
| 57 'chromeos/x11/display_util_x11.cc', | 52 'chromeos/x11/display_util_x11.cc', |
| 58 'chromeos/x11/display_util_x11.h', | 53 'chromeos/x11/display_util_x11.h', |
| 59 'chromeos/x11/native_display_delegate_x11.cc', | 54 'chromeos/x11/native_display_delegate_x11.cc', |
| 60 'chromeos/x11/native_display_delegate_x11.h', | 55 'chromeos/x11/native_display_delegate_x11.h', |
| 61 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 56 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
| 62 'chromeos/x11/native_display_event_dispatcher_x11.h', | 57 'chromeos/x11/native_display_event_dispatcher_x11.h', |
| 63 'chromeos/x11/touchscreen_device_manager_x11.cc', | |
| 64 'chromeos/x11/touchscreen_device_manager_x11.h', | |
| 65 'display_export.h', | 58 'display_export.h', |
| 66 'display_switches.cc', | 59 'display_switches.cc', |
| 67 'display_switches.h', | 60 'display_switches.h', |
| 68 ], | 61 ], |
| 69 'conditions': [ | 62 'conditions': [ |
| 70 ['use_x11 == 1', { | 63 ['use_x11 == 1', { |
| 71 'dependencies': [ | 64 'dependencies': [ |
| 72 '../../build/linux/system.gyp:x11', | 65 '../../build/linux/system.gyp:x11', |
| 73 '../../build/linux/system.gyp:xext', | 66 '../../build/linux/system.gyp:xext', |
| 74 '../../build/linux/system.gyp:xi', | 67 '../../build/linux/system.gyp:xi', |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 ], | 146 ], |
| 154 'include_dirs': [ | 147 'include_dirs': [ |
| 155 '../..', | 148 '../..', |
| 156 ], | 149 ], |
| 157 'sources': [ | 150 'sources': [ |
| 158 'util/edid_parser_unittest.cc', | 151 'util/edid_parser_unittest.cc', |
| 159 ], | 152 ], |
| 160 }, | 153 }, |
| 161 ], | 154 ], |
| 162 } | 155 } |
| OLD | NEW |