| 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_geometry', | 15 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 16 ], | 16 ], |
| 17 'defines': [ | 17 'defines': [ |
| 18 'DISPLAY_IMPLEMENTATION', | 18 'DISPLAY_IMPLEMENTATION', |
| 19 ], | 19 ], |
| 20 'sources': [ | 20 'sources': [ |
| 21 'chromeos/display_mode.cc', |
| 22 'chromeos/display_mode.h', |
| 23 'chromeos/display_snapshot.cc', |
| 24 'chromeos/display_snapshot.h', |
| 21 'chromeos/native_display_delegate.h', | 25 'chromeos/native_display_delegate.h', |
| 22 'chromeos/native_display_observer.h', | 26 'chromeos/native_display_observer.h', |
| 23 'chromeos/output_configurator.cc', | 27 'chromeos/output_configurator.cc', |
| 24 'chromeos/output_configurator.h', | 28 'chromeos/output_configurator.h', |
| 25 'chromeos/x11/display_util.cc', | 29 'chromeos/x11/display_util.cc', |
| 26 'chromeos/x11/display_util.h', | 30 'chromeos/x11/display_util.h', |
| 31 'chromeos/x11/display_mode_x11.cc', |
| 32 'chromeos/x11/display_mode_x11.h', |
| 33 'chromeos/x11/display_snapshot_x11.cc', |
| 34 'chromeos/x11/display_snapshot_x11.h', |
| 27 'chromeos/x11/native_display_delegate_x11.cc', | 35 'chromeos/x11/native_display_delegate_x11.cc', |
| 28 'chromeos/x11/native_display_delegate_x11.h', | 36 'chromeos/x11/native_display_delegate_x11.h', |
| 29 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 37 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
| 30 'chromeos/x11/native_display_event_dispatcher_x11.h', | 38 'chromeos/x11/native_display_event_dispatcher_x11.h', |
| 31 'chromeos/x11/touchscreen_delegate_x11.cc', | 39 'chromeos/x11/touchscreen_delegate_x11.cc', |
| 32 'chromeos/x11/touchscreen_delegate_x11.h', | 40 'chromeos/x11/touchscreen_delegate_x11.h', |
| 33 'display_constants.h', | 41 'display_constants.h', |
| 34 'display_export.h', | 42 'display_export.h', |
| 35 ], | 43 ], |
| 36 'conditions': [ | 44 'conditions': [ |
| 37 ['use_x11 == 1', { | 45 ['use_x11 == 1', { |
| 38 'dependencies': [ | 46 'dependencies': [ |
| 39 '../../build/linux/system.gyp:x11', | 47 '../../build/linux/system.gyp:x11', |
| 40 '../../build/linux/system.gyp:xext', | 48 '../../build/linux/system.gyp:xext', |
| 41 '../../build/linux/system.gyp:xi', | 49 '../../build/linux/system.gyp:xi', |
| 42 '../../build/linux/system.gyp:xrandr', | 50 '../../build/linux/system.gyp:xrandr', |
| 43 ], | 51 ], |
| 44 }], | 52 }], |
| 45 ], | 53 ], |
| 46 }, | 54 }, |
| 55 { |
| 56 'target_name': 'display_test_util', |
| 57 'type': '<(component)', |
| 58 'dependencies': [ |
| 59 '../../base/base.gyp:base', |
| 60 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 61 'display', |
| 62 ], |
| 63 'defines': [ |
| 64 'DISPLAY_IMPLEMENTATION', |
| 65 ], |
| 66 'sources': [ |
| 67 'chromeos/test/test_display_snapshot.cc', |
| 68 'chromeos/test/test_display_snapshot.h', |
| 69 ], |
| 70 }, |
| 47 ], | 71 ], |
| 48 } | 72 } |
| OLD | NEW |