mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
37 lines
808 B
Plaintext
37 lines
808 B
Plaintext
# Copyright 2017 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.
|
|
|
|
import("//build/config/ui.gni")
|
|
import("//ui/ozone/ozone.gni")
|
|
|
|
assert(is_chromeos)
|
|
|
|
source_set("events") {
|
|
output_name = "ui_chromeos_events"
|
|
sources = [
|
|
"event_rewriter_chromeos.cc",
|
|
"event_rewriter_chromeos.h",
|
|
"keyboard_layout_util.cc",
|
|
"keyboard_layout_util.h",
|
|
"modifier_key.h",
|
|
"pref_names.cc",
|
|
"pref_names.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//chromeos",
|
|
"//device/udev_linux",
|
|
"//ui/base/ime",
|
|
"//ui/events",
|
|
"//ui/events:dom_keycode_converter",
|
|
"//ui/events/devices",
|
|
]
|
|
if (ozone_platform_x11) {
|
|
deps += [
|
|
"//ui/base/x",
|
|
"//ui/events/keycodes:x11",
|
|
]
|
|
}
|
|
}
|