| Index: sky/sdk/BUILD.gn
|
| diff --git a/sky/sdk/BUILD.gn b/sky/sdk/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5e55a633226ae2743a5127766a7243e850c4f0ec
|
| --- /dev/null
|
| +++ b/sky/sdk/BUILD.gn
|
| @@ -0,0 +1,86 @@
|
| +# Copyright 2015 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.
|
| +
|
| +import("//mojo/public/dart/rules.gni")
|
| +
|
| +dart_pkg("sdk") {
|
| + sources = [
|
| + "CHANGELOG.md",
|
| + "bin/init.dart",
|
| + "lib/assets/.gitignore",
|
| + "lib/assets/material-design-icons.sha1",
|
| + "lib/download_material_design_icons",
|
| + "lib/framework/README.md",
|
| + "lib/framework/animation/animated_value.dart",
|
| + "lib/framework/animation/curves.dart",
|
| + "lib/framework/animation/fling_curve.dart",
|
| + "lib/framework/animation/generators.dart",
|
| + "lib/framework/animation/mechanics.dart",
|
| + "lib/framework/animation/scroll_behavior.dart",
|
| + "lib/framework/components/action_bar.dart",
|
| + "lib/framework/components/animated_component.dart",
|
| + "lib/framework/components/button.dart",
|
| + "lib/framework/components/button_base.dart",
|
| + "lib/framework/components/checkbox.dart",
|
| + "lib/framework/components/drawer.dart",
|
| + "lib/framework/components/drawer_header.dart",
|
| + "lib/framework/components/fixed_height_scrollable.dart",
|
| + "lib/framework/components/floating_action_button.dart",
|
| + "lib/framework/components/icon.dart",
|
| + "lib/framework/components/icon_button.dart",
|
| + "lib/framework/components/ink_splash.dart",
|
| + "lib/framework/components/ink_well.dart",
|
| + "lib/framework/components/input.dart",
|
| + "lib/framework/components/material.dart",
|
| + "lib/framework/components/menu_divider.dart",
|
| + "lib/framework/components/menu_item.dart",
|
| + "lib/framework/components/modal_overlay.dart",
|
| + "lib/framework/components/popup_menu.dart",
|
| + "lib/framework/components/popup_menu_item.dart",
|
| + "lib/framework/components/radio.dart",
|
| + "lib/framework/components/scaffold.dart",
|
| + "lib/framework/components/scrollable.dart",
|
| + "lib/framework/debug/shake-to-reload.sky",
|
| + "lib/framework/debug/tracing.dart",
|
| + "lib/framework/editing/editable_string.dart",
|
| + "lib/framework/editing/editable_text.dart",
|
| + "lib/framework/editing/keyboard.dart",
|
| + "lib/framework/elements/animation/controller.dart",
|
| + "lib/framework/elements/animation/timer.dart",
|
| + "lib/framework/elements/material-element.sky",
|
| + "lib/framework/elements/shadow.sky",
|
| + "lib/framework/elements/sky-box.sky",
|
| + "lib/framework/elements/sky-button.sky",
|
| + "lib/framework/elements/sky-checkbox.sky",
|
| + "lib/framework/elements/sky-drawer-header.sky",
|
| + "lib/framework/elements/sky-drawer.sky",
|
| + "lib/framework/elements/sky-element.sky",
|
| + "lib/framework/elements/sky-icon.sky",
|
| + "lib/framework/elements/sky-ink-splash.sky",
|
| + "lib/framework/elements/sky-input.sky",
|
| + "lib/framework/elements/sky-menu-divider.sky",
|
| + "lib/framework/elements/sky-menu-item.sky",
|
| + "lib/framework/elements/sky-radio.sky",
|
| + "lib/framework/elements/sky-scrollable.sky",
|
| + "lib/framework/elements/sky-toolbar.sky",
|
| + "lib/framework/embedder.dart",
|
| + "lib/framework/fn.dart",
|
| + "lib/framework/layout.dart",
|
| + "lib/framework/layouts/block.dart",
|
| + "lib/framework/net/fetch.dart",
|
| + "lib/framework/node.dart",
|
| + "lib/framework/reflect.dart",
|
| + "lib/framework/shell.dart",
|
| + "lib/framework/theme/colors.dart",
|
| + "lib/framework/theme/shadows.dart",
|
| + "lib/framework/theme/typography.dart",
|
| + "lib/framework/theme/view_configuration.dart",
|
| + "lib/sky_tool",
|
| + "pubspec.yaml",
|
| + ]
|
| +
|
| + deps = [
|
| + "//sky/services/testing:bindings",
|
| + ]
|
| +}
|
|
|