| Index: mojo/public/tools/bindings/generators/js_templates/module.js.tmpl
|
| diff --git a/mojo/public/tools/bindings/generators/js_templates/module.js.tmpl b/mojo/public/tools/bindings/generators/js_templates/module.js.tmpl
|
| index 9b3046825c1d13e1efd24068d3a9e7fb74866087..8e67f384323dc6f5f7ae5053a0af0888b919630c 100644
|
| --- a/mojo/public/tools/bindings/generators/js_templates/module.js.tmpl
|
| +++ b/mojo/public/tools/bindings/generators/js_templates/module.js.tmpl
|
| @@ -3,12 +3,11 @@
|
| // found in the LICENSE file.
|
|
|
| define("{{module.path}}", [
|
| - "mojo/public/js/bindings/core",
|
| "mojo/public/js/bindings/codec",
|
| {%- for import in imports %}
|
| "{{import.module.path}}",
|
| {%- endfor %}
|
| - ], function(core, codec
|
| + ], function(codec
|
| {%- for import in imports -%}
|
| , {{import.unique_name}}
|
| {%- endfor -%}
|
|
|