commit | 5a139ba8b5636e7196714b4132b9240b18579ed3 | [log] [tgz] |
---|---|---|
author | sammc <[email protected]> | Thu Sep 29 01:49:14 2016 |
committer | Commit bot <[email protected]> | Thu Sep 29 01:51:40 2016 |
tree | 8268ef960edaf1041525ae051fa86106b0721dd5 | |
parent | ac6c09843c7a5567de5cf0e11d7f915287e74ab2 [diff] [blame] |
Move registration of Java mojo interfaces to the new InterfaceRegistrar. Previously, Java-implemented mojo interfaces were registered on the C++ InterfaceRegistries via JNI. This CL migrates those registrations to dedicated Java InterfaceRegistries that C++ code can access via corresponding InterfaceProviders. BUG=634568, 637174 CQ_INCLUDE_TRYBOTS=master.tryserver.chromium.linux:linux_site_isolation Committed: https://crrev.com/58dcb20da65389d841cd02d9197fb43efb6e8ee2 Review-Url: https://codereview.chromium.org/2214383002 Cr-Original-Commit-Position: refs/heads/master@{#421403} Cr-Commit-Position: refs/heads/master@{#421711}
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn index b88117f..bb368cc 100644 --- a/chrome/browser/BUILD.gn +++ b/chrome/browser/BUILD.gn
@@ -3475,6 +3475,10 @@ } } + if (android_java_ui) { + deps += [ "//third_party/WebKit/public:android_mojo_bindings" ] + } + if (enable_plugin_installation) { sources += [ "plugins/plugin_installer.cc",