Index: extensions/browser/api/usb/BUILD.gn |
diff --git a/components/printing/browser/BUILD.gn b/extensions/browser/api/usb/BUILD.gn |
similarity index 50% |
copy from components/printing/browser/BUILD.gn |
copy to extensions/browser/api/usb/BUILD.gn |
index bddd3a67d52f7af953ffed21aad12bb33ddf0f4d..9e69294c3c82f55a7331884a9f8315a079cd31da 100644 |
--- a/components/printing/browser/BUILD.gn |
+++ b/extensions/browser/api/usb/BUILD.gn |
@@ -1,19 +1,20 @@ |
# Copyright 2015 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. |
- |
-static_library("browser") { |
+source_set("usb") { |
sources = [ |
- "print_manager.cc", |
- "print_manager.h", |
- "print_manager_utils.cc", |
- "print_manager_utils.h", |
+ "usb_api.cc", |
+ "usb_api.h", |
+ "usb_device_resource.cc", |
+ "usb_device_resource.h", |
+ "usb_event_router.cc", |
+ "usb_event_router.h", |
+ "usb_guid_map.cc", |
+ "usb_guid_map.h", |
] |
deps = [ |
- "//base", |
- "//components/printing/common", |
"//content/public/browser", |
- "//printing", |
+ "//skia", |
] |
} |