| 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("//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 Loading... |
| 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 } |
| OLD | NEW |