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 declare_args() { | 8 declare_args() { |
9 use_mesa_platform_null = false | 9 use_mesa_platform_null = false |
10 } | 10 } |
(...skipping 17 matching lines...) Expand all Loading... |
28 "dri_console_buffer.cc", | 28 "dri_console_buffer.cc", |
29 "dri_console_buffer.h", | 29 "dri_console_buffer.h", |
30 "dri_cursor.cc", | 30 "dri_cursor.cc", |
31 "dri_cursor.h", | 31 "dri_cursor.h", |
32 "dri_buffer.cc", | 32 "dri_buffer.cc", |
33 "dri_buffer.h", | 33 "dri_buffer.h", |
34 "dri_gpu_platform_support.cc", | 34 "dri_gpu_platform_support.cc", |
35 "dri_gpu_platform_support_.h", | 35 "dri_gpu_platform_support_.h", |
36 "dri_gpu_platform_support_host.cc", | 36 "dri_gpu_platform_support_host.cc", |
37 "dri_gpu_platform_support_host.h", | 37 "dri_gpu_platform_support_host.h", |
| 38 "dri_helper_thread.cc", |
| 39 "dri_helper_thread.h", |
38 "dri_surface.cc", | 40 "dri_surface.cc", |
39 "dri_surface.h", | 41 "dri_surface.h", |
40 "dri_surface_factory.cc", | 42 "dri_surface_factory.cc", |
41 "dri_surface_factory.h", | 43 "dri_surface_factory.h", |
42 "dri_util.cc", | 44 "dri_util.cc", |
43 "dri_util.h", | 45 "dri_util.h", |
44 "dri_vsync_provider.cc", | 46 "dri_vsync_provider.cc", |
45 "dri_vsync_provider.h", | 47 "dri_vsync_provider.h", |
46 "dri_window.cc", | 48 "dri_window.cc", |
47 "dri_window.h", | 49 "dri_window.h", |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 "//ui/events/ozone:events_ozone_layout", | 160 "//ui/events/ozone:events_ozone_layout", |
159 ] | 161 ] |
160 | 162 |
161 public_configs = [ ":libgbm" ] | 163 public_configs = [ ":libgbm" ] |
162 | 164 |
163 if (use_mesa_platform_null) { | 165 if (use_mesa_platform_null) { |
164 defines += [ "USE_MESA_PLATFORM_NULL" ] | 166 defines += [ "USE_MESA_PLATFORM_NULL" ] |
165 } | 167 } |
166 } | 168 } |
167 } | 169 } |
OLD | NEW |