| 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_configurator.cc', |
| 23 'chromeos/display_configurator.h', |
| 22 'chromeos/display_mode.cc', | 24 'chromeos/display_mode.cc', |
| 23 'chromeos/display_mode.h', | 25 'chromeos/display_mode.h', |
| 24 'chromeos/display_snapshot.cc', | 26 'chromeos/display_snapshot.cc', |
| 25 'chromeos/display_snapshot.h', | 27 'chromeos/display_snapshot.h', |
| 26 'chromeos/native_display_delegate.h', | 28 'chromeos/native_display_delegate.h', |
| 27 'chromeos/native_display_observer.h', | 29 'chromeos/native_display_observer.h', |
| 28 'chromeos/output_configurator.cc', | |
| 29 'chromeos/output_configurator.h', | |
| 30 'chromeos/ozone/native_display_delegate_ozone.cc', | 30 'chromeos/ozone/native_display_delegate_ozone.cc', |
| 31 'chromeos/ozone/native_display_delegate_ozone.h', | 31 'chromeos/ozone/native_display_delegate_ozone.h', |
| 32 'chromeos/ozone/touchscreen_delegate_ozone.cc', | 32 'chromeos/ozone/touchscreen_delegate_ozone.cc', |
| 33 'chromeos/ozone/touchscreen_delegate_ozone.h', | 33 'chromeos/ozone/touchscreen_delegate_ozone.h', |
| 34 'chromeos/x11/display_mode_x11.cc', | 34 'chromeos/x11/display_mode_x11.cc', |
| 35 'chromeos/x11/display_mode_x11.h', | 35 'chromeos/x11/display_mode_x11.h', |
| 36 'chromeos/x11/display_snapshot_x11.cc', | 36 'chromeos/x11/display_snapshot_x11.cc', |
| 37 'chromeos/x11/display_snapshot_x11.h', | 37 'chromeos/x11/display_snapshot_x11.h', |
| 38 'chromeos/x11/display_util_x11.cc', | 38 'chromeos/x11/display_util_x11.cc', |
| 39 'chromeos/x11/display_util_x11.h', | 39 'chromeos/x11/display_util_x11.h', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'defines': [ | 77 'defines': [ |
| 78 'DISPLAY_IMPLEMENTATION', | 78 'DISPLAY_IMPLEMENTATION', |
| 79 ], | 79 ], |
| 80 'sources': [ | 80 'sources': [ |
| 81 'chromeos/test/test_display_snapshot.cc', | 81 'chromeos/test/test_display_snapshot.cc', |
| 82 'chromeos/test/test_display_snapshot.h', | 82 'chromeos/test/test_display_snapshot.h', |
| 83 ], | 83 ], |
| 84 }, | 84 }, |
| 85 ], | 85 ], |
| 86 } | 86 } |
| OLD | NEW |