Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: ui/ozone/platform/drm/BUILD.gn

Issue 1716543003: ozone: Use allow_circular_includes_from to fix deps issue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 "//ui/display/util", 125 "//ui/display/util",
126 "//ui/events", 126 "//ui/events",
127 "//ui/events/devices", 127 "//ui/events/devices",
128 "//ui/events/ozone:events_ozone", 128 "//ui/events/ozone:events_ozone",
129 "//ui/events/ozone:events_ozone_evdev", 129 "//ui/events/ozone:events_ozone_evdev",
130 "//ui/events/ozone:events_ozone_layout", 130 "//ui/events/ozone:events_ozone_layout",
131 "//ui/events/platform", 131 "//ui/events/platform",
132 "//ui/gfx", 132 "//ui/gfx",
133 "//ui/gfx/geometry", 133 "//ui/gfx/geometry",
134 "//ui/ozone:ozone_base", 134 "//ui/ozone:ozone_base",
135 "//ui/platform_window",
135 ] 136 ]
136 137
137 configs += [ ":libdrm" ] 138 configs += [ ":libdrm" ]
138 139
139 public_configs = [ "//third_party/khronos:khronos_headers" ] 140 public_configs = [ "//third_party/khronos:khronos_headers" ]
140 141
141 defines = [ "OZONE_IMPLEMENTATION" ] 142 defines = [ "OZONE_IMPLEMENTATION" ]
142 143
143 if (use_drm_atomic) { 144 if (use_drm_atomic) {
144 configs += [ ":drm_atomic" ] 145 configs += [ ":drm_atomic" ]
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 deps = [ 187 deps = [
187 ":gbm", 188 ":gbm",
188 "//skia", 189 "//skia",
189 "//testing/gtest", 190 "//testing/gtest",
190 "//ui/gfx", 191 "//ui/gfx",
191 "//ui/ozone", 192 "//ui/ozone",
192 ] 193 ]
193 194
194 public_configs = [ ":libdrm" ] 195 public_configs = [ ":libdrm" ]
195 } 196 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698