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

Side by Side Diff: cc/BUILD.gn

Issue 2492133002: CC Animation: Move ElementId from animation to trees. (Closed)
Patch Set: Rebase. Created 4 years, 1 month 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 | cc/animation/animation_events.h » ('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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 component("cc") { 8 component("cc") {
9 sources = [ 9 sources = [
10 "animation/animation.cc", 10 "animation/animation.cc",
11 "animation/animation.h", 11 "animation/animation.h",
12 "animation/animation_curve.cc", 12 "animation/animation_curve.cc",
13 "animation/animation_curve.h", 13 "animation/animation_curve.h",
14 "animation/animation_delegate.h", 14 "animation/animation_delegate.h",
15 "animation/animation_events.cc", 15 "animation/animation_events.cc",
16 "animation/animation_events.h", 16 "animation/animation_events.h",
17 "animation/animation_host.cc", 17 "animation/animation_host.cc",
18 "animation/animation_host.h", 18 "animation/animation_host.h",
19 "animation/animation_id_provider.cc", 19 "animation/animation_id_provider.cc",
20 "animation/animation_id_provider.h", 20 "animation/animation_id_provider.h",
21 "animation/animation_player.cc", 21 "animation/animation_player.cc",
22 "animation/animation_player.h", 22 "animation/animation_player.h",
23 "animation/animation_timeline.cc", 23 "animation/animation_timeline.cc",
24 "animation/animation_timeline.h", 24 "animation/animation_timeline.h",
25 "animation/element_animations.cc", 25 "animation/element_animations.cc",
26 "animation/element_animations.h", 26 "animation/element_animations.h",
27 "animation/element_id.cc",
28 "animation/element_id.h",
29 "animation/keyframed_animation_curve.cc", 27 "animation/keyframed_animation_curve.cc",
30 "animation/keyframed_animation_curve.h", 28 "animation/keyframed_animation_curve.h",
31 "animation/property_animation_state.cc", 29 "animation/property_animation_state.cc",
32 "animation/property_animation_state.h", 30 "animation/property_animation_state.h",
33 "animation/scroll_offset_animation_curve.cc", 31 "animation/scroll_offset_animation_curve.cc",
34 "animation/scroll_offset_animation_curve.h", 32 "animation/scroll_offset_animation_curve.h",
35 "animation/scroll_offset_animations.cc", 33 "animation/scroll_offset_animations.cc",
36 "animation/scroll_offset_animations.h", 34 "animation/scroll_offset_animations.h",
37 "animation/scroll_offset_animations_impl.cc", 35 "animation/scroll_offset_animations_impl.cc",
38 "animation/scroll_offset_animations_impl.h", 36 "animation/scroll_offset_animations_impl.h",
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
503 "trees/channel_main.h", 501 "trees/channel_main.h",
504 "trees/clip_node.cc", 502 "trees/clip_node.cc",
505 "trees/clip_node.h", 503 "trees/clip_node.h",
506 "trees/compositor_mode.h", 504 "trees/compositor_mode.h",
507 "trees/damage_tracker.cc", 505 "trees/damage_tracker.cc",
508 "trees/damage_tracker.h", 506 "trees/damage_tracker.h",
509 "trees/draw_property_utils.cc", 507 "trees/draw_property_utils.cc",
510 "trees/draw_property_utils.h", 508 "trees/draw_property_utils.h",
511 "trees/effect_node.cc", 509 "trees/effect_node.cc",
512 "trees/effect_node.h", 510 "trees/effect_node.h",
511 "trees/element_id.cc",
512 "trees/element_id.h",
513 "trees/latency_info_swap_promise_monitor.cc", 513 "trees/latency_info_swap_promise_monitor.cc",
514 "trees/latency_info_swap_promise_monitor.h", 514 "trees/latency_info_swap_promise_monitor.h",
515 "trees/layer_tree.cc", 515 "trees/layer_tree.cc",
516 "trees/layer_tree.h", 516 "trees/layer_tree.h",
517 "trees/layer_tree_host.h", 517 "trees/layer_tree_host.h",
518 "trees/layer_tree_host_client.h", 518 "trees/layer_tree_host_client.h",
519 "trees/layer_tree_host_common.cc", 519 "trees/layer_tree_host_common.cc",
520 "trees/layer_tree_host_common.h", 520 "trees/layer_tree_host_common.h",
521 "trees/layer_tree_host_impl.cc", 521 "trees/layer_tree_host_impl.cc",
522 "trees/layer_tree_host_impl.h", 522 "trees/layer_tree_host_impl.h",
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1074 data = [ 1074 data = [
1075 "test/data/", 1075 "test/data/",
1076 1076
1077 # Needed for isolate script to execute. 1077 # Needed for isolate script to execute.
1078 "//testing/scripts/common.py", 1078 "//testing/scripts/common.py",
1079 "//testing/xvfb.py", 1079 "//testing/xvfb.py",
1080 "//testing/scripts/run_gtest_perf_test.py", 1080 "//testing/scripts/run_gtest_perf_test.py",
1081 "//tools/perf/generate_legacy_perf_dashboard_json.py", 1081 "//tools/perf/generate_legacy_perf_dashboard_json.py",
1082 ] 1082 ]
1083 } 1083 }
OLDNEW
« no previous file with comments | « no previous file | cc/animation/animation_events.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698