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

Side by Side Diff: ui/ozone/platform/egltest/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("//tools/generate_library_loader/generate_library_loader.gni") 5 import("//tools/generate_library_loader/generate_library_loader.gni")
6 import("//ui/ozone/ozone.gni") 6 import("//ui/ozone/ozone.gni")
7 7
8 source_set("egltest") { 8 source_set("egltest") {
9 sources = [ 9 sources = [
10 "client_native_pixmap_factory_egltest.cc", 10 "client_native_pixmap_factory_egltest.cc",
11 "client_native_pixmap_factory_egltest.h", 11 "client_native_pixmap_factory_egltest.h",
12 "ozone_platform_egltest.cc", 12 "ozone_platform_egltest.cc",
13 "ozone_platform_egltest.h", 13 "ozone_platform_egltest.h",
14 ] 14 ]
15 15
16 configs += [ "//third_party/khronos:khronos_headers" ] 16 configs += [ "//third_party/khronos:khronos_headers" ]
17 17
18 deps = [ 18 deps = [
19 ":eglplatform_shim", 19 ":eglplatform_shim",
20 "//base", 20 "//base",
21 "//ui/events", 21 "//ui/events",
22 "//ui/events/devices", 22 "//ui/events/devices",
23 "//ui/events/ozone:events_ozone", 23 "//ui/events/ozone:events_ozone",
24 "//ui/events/ozone:events_ozone_evdev", 24 "//ui/events/ozone:events_ozone_evdev",
25 "//ui/events/ozone:events_ozone_layout", 25 "//ui/events/ozone:events_ozone_layout",
26 "//ui/events/platform", 26 "//ui/events/platform",
27 "//ui/gfx", 27 "//ui/gfx",
28 "//ui/ozone:ozone_base", 28 "//ui/ozone:ozone_base",
29 "//ui/platform_window",
29 ] 30 ]
30 } 31 }
31 32
32 generate_library_loader("eglplatform_shim") { 33 generate_library_loader("eglplatform_shim") {
33 name = "LibeglplatformShimLoader" 34 name = "LibeglplatformShimLoader"
34 output_h = "libeglplatform_shim.h" 35 output_h = "libeglplatform_shim.h"
35 output_cc = "libeglplatform_shim_loader.cc" 36 output_cc = "libeglplatform_shim_loader.cc"
36 header = "\"ui/ozone/platform/egltest/eglplatform_shim.h\"" 37 header = "\"ui/ozone/platform/egltest/eglplatform_shim.h\""
37 38
38 functions = [ 39 functions = [
(...skipping 25 matching lines...) Expand all
64 "eglplatform_shim_xeleven.cc", 65 "eglplatform_shim_xeleven.cc",
65 ] 66 ]
66 67
67 configs += [ "//build/config/linux:x11" ] 68 configs += [ "//build/config/linux:x11" ]
68 69
69 deps = [ 70 deps = [
70 "//build/config/sanitizers:deps", 71 "//build/config/sanitizers:deps",
71 ] 72 ]
72 } 73 }
73 } 74 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698