Index: extensions/browser/api/hid/BUILD.gn |
diff --git a/components/printing/browser/BUILD.gn b/extensions/browser/api/hid/BUILD.gn |
similarity index 53% |
copy from components/printing/browser/BUILD.gn |
copy to extensions/browser/api/hid/BUILD.gn |
index bddd3a67d52f7af953ffed21aad12bb33ddf0f4d..2b81fe1c14259549316ea0a7d2e632f4dc18be0b 100644 |
--- a/components/printing/browser/BUILD.gn |
+++ b/extensions/browser/api/hid/BUILD.gn |
@@ -1,19 +1,18 @@ |
# 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("hid") { |
sources = [ |
- "print_manager.cc", |
- "print_manager.h", |
- "print_manager_utils.cc", |
- "print_manager_utils.h", |
+ "hid_api.cc", |
+ "hid_api.h", |
+ "hid_connection_resource.cc", |
+ "hid_connection_resource.h", |
+ "hid_device_manager.cc", |
+ "hid_device_manager.h", |
] |
deps = [ |
- "//base", |
- "//components/printing/common", |
"//content/public/browser", |
- "//printing", |
+ "//skia", |
] |
} |