| 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 component("x11") { | 5 component("x11") { |
| 6 output_name = "x11_window" | 6 output_name = "x11_window" |
| 7 | 7 |
| 8 deps = [ | 8 deps = [ |
| 9 "//base", | 9 "//base", |
| 10 "//skia", | 10 "//skia", |
| 11 "//ui/events", | 11 "//ui/events", |
| 12 "//ui/events/platform/x11", | 12 "//ui/events/platform/x11", |
| 13 "//ui/gfx/x", | 13 "//ui/gfx/x", |
| 14 "//ui/platform_window", | 14 "//ui/platform_window", |
| 15 ] | 15 ] |
| 16 | 16 |
| 17 configs += [ | 17 configs += [ "//build/config/linux:x11" ] |
| 18 "//build/config/linux:x11" | |
| 19 ] | |
| 20 | 18 |
| 21 defines = [ "X11_WINDOW_IMPLEMENTATION" ] | 19 defines = [ "X11_WINDOW_IMPLEMENTATION" ] |
| 22 | 20 |
| 23 sources = [ | 21 sources = [ |
| 24 "x11_window.cc", | 22 "x11_window.cc", |
| 25 "x11_window.h", | 23 "x11_window.h", |
| 26 "x11_window_export.h", | 24 "x11_window_export.h", |
| 27 ] | 25 ] |
| 28 } | 26 } |
| OLD | NEW |