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

Side by Side Diff: cc/cc.gyp

Issue 947033002: CC Animations: Establish AnimationHost, AnimationTimeline and AnimationPlayer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix MSVC warning. 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 | « cc/blink/web_compositor_support_impl.cc ('k') | cc/cc_tests.gyp » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 21 matching lines...) Expand all
32 ], 32 ],
33 'sources': [ 33 'sources': [
34 # Note: file list duplicated in GN build. 34 # Note: file list duplicated in GN build.
35 'animation/animation.cc', 35 'animation/animation.cc',
36 'animation/animation.h', 36 'animation/animation.h',
37 'animation/animation_curve.cc', 37 'animation/animation_curve.cc',
38 'animation/animation_curve.h', 38 'animation/animation_curve.h',
39 'animation/animation_delegate.h', 39 'animation/animation_delegate.h',
40 'animation/animation_events.cc', 40 'animation/animation_events.cc',
41 'animation/animation_events.h', 41 'animation/animation_events.h',
42 'animation/animation_host.cc',
43 'animation/animation_host.h',
42 'animation/animation_id_provider.cc', 44 'animation/animation_id_provider.cc',
43 'animation/animation_id_provider.h', 45 'animation/animation_id_provider.h',
46 'animation/animation_player.cc',
47 'animation/animation_player.h',
44 'animation/animation_registrar.cc', 48 'animation/animation_registrar.cc',
45 'animation/animation_registrar.h', 49 'animation/animation_registrar.h',
50 'animation/animation_timeline.cc',
51 'animation/animation_timeline.h',
52 'animation/element_animations.cc',
53 'animation/element_animations.h',
46 'animation/keyframed_animation_curve.cc', 54 'animation/keyframed_animation_curve.cc',
47 'animation/keyframed_animation_curve.h', 55 'animation/keyframed_animation_curve.h',
48 'animation/layer_animation_controller.cc', 56 'animation/layer_animation_controller.cc',
49 'animation/layer_animation_controller.h', 57 'animation/layer_animation_controller.h',
50 'animation/layer_animation_event_observer.h', 58 'animation/layer_animation_event_observer.h',
51 'animation/layer_animation_value_observer.h', 59 'animation/layer_animation_value_observer.h',
52 'animation/layer_animation_value_provider.h', 60 'animation/layer_animation_value_provider.h',
53 'animation/scroll_offset_animation_curve.cc', 61 'animation/scroll_offset_animation_curve.cc',
54 'animation/scroll_offset_animation_curve.h', 62 'animation/scroll_offset_animation_curve.h',
55 'animation/scrollbar_animation_controller.cc', 63 'animation/scrollbar_animation_controller.cc',
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after
522 'trees/layer_tree_host_client.h', 530 'trees/layer_tree_host_client.h',
523 'trees/layer_tree_host_common.cc', 531 'trees/layer_tree_host_common.cc',
524 'trees/layer_tree_host_common.h', 532 'trees/layer_tree_host_common.h',
525 'trees/layer_tree_host_impl.cc', 533 'trees/layer_tree_host_impl.cc',
526 'trees/layer_tree_host_impl.h', 534 'trees/layer_tree_host_impl.h',
527 'trees/layer_tree_host_single_thread_client.h', 535 'trees/layer_tree_host_single_thread_client.h',
528 'trees/layer_tree_impl.cc', 536 'trees/layer_tree_impl.cc',
529 'trees/layer_tree_impl.h', 537 'trees/layer_tree_impl.h',
530 'trees/layer_tree_settings.cc', 538 'trees/layer_tree_settings.cc',
531 'trees/layer_tree_settings.h', 539 'trees/layer_tree_settings.h',
540 'trees/mutator_host_client.h',
532 'trees/occlusion.cc', 541 'trees/occlusion.cc',
533 'trees/occlusion.h', 542 'trees/occlusion.h',
534 'trees/occlusion_tracker.cc', 543 'trees/occlusion_tracker.cc',
535 'trees/occlusion_tracker.h', 544 'trees/occlusion_tracker.h',
536 'trees/property_tree.cc', 545 'trees/property_tree.cc',
537 'trees/property_tree.h', 546 'trees/property_tree.h',
538 'trees/property_tree_builder.cc', 547 'trees/property_tree_builder.cc',
539 'trees/property_tree_builder.h', 548 'trees/property_tree_builder.h',
540 'trees/proxy.cc', 549 'trees/proxy.cc',
541 'trees/proxy.h', 550 'trees/proxy.h',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
604 'surfaces/surface_resource_holder.cc', 613 'surfaces/surface_resource_holder.cc',
605 'surfaces/surface_resource_holder.h', 614 'surfaces/surface_resource_holder.h',
606 'surfaces/surfaces_export.h', 615 'surfaces/surfaces_export.h',
607 ], 616 ],
608 'includes': [ 617 'includes': [
609 '../build/android/increase_size_for_speed.gypi', 618 '../build/android/increase_size_for_speed.gypi',
610 ], 619 ],
611 }, 620 },
612 ], 621 ],
613 } 622 }
OLDNEW
« no previous file with comments | « cc/blink/web_compositor_support_impl.cc ('k') | cc/cc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698