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

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

Issue 1143343004: Rationalise hit testing in the new RenderNode world (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 6 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
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("sdk") { 7 dart_pkg("sdk") {
8 sources = [ 8 sources = [
9 "CHANGELOG.md", 9 "CHANGELOG.md",
10 "bin/init.dart", 10 "bin/init.dart",
11 "lib/assets/.gitignore", 11 "lib/assets/.gitignore",
12 "lib/assets/material-design-icons.sha1", 12 "lib/assets/material-design-icons.sha1",
13 "lib/download_material_design_icons", 13 "lib/download_material_design_icons",
14 "lib/framework/README.md", 14 "lib/framework/README.md",
15 "lib/framework/animation/animated_value.dart", 15 "lib/framework/animation/animated_value.dart",
16 "lib/framework/animation/curves.dart", 16 "lib/framework/animation/curves.dart",
17 "lib/framework/animation/fling_curve.dart", 17 "lib/framework/animation/fling_curve.dart",
18 "lib/framework/animation/generators.dart", 18 "lib/framework/animation/generators.dart",
19 "lib/framework/animation/mechanics.dart", 19 "lib/framework/animation/mechanics.dart",
20 "lib/framework/animation/scroll_behavior.dart", 20 "lib/framework/animation/scroll_behavior.dart",
21 "lib/framework/app.dart",
21 "lib/framework/components/animated_component.dart", 22 "lib/framework/components/animated_component.dart",
22 "lib/framework/components/button.dart", 23 "lib/framework/components/button.dart",
23 "lib/framework/components/button_base.dart", 24 "lib/framework/components/button_base.dart",
24 "lib/framework/components/checkbox.dart", 25 "lib/framework/components/checkbox.dart",
25 "lib/framework/components/drawer.dart", 26 "lib/framework/components/drawer.dart",
26 "lib/framework/components/drawer_header.dart", 27 "lib/framework/components/drawer_header.dart",
27 "lib/framework/components/fixed_height_scrollable.dart", 28 "lib/framework/components/fixed_height_scrollable.dart",
28 "lib/framework/components/floating_action_button.dart", 29 "lib/framework/components/floating_action_button.dart",
29 "lib/framework/components/icon.dart", 30 "lib/framework/components/icon.dart",
30 "lib/framework/components/icon_button.dart", 31 "lib/framework/components/icon_button.dart",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 deps = [ 85 deps = [
85 "//sky/services/testing:bindings", 86 "//sky/services/testing:bindings",
86 ] 87 ]
87 88
88 datadeps = [ 89 datadeps = [
89 "//sky/engine/bindings", 90 "//sky/engine/bindings",
90 ] 91 ]
91 92
92 sdk_ext_directory = "$root_gen_dir/sky/bindings" 93 sdk_ext_directory = "$root_gen_dir/sky/bindings"
93 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698