OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'external_ozone_platforms': [], | 8 'external_ozone_platforms': [], |
9 'external_ozone_platform_files': [], | 9 'external_ozone_platform_files': [], |
10 'external_ozone_platform_deps': [], | 10 'external_ozone_platform_deps': [], |
(...skipping 23 matching lines...) Expand all Loading... |
34 '<(platform_list_file)', | 34 '<(platform_list_file)', |
35 # common/chromeos files are excluded automatically when building with | 35 # common/chromeos files are excluded automatically when building with |
36 # chromeos=0, by exclusion rules in filename_rules.gypi due to the | 36 # chromeos=0, by exclusion rules in filename_rules.gypi due to the |
37 # 'chromeos' folder name. | 37 # 'chromeos' folder name. |
38 'common/chromeos/native_display_delegate_ozone.cc', | 38 'common/chromeos/native_display_delegate_ozone.cc', |
39 'common/chromeos/native_display_delegate_ozone.h', | 39 'common/chromeos/native_display_delegate_ozone.h', |
40 'ozone_platform.cc', | 40 'ozone_platform.cc', |
41 'ozone_platform.h', | 41 'ozone_platform.h', |
42 'ozone_switches.cc', | 42 'ozone_switches.cc', |
43 'ozone_switches.h', | 43 'ozone_switches.h', |
| 44 'platform/dri/chromeos/display_event_listener.h', |
| 45 'platform/dri/chromeos/display_event_listener_udev.cc', |
| 46 'platform/dri/chromeos/display_event_listener_udev.h', |
44 'platform/dri/chromeos/display_mode_dri.cc', | 47 'platform/dri/chromeos/display_mode_dri.cc', |
45 'platform/dri/chromeos/display_mode_dri.h', | 48 'platform/dri/chromeos/display_mode_dri.h', |
46 'platform/dri/chromeos/display_snapshot_dri.cc', | 49 'platform/dri/chromeos/display_snapshot_dri.cc', |
47 'platform/dri/chromeos/display_snapshot_dri.h', | 50 'platform/dri/chromeos/display_snapshot_dri.h', |
48 'platform/dri/chromeos/native_display_delegate_dri.cc', | 51 'platform/dri/chromeos/native_display_delegate_dri.cc', |
49 'platform/dri/chromeos/native_display_delegate_dri.h', | 52 'platform/dri/chromeos/native_display_delegate_dri.h', |
50 'platform/dri/ozone_platform_dri.cc', | 53 'platform/dri/ozone_platform_dri.cc', |
51 'platform/dri/ozone_platform_dri.h', | 54 'platform/dri/ozone_platform_dri.h', |
52 'platform/dri/cursor_factory_evdev_dri.cc', | 55 'platform/dri/cursor_factory_evdev_dri.cc', |
53 'platform/dri/cursor_factory_evdev_dri.h', | 56 'platform/dri/cursor_factory_evdev_dri.h', |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 }, { # ozone_platform_test==0 | 122 }, { # ozone_platform_test==0 |
120 'sources/': [ | 123 'sources/': [ |
121 ['exclude', '^platform/test/'], | 124 ['exclude', '^platform/test/'], |
122 ] | 125 ] |
123 }], | 126 }], |
124 ['chromeos==1', { | 127 ['chromeos==1', { |
125 'dependencies': [ | 128 'dependencies': [ |
126 '<(DEPTH)/ui/display/display.gyp:display_types', | 129 '<(DEPTH)/ui/display/display.gyp:display_types', |
127 ], | 130 ], |
128 }], | 131 }], |
| 132 ['use_udev == 0', { |
| 133 'sources/': [ |
| 134 ['exclude', '_udev\\.(h|cc)$'], |
| 135 ], |
| 136 }], |
129 ] | 137 ] |
130 }, | 138 }, |
131 ], | 139 ], |
132 } | 140 } |
OLD | NEW |