mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
25 lines
589 B
Plaintext
25 lines
589 B
Plaintext
|
# Copyright 2016 The Chromium Authors. All rights reserved.
|
||
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
# found in the LICENSE file.
|
||
|
|
||
|
component("x") {
|
||
|
output_name = "events_x"
|
||
|
sources = [
|
||
|
"events_x_export.h",
|
||
|
"events_x_utils.cc",
|
||
|
"events_x_utils.h",
|
||
|
]
|
||
|
defines = [ "EVENTS_X_IMPLEMENTATION" ]
|
||
|
deps = [
|
||
|
"//base",
|
||
|
"//skia",
|
||
|
"//ui/display",
|
||
|
"//ui/events:events_base",
|
||
|
"//ui/events/devices",
|
||
|
"//ui/events/devices/x11",
|
||
|
"//ui/events/keycodes:x11",
|
||
|
"//ui/gfx/x",
|
||
|
]
|
||
|
configs += [ "//build/config/linux:x11" ]
|
||
|
}
|