| 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 import("//third_party/WebKit/Source/modules/modules.gni") | 5 import("//third_party/WebKit/Source/modules/modules.gni") |
| 6 | 6 |
| 7 blink_modules_sources("gamepad") { | 7 blink_modules_sources("gamepad") { |
| 8 sources = [ | 8 sources = [ |
| 9 "Gamepad.cpp", | 9 "Gamepad.cpp", |
| 10 "Gamepad.h", | 10 "Gamepad.h", |
| 11 "GamepadButton.cpp", | 11 "GamepadButton.cpp", |
| 12 "GamepadButton.h", | 12 "GamepadButton.h", |
| 13 "GamepadDispatcher.cpp", | 13 "GamepadDispatcher.cpp", |
| 14 "GamepadDispatcher.h", | 14 "GamepadDispatcher.h", |
| 15 "GamepadEvent.cpp", | 15 "GamepadEvent.cpp", |
| 16 "GamepadEvent.h", | 16 "GamepadEvent.h", |
| 17 "GamepadList.cpp", | 17 "GamepadList.cpp", |
| 18 "GamepadList.h", | 18 "GamepadList.h", |
| 19 "GamepadPose.cpp", | 19 "GamepadPose.cpp", |
| 20 "GamepadPose.h", | 20 "GamepadPose.h", |
| 21 "GamepadSharedMemoryReader.cpp", |
| 22 "GamepadSharedMemoryReader.h", |
| 21 "NavigatorGamepad.cpp", | 23 "NavigatorGamepad.cpp", |
| 22 "NavigatorGamepad.h", | 24 "NavigatorGamepad.h", |
| 23 ] | 25 ] |
| 26 deps = [ |
| 27 "//device/base/synchronization", |
| 28 "//device/gamepad/public/interfaces:interfaces_blink", |
| 29 ] |
| 24 } | 30 } |
| OLD | NEW |