mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
35 lines
921 B
Plaintext
35 lines
921 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.
|
|
|
|
import("//third_party/blink/renderer/modules/modules.gni")
|
|
|
|
blink_modules_sources("gamepad") {
|
|
sources = [
|
|
"gamepad.cc",
|
|
"gamepad.h",
|
|
"gamepad_button.cc",
|
|
"gamepad_button.h",
|
|
"gamepad_dispatcher.cc",
|
|
"gamepad_dispatcher.h",
|
|
"gamepad_event.cc",
|
|
"gamepad_event.h",
|
|
"gamepad_haptic_actuator.cc",
|
|
"gamepad_haptic_actuator.h",
|
|
"gamepad_list.cc",
|
|
"gamepad_list.h",
|
|
"gamepad_pose.cc",
|
|
"gamepad_pose.h",
|
|
"gamepad_shared_memory_reader.cc",
|
|
"gamepad_shared_memory_reader.h",
|
|
"navigator_gamepad.cc",
|
|
"navigator_gamepad.h",
|
|
]
|
|
|
|
deps = [
|
|
"//device/gamepad/public/cpp:shared_with_blink",
|
|
"//device/gamepad/public/mojom:mojom_blink",
|
|
"//third_party/blink/public:blink_headers",
|
|
]
|
|
}
|