| 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_pixmap_manager_egltest.cc", |
| 11 "client_pixmap_manager_egltest.h", |
| 10 "ozone_platform_egltest.cc", | 12 "ozone_platform_egltest.cc", |
| 11 "ozone_platform_egltest.h", | 13 "ozone_platform_egltest.h", |
| 12 ] | 14 ] |
| 13 | 15 |
| 14 deps = [ | 16 deps = [ |
| 15 ":eglplatform_shim", | 17 ":eglplatform_shim", |
| 16 "//base", | 18 "//base", |
| 17 "//ui/events/devices", | 19 "//ui/events/devices", |
| 18 "//ui/events/ozone:events_ozone_evdev", | 20 "//ui/events/ozone:events_ozone_evdev", |
| 19 "//ui/events/ozone:events_ozone_layout", | 21 "//ui/events/ozone:events_ozone_layout", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 output_extension = "so.1" | 55 output_extension = "so.1" |
| 54 | 56 |
| 55 sources = [ | 57 sources = [ |
| 56 "eglplatform_shim.h", | 58 "eglplatform_shim.h", |
| 57 "eglplatform_shim_xeleven.cc", | 59 "eglplatform_shim_xeleven.cc", |
| 58 ] | 60 ] |
| 59 | 61 |
| 60 configs += [ "//build/config/linux:x11" ] | 62 configs += [ "//build/config/linux:x11" ] |
| 61 } | 63 } |
| 62 } | 64 } |
| OLD | NEW |