| Index: remoting/client/input/BUILD.gn
|
| diff --git a/remoting/client/input/BUILD.gn b/remoting/client/input/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5b52b3e72dec841b4889182182b9a193fb4d9ab7
|
| --- /dev/null
|
| +++ b/remoting/client/input/BUILD.gn
|
| @@ -0,0 +1,21 @@
|
| +# Copyright 2014 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.
|
| +
|
| +source_set("input") {
|
| + sources = [
|
| + "keyboard_input_strategy.h",
|
| + "keyboard_interpreter.cc",
|
| + "keyboard_interpreter.h",
|
| + "simple_keyboard_input_strategy.cc",
|
| + "simple_keyboard_input_strategy.h",
|
| + "text_keyboard_input_strategy.cc",
|
| + "text_keyboard_input_strategy.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//remoting/base",
|
| + "//third_party/webrtc/base:rtc_base_approved",
|
| + "//ui/events:dom_keycode_converter",
|
| + ]
|
| +}
|
|
|