Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Side by Side Diff: sky/sdk/BUILD.gn

Issue 1221883002: Remove package:sky/framework (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | sky/sdk/example/game/lib/sprites.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//mojo/public/dart/rules.gni") 5 import("//mojo/public/dart/rules.gni")
6 6
7 dart_pkg("sky") { 7 dart_pkg("sky") {
8 sources = [ 8 sources = [
9 "CHANGELOG.md", 9 "CHANGELOG.md",
10 "bin/init.dart", 10 "bin/init.dart",
11 "lib/animation/animated_value.dart", 11 "lib/animation/animated_value.dart",
12 "lib/animation/curves.dart", 12 "lib/animation/curves.dart",
13 "lib/animation/fling_curve.dart", 13 "lib/animation/fling_curve.dart",
14 "lib/animation/generators.dart", 14 "lib/animation/generators.dart",
15 "lib/animation/mechanics.dart", 15 "lib/animation/mechanics.dart",
16 "lib/animation/scroll_behavior.dart", 16 "lib/animation/scroll_behavior.dart",
17 "lib/assets/.gitignore", 17 "lib/assets/.gitignore",
18 "lib/assets/material-design-icons.sha1", 18 "lib/assets/material-design-icons.sha1",
19 "lib/base/debug.dart", 19 "lib/base/debug.dart",
20 "lib/base/hit_test.dart", 20 "lib/base/hit_test.dart",
21 "lib/base/node.dart", 21 "lib/base/node.dart",
22 "lib/base/scheduler.dart", 22 "lib/base/scheduler.dart",
23 "lib/download_material_design_icons", 23 "lib/download_material_design_icons",
24 "lib/editing/editable_string.dart", 24 "lib/editing/editable_string.dart",
25 "lib/editing/editable_text.dart", 25 "lib/editing/editable_text.dart",
26 "lib/editing/input.dart", 26 "lib/editing/input.dart",
27 "lib/editing/keyboard.dart", 27 "lib/editing/keyboard.dart",
28 "lib/framework/animation/animated_value.dart",
29 "lib/framework/animation/curves.dart",
30 "lib/framework/animation/fling_curve.dart",
31 "lib/framework/animation/generators.dart",
32 "lib/framework/animation/mechanics.dart",
33 "lib/framework/animation/scroll_behavior.dart",
34 "lib/framework/components/animated_component.dart",
35 "lib/framework/components/button.dart",
36 "lib/framework/components/button_base.dart",
37 "lib/framework/components/checkbox.dart",
38 "lib/framework/components/drawer.dart",
39 "lib/framework/components/drawer_header.dart",
40 "lib/framework/components/fixed_height_scrollable.dart",
41 "lib/framework/components/floating_action_button.dart",
42 "lib/framework/components/icon.dart",
43 "lib/framework/components/icon_button.dart",
44 "lib/framework/components/ink_splash.dart",
45 "lib/framework/components/ink_well.dart",
46 "lib/framework/components/input.dart",
47 "lib/framework/components/material.dart",
48 "lib/framework/components/menu_divider.dart",
49 "lib/framework/components/menu_item.dart",
50 "lib/framework/components/modal_overlay.dart",
51 "lib/framework/components/popup_menu.dart",
52 "lib/framework/components/popup_menu_item.dart",
53 "lib/framework/components/radio.dart",
54 "lib/framework/components/scaffold.dart",
55 "lib/framework/components/scrollable.dart",
56 "lib/framework/components/tool_bar.dart",
57 "lib/framework/debug/shake-to-reload.sky",
58 "lib/framework/debug/tracing.dart",
59 "lib/framework/editing/editable_string.dart",
60 "lib/framework/editing/editable_text.dart",
61 "lib/framework/editing/keyboard.dart",
62 "lib/framework/embedder.dart",
63 "lib/framework/fn.dart",
64 "lib/framework/layout.dart",
65 "lib/framework/net/fetch.dart",
66 "lib/framework/node.dart",
67 "lib/framework/reflect.dart",
68 "lib/framework/shell.dart",
69 "lib/framework/theme/colors.dart",
70 "lib/framework/theme/shadows.dart",
71 "lib/framework/theme/typography.dart",
72 "lib/framework/theme/view_configuration.dart",
73 "lib/mojo/asset_bundle.dart", 28 "lib/mojo/asset_bundle.dart",
74 "lib/mojo/embedder.dart", 29 "lib/mojo/embedder.dart",
75 "lib/mojo/net/fetch.dart", 30 "lib/mojo/net/fetch.dart",
76 "lib/mojo/net/image_cache.dart", 31 "lib/mojo/net/image_cache.dart",
77 "lib/mojo/shell.dart", 32 "lib/mojo/shell.dart",
78 "lib/painting/box_painter.dart", 33 "lib/painting/box_painter.dart",
79 "lib/painting/shadows.dart", 34 "lib/painting/shadows.dart",
80 "lib/painting/text_style.dart", 35 "lib/painting/text_style.dart",
81 "lib/rendering/block.dart", 36 "lib/rendering/block.dart",
82 "lib/rendering/box.dart", 37 "lib/rendering/box.dart",
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 ":sky", 125 ":sky",
171 ] 126 ]
172 } 127 }
173 128
174 group("sdk") { 129 group("sdk") {
175 deps = [ 130 deps = [
176 ":sky", 131 ":sky",
177 ":material_design_icons", 132 ":material_design_icons",
178 ] 133 ]
179 } 134 }
OLDNEW
« no previous file with comments | « no previous file | sky/sdk/example/game/lib/sprites.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698