blob: 3ce4ab649623db0677ae0005c1e0ef83b2e9cdf4 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
define("{{module.path}}", [
{%- if module.path != "mojo/public/interfaces/bindings/interface_control_messages.mojom" %}
"mojo/public/js/bindings",
{%- endif %}
"mojo/public/js/codec",
"mojo/public/js/core",
"mojo/public/js/validator",
{%- for import in imports %}
"{{import.module.path}}",
{%- endfor %}
], function(
{%- if module.path != "mojo/public/interfaces/bindings/interface_control_messages.mojom" -%}
bindings, {% endif -%}
codec, core, validator
{%- for import in imports -%}
, {{import.unique_name}}
{%- endfor -%}
) {
{%- include "module_definition.tmpl" %}
return exports;
});