Index: extensions/browser/api/hid/BUILD.gn |
diff --git a/components/subresource_filter/content/common/BUILD.gn b/extensions/browser/api/hid/BUILD.gn |
similarity index 50% |
copy from components/subresource_filter/content/common/BUILD.gn |
copy to extensions/browser/api/hid/BUILD.gn |
index a6aee28496abfbba30960208c28e0023af97a566..1af72765f0c32c04bd7dc8b0bd8c07155ddf301b 100644 |
--- a/components/subresource_filter/content/common/BUILD.gn |
+++ b/extensions/browser/api/hid/BUILD.gn |
@@ -2,15 +2,19 @@ |
# Use of this source code is governed by a BSD-style license that can be |
# found in the LICENSE file. |
-static_library("common") { |
+source_set("hid") { |
sources = [ |
- "subresource_filter_message_generator.cc", |
- "subresource_filter_message_generator.h", |
- "subresource_filter_messages.h", |
+ "hid_api.cc", |
+ "hid_api.h", |
+ "hid_connection_resource.cc", |
+ "hid_connection_resource.h", |
+ "hid_device_manager.cc", |
+ "hid_device_manager.h", |
] |
+ |
deps = [ |
- "//components/subresource_filter/core/common", |
"//content/public/common", |
- "//ipc", |
+ "//extensions/common/api", |
+ "//skia", |
] |
} |