Chromium Code Reviews| 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 use_drm_atomic = false | 10 use_drm_atomic = false |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 170 "gpu/drm_window_unittest.cc", | 170 "gpu/drm_window_unittest.cc", |
| 171 "gpu/hardware_display_controller_unittest.cc", | 171 "gpu/hardware_display_controller_unittest.cc", |
| 172 "gpu/hardware_display_plane_manager_unittest.cc", | 172 "gpu/hardware_display_plane_manager_unittest.cc", |
| 173 "gpu/screen_manager_unittest.cc", | 173 "gpu/screen_manager_unittest.cc", |
| 174 "test/mock_drm_device.cc", | 174 "test/mock_drm_device.cc", |
| 175 "test/mock_drm_device.h", | 175 "test/mock_drm_device.h", |
| 176 ] | 176 ] |
| 177 | 177 |
| 178 deps = [ | 178 deps = [ |
| 179 "//base", | 179 "//base", |
| 180 "//mojo/public/c/system:for_shared_library", | 180 "//mojo/public/c/system", |
|
viettrungluu
2015/12/10 16:50:06
"
| |
| 181 "//skia", | 181 "//skia", |
| 182 "//testing/gtest", | 182 "//testing/gtest", |
| 183 "//ui/ozone", | 183 "//ui/ozone", |
| 184 "//ui/ozone:ozone_base", | 184 "//ui/ozone:ozone_base", |
| 185 "//ui/ozone/platform/drm:drm_common", | 185 "//ui/ozone/platform/drm:drm_common", |
| 186 ] | 186 ] |
| 187 | 187 |
| 188 public_configs = [ ":libdrm" ] | 188 public_configs = [ ":libdrm" ] |
| 189 } | 189 } |
| 190 } | 190 } |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 227 public_configs = [ | 227 public_configs = [ |
| 228 ":libgbm", | 228 ":libgbm", |
| 229 "//third_party/khronos:khronos_headers", | 229 "//third_party/khronos:khronos_headers", |
| 230 ] | 230 ] |
| 231 | 231 |
| 232 if (use_mesa_platform_null) { | 232 if (use_mesa_platform_null) { |
| 233 defines += [ "USE_MESA_PLATFORM_NULL" ] | 233 defines += [ "USE_MESA_PLATFORM_NULL" ] |
| 234 } | 234 } |
| 235 } | 235 } |
| 236 } | 236 } |
| OLD | NEW |