OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 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 static_library("webusb") { |
| 6 sources = [ |
| 7 "webusb_browser_client.cc", |
| 8 "webusb_browser_client.h", |
| 9 "webusb_detector.cc", |
| 10 "webusb_detector.h", |
| 11 ] |
| 12 |
| 13 deps = [ |
| 14 "//base", |
| 15 "//components/keyed_service/core", |
| 16 "//components/strings", |
| 17 "//device/core", |
| 18 "//device/usb", |
| 19 "//ui/base", |
| 20 "//ui/gfx", |
| 21 "//ui/message_center", |
| 22 ] |
| 23 } |
OLD | NEW |