Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2322)

Unified Diff: content/renderer/BUILD.gn

Issue 1293253002: Connect WebUSB client interface to the devices app (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix memory leak in WeakBindingSet Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/test/render_view_test.cc ('k') | content/renderer/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/BUILD.gn
diff --git a/content/renderer/BUILD.gn b/content/renderer/BUILD.gn
index e05fe0309064e8312461465b998fc85ba5457901..bf592b5833943d8037aa7e284c39bdf096c715f6 100644
--- a/content/renderer/BUILD.gn
+++ b/content/renderer/BUILD.gn
@@ -81,7 +81,15 @@ source_set("renderer") {
}
if (is_android) {
- sources -= [ "media/audio_decoder.cc" ]
+ sources -= [
+ "media/audio_decoder.cc",
+ "usb/type_converters.cc",
+ "usb/type_converters.h",
+ "usb/web_usb_client_impl.cc",
+ "usb/web_usb_client_impl.h",
+ "usb/web_usb_device_impl.cc",
+ "usb/web_usb_device_impl.h",
+ ]
sources += [
"external_popup_menu.cc",
"external_popup_menu.h",
@@ -106,6 +114,11 @@ source_set("renderer") {
"java/gin_java_function_invocation_helper.cc",
"java/gin_java_function_invocation_helper.h",
]
+
+ deps += [
+ "//device/devices_app/public/cpp",
+ "//device/devices_app/usb/public/interfaces",
+ ]
}
# TODO(jrg): remove the OS=="android" section?
« no previous file with comments | « content/public/test/render_view_test.cc ('k') | content/renderer/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698