| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 visibility = [ "//ui/ozone/*" ] | 5 visibility = [ "//ui/ozone/*" ] |
| 6 | 6 |
| 7 source_set("x11") { | 7 source_set("x11") { |
| 8 sources = [ | 8 sources = [ |
| 9 "client_native_pixmap_factory_x11.cc", | 9 "client_native_pixmap_factory_x11.cc", |
| 10 "client_native_pixmap_factory_x11.h", | 10 "client_native_pixmap_factory_x11.h", |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 "//ui/display/util", | 26 "//ui/display/util", |
| 27 "//ui/events", | 27 "//ui/events", |
| 28 "//ui/events/devices", | 28 "//ui/events/devices", |
| 29 "//ui/events/ozone:events_ozone", | 29 "//ui/events/ozone:events_ozone", |
| 30 "//ui/events/platform", | 30 "//ui/events/platform", |
| 31 "//ui/events/platform/x11", | 31 "//ui/events/platform/x11", |
| 32 "//ui/events/x", | 32 "//ui/events/x", |
| 33 "//ui/gfx", | 33 "//ui/gfx", |
| 34 "//ui/gfx/geometry", | 34 "//ui/gfx/geometry", |
| 35 "//ui/gfx/x", | 35 "//ui/gfx/x", |
| 36 "//ui/gl", |
| 36 "//ui/ozone:ozone_base", | 37 "//ui/ozone:ozone_base", |
| 37 "//ui/ozone/common", | 38 "//ui/ozone/common", |
| 38 "//ui/platform_window", | 39 "//ui/platform_window", |
| 39 "//ui/platform_window/x11", | 40 "//ui/platform_window/x11", |
| 40 ] | 41 ] |
| 41 | 42 |
| 42 configs += [ "//build/config/linux:x11" ] | 43 configs += [ "//build/config/linux:x11" ] |
| 43 | 44 |
| 44 public_configs = [ "//third_party/khronos:khronos_headers" ] | 45 public_configs = [ "//third_party/khronos:khronos_headers" ] |
| 45 } | 46 } |
| OLD | NEW |