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("usb") { |
| 6 sources = [ |
| 7 "usb_api.cc", |
| 8 "usb_api.h", |
| 9 "usb_device_resource.cc", |
| 10 "usb_device_resource.h", |
| 11 "usb_event_router.cc", |
| 12 "usb_event_router.h", |
| 13 "usb_guid_map.cc", |
| 14 "usb_guid_map.h", |
| 15 ] |
| 16 |
| 17 deps = [ |
| 18 "//content/public/browser", |
| 19 "//content/public/common", |
| 20 "//extensions/common/api", |
| 21 ] |
| 22 } |
OLD | NEW |