| Index: extensions/browser/api/hid/BUILD.gn
|
| diff --git a/extensions/browser/api/hid/BUILD.gn b/extensions/browser/api/hid/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5b82e34da403a2b358f46d719a87ee0601bce176
|
| --- /dev/null
|
| +++ b/extensions/browser/api/hid/BUILD.gn
|
| @@ -0,0 +1,20 @@
|
| +# 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.
|
| +
|
| +source_set("hid") {
|
| + sources = [
|
| + "hid_api.cc",
|
| + "hid_api.h",
|
| + "hid_connection_resource.cc",
|
| + "hid_connection_resource.h",
|
| + "hid_device_manager.cc",
|
| + "hid_device_manager.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "//content/public/browser",
|
| + "//content/public/common",
|
| + "//extensions/common/api",
|
| + ]
|
| +}
|
|
|