OLD | NEW |
---|---|
(Empty) | |
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 | |
3 # found in the LICENSE file. | |
4 | |
5 source_set("hid") { | |
6 sources = [ | |
7 "hid_api.cc", | |
8 "hid_api.h", | |
9 "hid_connection_resource.cc", | |
10 "hid_connection_resource.h", | |
11 "hid_device_manager.cc", | |
12 "hid_device_manager.h", | |
13 ] | |
14 | |
15 deps = [ | |
16 "//content/public/browser", | |
17 "//content/public/common", | |
18 "//extensions/common/api", | |
19 ] | |
20 } | |
OLD | NEW |