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', | |
12 'type': '<(component)', | |
13 'dependencies': [ | |
14 '../../base/base.gyp:base', | |
15 '../../ui/gfx/gfx.gyp:gfx_geometry', | |
16 ], | |
17 'defines': [ | |
18 'DISPLAY_IMPLEMENTATION', | |
spang
2014/04/09 22:33:33
DISPLAY_TYPES_IMPLEMENTATION
This relates to the
dnicoara
2014/04/10 01:22:26
Done.
| |
19 ], | |
20 'sources': [ | |
21 'types/chromeos/display_mode.cc', | |
22 'types/chromeos/display_mode.h', | |
23 'types/chromeos/display_snapshot.cc', | |
24 'types/chromeos/display_snapshot.h', | |
25 'types/chromeos/native_display_delegate.h', | |
26 'types/chromeos/native_display_observer', | |
27 'types/display_constants.h', | |
28 ], | |
29 }, | |
30 { | |
11 'target_name': 'display', | 31 'target_name': 'display', |
12 'type': '<(component)', | 32 'type': '<(component)', |
13 'dependencies': [ | 33 'dependencies': [ |
14 '../../base/base.gyp:base', | 34 '../../base/base.gyp:base', |
15 '../../ui/gfx/gfx.gyp:gfx', | 35 '../../ui/gfx/gfx.gyp:gfx', |
16 '../../ui/gfx/gfx.gyp:gfx_geometry', | 36 '../../ui/gfx/gfx.gyp:gfx_geometry', |
37 'display_types', | |
17 ], | 38 ], |
18 'defines': [ | 39 'defines': [ |
19 'DISPLAY_IMPLEMENTATION', | 40 'DISPLAY_IMPLEMENTATION', |
20 ], | 41 ], |
21 'sources': [ | 42 'sources': [ |
22 'chromeos/display_configurator.cc', | 43 'chromeos/display_configurator.cc', |
23 'chromeos/display_configurator.h', | 44 'chromeos/display_configurator.h', |
24 'chromeos/display_mode.cc', | |
25 'chromeos/display_mode.h', | |
26 'chromeos/display_snapshot.cc', | |
27 'chromeos/display_snapshot.h', | |
28 'chromeos/native_display_delegate.h', | |
29 'chromeos/native_display_observer.h', | |
30 'chromeos/ozone/native_display_delegate_ozone.cc', | |
31 'chromeos/ozone/native_display_delegate_ozone.h', | |
32 'chromeos/ozone/touchscreen_delegate_ozone.cc', | 45 'chromeos/ozone/touchscreen_delegate_ozone.cc', |
33 'chromeos/ozone/touchscreen_delegate_ozone.h', | 46 'chromeos/ozone/touchscreen_delegate_ozone.h', |
34 'chromeos/x11/display_mode_x11.cc', | 47 'chromeos/x11/display_mode_x11.cc', |
35 'chromeos/x11/display_mode_x11.h', | 48 'chromeos/x11/display_mode_x11.h', |
36 'chromeos/x11/display_snapshot_x11.cc', | 49 'chromeos/x11/display_snapshot_x11.cc', |
37 'chromeos/x11/display_snapshot_x11.h', | 50 'chromeos/x11/display_snapshot_x11.h', |
38 'chromeos/x11/display_util_x11.cc', | 51 'chromeos/x11/display_util_x11.cc', |
39 'chromeos/x11/display_util_x11.h', | 52 'chromeos/x11/display_util_x11.h', |
40 'chromeos/x11/native_display_delegate_x11.cc', | 53 'chromeos/x11/native_display_delegate_x11.cc', |
41 'chromeos/x11/native_display_delegate_x11.h', | 54 'chromeos/x11/native_display_delegate_x11.h', |
42 'chromeos/x11/native_display_event_dispatcher_x11.cc', | 55 'chromeos/x11/native_display_event_dispatcher_x11.cc', |
43 'chromeos/x11/native_display_event_dispatcher_x11.h', | 56 'chromeos/x11/native_display_event_dispatcher_x11.h', |
44 'chromeos/x11/touchscreen_delegate_x11.cc', | 57 'chromeos/x11/touchscreen_delegate_x11.cc', |
45 'chromeos/x11/touchscreen_delegate_x11.h', | 58 'chromeos/x11/touchscreen_delegate_x11.h', |
46 'display_constants.h', | |
47 'display_export.h', | 59 'display_export.h', |
48 'display_switches.cc', | 60 'display_switches.cc', |
49 'display_switches.h', | 61 'display_switches.h', |
50 'display_util.cc', | 62 'display_util.cc', |
51 'display_util.h', | 63 'display_util.h', |
52 'edid_parser.cc', | 64 'edid_parser.cc', |
53 'edid_parser.h', | 65 'edid_parser.h', |
54 'x11/edid_parser_x11.cc', | 66 'x11/edid_parser_x11.cc', |
55 'x11/edid_parser_x11.h', | 67 'x11/edid_parser_x11.h', |
56 ], | 68 ], |
57 'conditions': [ | 69 'conditions': [ |
58 ['use_x11 == 1', { | 70 ['use_x11 == 1', { |
59 'dependencies': [ | 71 'dependencies': [ |
60 '../../build/linux/system.gyp:x11', | 72 '../../build/linux/system.gyp:x11', |
61 '../../build/linux/system.gyp:xext', | 73 '../../build/linux/system.gyp:xext', |
62 '../../build/linux/system.gyp:xi', | 74 '../../build/linux/system.gyp:xi', |
63 '../../build/linux/system.gyp:xrandr', | 75 '../../build/linux/system.gyp:xrandr', |
64 ], | 76 ], |
65 }], | 77 }], |
66 ], | 78 ], |
67 }, | 79 }, |
68 { | 80 { |
69 'target_name': 'display_test_util', | 81 'target_name': 'display_test_util', |
70 'type': '<(component)', | 82 'type': '<(component)', |
71 'dependencies': [ | 83 'dependencies': [ |
72 '../../base/base.gyp:base', | 84 '../../base/base.gyp:base', |
73 '../../ui/gfx/gfx.gyp:gfx', | 85 '../../ui/gfx/gfx.gyp:gfx', |
74 '../../ui/gfx/gfx.gyp:gfx_geometry', | 86 '../../ui/gfx/gfx.gyp:gfx_geometry', |
75 'display', | 87 'display_types', |
76 ], | 88 ], |
77 'defines': [ | 89 'defines': [ |
78 'DISPLAY_IMPLEMENTATION', | 90 'DISPLAY_IMPLEMENTATION', |
79 ], | 91 ], |
80 'sources': [ | 92 'sources': [ |
81 'chromeos/test/test_display_snapshot.cc', | 93 'chromeos/test/test_display_snapshot.cc', |
82 'chromeos/test/test_display_snapshot.h', | 94 'chromeos/test/test_display_snapshot.h', |
83 ], | 95 ], |
84 }, | 96 }, |
85 ], | 97 ], |
86 } | 98 } |
OLD | NEW |