Commit e3ccb44f authored by Yuzhu Shen's avatar Yuzhu Shen Committed by Commit Bot

Mojo JS bindings: no need to generate the service_manager JS bindings.

BUG=699569

Change-Id: I0697f40e286a3ea7fbcccff3c02a605abc7bd8c5
Reviewed-on: https://chromium-review.googlesource.com/592280Reviewed-by: default avatarJohn Abd-El-Malek <jam@chromium.org>
Commit-Queue: Yuzhu Shen <yzshen@chromium.org>
Cr-Commit-Position: refs/heads/master@{#491500}
parent 730ce05c
......@@ -883,7 +883,6 @@ if (!is_ios && !is_fuchsia) {
"//mojo/public/interfaces/bindings/tests:test_data_deps",
"//services/device/public/interfaces:interfaces_js_data_deps",
"//services/device/public/interfaces:generic_sensor_js_data_deps",
"//services/service_manager/public/interfaces:interfaces_js_data_deps",
"//services/shape_detection/public/interfaces:interfaces_js_data_deps",
"//third_party/WebKit/public:blink_devtools_frontend_resources_files",
"//third_party/WebKit/public:mojo_bindings_js_data_deps",
......
......@@ -22,9 +22,6 @@ mojom_component("interfaces") {
":constants",
"//mojo/common:common_custom_types",
]
# TODO(crbug.com/699569): Convert to use the new JS bindings.
use_new_js_bindings = false
}
mojom_component("constants") {
......@@ -33,7 +30,4 @@ mojom_component("constants") {
sources = [
"constants.mojom",
]
# TODO(crbug.com/699569): Convert to use the new JS bindings.
use_new_js_bindings = false
}
......@@ -93,17 +93,6 @@ mojo_test(mojo => {
});
}, 'Test code can receive response messages from mock interfaces.');
mojo_test(() => {
return loadMojoModules(
'module loading test',
['services/service_manager/public/interfaces/interface_provider.mojom']).then(mojo => {
let interfaceProvider = mojo.modules[0];
assert_equals(interfaceProvider.InterfaceProvider.name,
'service_manager::mojom::InterfaceProvider');
});
}, 'Generated mojo bindings can be loaded in tests');
mojo_test(() => {
return new Promise(resolve => {
let iframe = document.createElement('iframe');
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment