| 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', | 11 'target_name': 'display', |
| 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', | 15 '../../ui/gfx/gfx.gyp:gfx', |
| 16 '../../ui/gfx/gfx.gyp:gfx_geometry', | 16 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 17 ], | 17 ], |
| 18 'defines': [ | 18 'defines': [ |
| 19 'DISPLAY_IMPLEMENTATION', | 19 'DISPLAY_IMPLEMENTATION', |
| 20 ], | 20 ], |
| 21 'sources': [ | 21 'sources': [ |
| 22 'chromeos/display_mode.cc', | 22 'chromeos/display_mode.cc', |
| 23 'chromeos/display_mode.h', | 23 'chromeos/display_mode.h', |
| 24 'chromeos/display_snapshot.cc', | 24 'chromeos/display_snapshot.cc', |
| 25 'chromeos/display_snapshot.h', | 25 'chromeos/display_snapshot.h', |
| 26 'chromeos/native_display_delegate.h', | 26 'chromeos/native_display_delegate.h', |
| 27 'chromeos/native_display_observer.h', | 27 'chromeos/native_display_observer.h', |
| 28 'chromeos/output_configurator.cc', | 28 'chromeos/output_configurator.cc', |
| 29 'chromeos/output_configurator.h', | 29 'chromeos/output_configurator.h', |
| 30 'chromeos/ozone/native_display_delegate_ozone.cc', |
| 31 'chromeos/ozone/native_display_delegate_ozone.h', |
| 32 'chromeos/ozone/touchscreen_delegate_ozone.cc', |
| 33 'chromeos/ozone/touchscreen_delegate_ozone.h', |
| 30 'chromeos/x11/display_mode_x11.cc', | 34 'chromeos/x11/display_mode_x11.cc', |
| 31 'chromeos/x11/display_mode_x11.h', | 35 'chromeos/x11/display_mode_x11.h', |
| 32 'chromeos/x11/display_snapshot_x11.cc', | 36 'chromeos/x11/display_snapshot_x11.cc', |
| 33 'chromeos/x11/display_snapshot_x11.h', | 37 'chromeos/x11/display_snapshot_x11.h', |
| 34 'chromeos/x11/display_util_x11.cc', | 38 'chromeos/x11/display_util_x11.cc', |
| 35 'chromeos/x11/display_util_x11.h', | 39 'chromeos/x11/display_util_x11.h', |
| 36 'chromeos/x11/native_display_delegate_x11.cc', | 40 'chromeos/x11/native_display_delegate_x11.cc', |
| 37 'chromeos/x11/native_display_delegate_x11.h', | 41 'chromeos/x11/native_display_delegate_x11.h', |
| 38 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 42 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
| 39 'chromeos/x11/native_display_event_dispatcher_x11.h', | 43 'chromeos/x11/native_display_event_dispatcher_x11.h', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 69 'defines': [ | 73 'defines': [ |
| 70 'DISPLAY_IMPLEMENTATION', | 74 'DISPLAY_IMPLEMENTATION', |
| 71 ], | 75 ], |
| 72 'sources': [ | 76 'sources': [ |
| 73 'chromeos/test/test_display_snapshot.cc', | 77 'chromeos/test/test_display_snapshot.cc', |
| 74 'chromeos/test/test_display_snapshot.h', | 78 'chromeos/test/test_display_snapshot.h', |
| 75 ], | 79 ], |
| 76 }, | 80 }, |
| 77 ], | 81 ], |
| 78 } | 82 } |
| OLD | NEW |