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

Side by Side Diff: cc/BUILD.gn

Issue 666163006: Allow layers to signal that additional sequences are needed before surface destruction (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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/cc.gyp » ('j') | cc/layers/surface_holder.h » ('J')
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 component("cc") { 5 component("cc") {
6 sources = [ 6 sources = [
7 "animation/animation.cc", 7 "animation/animation.cc",
8 "animation/animation.h", 8 "animation/animation.h",
9 "animation/animation_curve.cc", 9 "animation/animation_curve.cc",
10 "animation/animation_curve.h", 10 "animation/animation_curve.h",
(...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "layers/scrollbar_layer_impl_base.h", 184 "layers/scrollbar_layer_impl_base.h",
185 "layers/scrollbar_layer_interface.h", 185 "layers/scrollbar_layer_interface.h",
186 "layers/solid_color_layer.cc", 186 "layers/solid_color_layer.cc",
187 "layers/solid_color_layer.h", 187 "layers/solid_color_layer.h",
188 "layers/solid_color_layer_impl.cc", 188 "layers/solid_color_layer_impl.cc",
189 "layers/solid_color_layer_impl.h", 189 "layers/solid_color_layer_impl.h",
190 "layers/solid_color_scrollbar_layer.cc", 190 "layers/solid_color_scrollbar_layer.cc",
191 "layers/solid_color_scrollbar_layer.h", 191 "layers/solid_color_scrollbar_layer.h",
192 "layers/solid_color_scrollbar_layer_impl.cc", 192 "layers/solid_color_scrollbar_layer_impl.cc",
193 "layers/solid_color_scrollbar_layer_impl.h", 193 "layers/solid_color_scrollbar_layer_impl.h",
194 "layers/surface_holder.cc",
195 "layers/surface_holder.h",
194 "layers/surface_layer.cc", 196 "layers/surface_layer.cc",
195 "layers/surface_layer.h", 197 "layers/surface_layer.h",
196 "layers/surface_layer_impl.cc", 198 "layers/surface_layer_impl.cc",
197 "layers/surface_layer_impl.h", 199 "layers/surface_layer_impl.h",
198 "layers/texture_layer.cc", 200 "layers/texture_layer.cc",
199 "layers/texture_layer.h", 201 "layers/texture_layer.h",
200 "layers/texture_layer_client.h", 202 "layers/texture_layer_client.h",
201 "layers/texture_layer_impl.cc", 203 "layers/texture_layer_impl.cc",
202 "layers/texture_layer_impl.h", 204 "layers/texture_layer_impl.h",
203 "layers/tiled_layer.cc", 205 "layers/tiled_layer.cc",
(...skipping 488 matching lines...) Expand 10 before | Expand all | Expand 10 after
692 "layers/nine_patch_layer_unittest.cc", 694 "layers/nine_patch_layer_unittest.cc",
693 "layers/painted_scrollbar_layer_impl_unittest.cc", 695 "layers/painted_scrollbar_layer_impl_unittest.cc",
694 "layers/picture_image_layer_impl_unittest.cc", 696 "layers/picture_image_layer_impl_unittest.cc",
695 "layers/picture_layer_impl_unittest.cc", 697 "layers/picture_layer_impl_unittest.cc",
696 "layers/picture_layer_unittest.cc", 698 "layers/picture_layer_unittest.cc",
697 "layers/render_surface_unittest.cc", 699 "layers/render_surface_unittest.cc",
698 "layers/render_surface_impl_unittest.cc", 700 "layers/render_surface_impl_unittest.cc",
699 "layers/scrollbar_layer_unittest.cc", 701 "layers/scrollbar_layer_unittest.cc",
700 "layers/solid_color_layer_impl_unittest.cc", 702 "layers/solid_color_layer_impl_unittest.cc",
701 "layers/solid_color_scrollbar_layer_impl_unittest.cc", 703 "layers/solid_color_scrollbar_layer_impl_unittest.cc",
704 "layers/surface_layer_unittest.cc",
702 "layers/surface_layer_impl_unittest.cc", 705 "layers/surface_layer_impl_unittest.cc",
703 "layers/texture_layer_unittest.cc", 706 "layers/texture_layer_unittest.cc",
704 "layers/texture_layer_impl_unittest.cc", 707 "layers/texture_layer_impl_unittest.cc",
705 "layers/tiled_layer_impl_unittest.cc", 708 "layers/tiled_layer_impl_unittest.cc",
706 "layers/tiled_layer_unittest.cc", 709 "layers/tiled_layer_unittest.cc",
707 "layers/ui_resource_layer_impl_unittest.cc", 710 "layers/ui_resource_layer_impl_unittest.cc",
708 "layers/ui_resource_layer_unittest.cc", 711 "layers/ui_resource_layer_unittest.cc",
709 "layers/video_layer_impl_unittest.cc", 712 "layers/video_layer_impl_unittest.cc",
710 "output/begin_frame_args_unittest.cc", 713 "output/begin_frame_args_unittest.cc",
711 "output/delegating_renderer_unittest.cc", 714 "output/delegating_renderer_unittest.cc",
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
825 "//gpu/command_buffer/common:gles2_utils", 828 "//gpu/command_buffer/common:gles2_utils",
826 "//media", 829 "//media",
827 "//skia", 830 "//skia",
828 "//testing/gmock", 831 "//testing/gmock",
829 "//testing/gtest", 832 "//testing/gtest",
830 "//testing/perf", 833 "//testing/perf",
831 "//ui/gfx", 834 "//ui/gfx",
832 "//ui/gfx/geometry", 835 "//ui/gfx/geometry",
833 ] 836 ]
834 } 837 }
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/layers/surface_holder.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698