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 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
6 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
7 | 7 |
8 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
10 } | 10 } |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 } | 103 } |
104 } | 104 } |
105 | 105 |
106 if (ozone_platform_gbm) { | 106 if (ozone_platform_gbm) { |
107 pkg_config("libgbm") { | 107 pkg_config("libgbm") { |
108 packages = [ "gbm" ] | 108 packages = [ "gbm" ] |
109 } | 109 } |
110 | 110 |
111 source_set("gbm") { | 111 source_set("gbm") { |
112 sources = [ | 112 sources = [ |
| 113 "channel_observer.h", |
113 "chromeos/display_message_handler.cc", | 114 "chromeos/display_message_handler.cc", |
114 "chromeos/display_message_handler.h", | 115 "chromeos/display_message_handler.h", |
115 "chromeos/native_display_delegate_proxy.cc", | 116 "chromeos/native_display_delegate_proxy.cc", |
116 "chromeos/native_display_delegate_proxy.h", | 117 "chromeos/native_display_delegate_proxy.h", |
117 "dri_window_delegate_proxy.cc", | 118 "dri_window_delegate_proxy.cc", |
118 "dri_window_delegate_proxy.h", | 119 "dri_window_delegate_proxy.h", |
119 "gbm_buffer.cc", | 120 "gbm_buffer.cc", |
120 "gbm_buffer.h", | 121 "gbm_buffer.h", |
121 "gbm_buffer_base.cc", | 122 "gbm_buffer_base.cc", |
122 "gbm_buffer_base.h", | 123 "gbm_buffer_base.h", |
(...skipping 16 matching lines...) Expand all Loading... |
139 "//base", | 140 "//base", |
140 "//skia", | 141 "//skia", |
141 "//ui/events/ozone:events_ozone_evdev", | 142 "//ui/events/ozone:events_ozone_evdev", |
142 ] | 143 ] |
143 | 144 |
144 direct_dependent_configs = [ | 145 direct_dependent_configs = [ |
145 ":libgbm", | 146 ":libgbm", |
146 ] | 147 ] |
147 } | 148 } |
148 } | 149 } |
OLD | NEW |