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

Side by Side Diff: cc/BUILD.gn

Issue 309493002: Remove QuadCuller class and make QuadSink concrete (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@test2ownMock
Patch Set: gn build fix Created 6 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
« no previous file with comments | « no previous file | cc/cc.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 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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 "layers/painted_scrollbar_layer_impl.h", 158 "layers/painted_scrollbar_layer_impl.h",
159 "layers/picture_image_layer.cc", 159 "layers/picture_image_layer.cc",
160 "layers/picture_image_layer.h", 160 "layers/picture_image_layer.h",
161 "layers/picture_image_layer_impl.cc", 161 "layers/picture_image_layer_impl.cc",
162 "layers/picture_image_layer_impl.h", 162 "layers/picture_image_layer_impl.h",
163 "layers/picture_layer.cc", 163 "layers/picture_layer.cc",
164 "layers/picture_layer.h", 164 "layers/picture_layer.h",
165 "layers/picture_layer_impl.cc", 165 "layers/picture_layer_impl.cc",
166 "layers/picture_layer_impl.h", 166 "layers/picture_layer_impl.h",
167 "layers/quad_sink.h", 167 "layers/quad_sink.h",
168 "layers/quad_sink.cc",
168 "layers/render_pass_sink.h", 169 "layers/render_pass_sink.h",
169 "layers/render_surface.cc", 170 "layers/render_surface.cc",
170 "layers/render_surface.h", 171 "layers/render_surface.h",
171 "layers/render_surface_impl.cc", 172 "layers/render_surface_impl.cc",
172 "layers/render_surface_impl.h", 173 "layers/render_surface_impl.h",
173 "layers/scrollbar_layer_impl_base.cc", 174 "layers/scrollbar_layer_impl_base.cc",
174 "layers/scrollbar_layer_impl_base.h", 175 "layers/scrollbar_layer_impl_base.h",
175 "layers/scrollbar_layer_interface.h", 176 "layers/scrollbar_layer_interface.h",
176 "layers/solid_color_layer.cc", 177 "layers/solid_color_layer.cc",
177 "layers/solid_color_layer.h", 178 "layers/solid_color_layer.h",
(...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 "trees/layer_tree_impl.cc", 424 "trees/layer_tree_impl.cc",
424 "trees/layer_tree_impl.h", 425 "trees/layer_tree_impl.h",
425 "trees/layer_tree_settings.cc", 426 "trees/layer_tree_settings.cc",
426 "trees/layer_tree_settings.h", 427 "trees/layer_tree_settings.h",
427 "trees/occlusion_tracker.cc", 428 "trees/occlusion_tracker.cc",
428 "trees/occlusion_tracker.h", 429 "trees/occlusion_tracker.h",
429 "trees/proxy.cc", 430 "trees/proxy.cc",
430 "trees/proxy.h", 431 "trees/proxy.h",
431 "trees/proxy_timing_history.cc", 432 "trees/proxy_timing_history.cc",
432 "trees/proxy_timing_history.h", 433 "trees/proxy_timing_history.h",
433 "trees/quad_culler.cc",
434 "trees/quad_culler.h",
435 "trees/single_thread_proxy.cc", 434 "trees/single_thread_proxy.cc",
436 "trees/single_thread_proxy.h", 435 "trees/single_thread_proxy.h",
437 "trees/thread_proxy.cc", 436 "trees/thread_proxy.cc",
438 "trees/thread_proxy.h", 437 "trees/thread_proxy.h",
439 "trees/tree_synchronizer.cc", 438 "trees/tree_synchronizer.cc",
440 "trees/tree_synchronizer.h", 439 "trees/tree_synchronizer.h",
441 ] 440 ]
442 441
443 if (is_win) { 442 if (is_win) {
444 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 443 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
555 "test/layer_test_common.cc", 554 "test/layer_test_common.cc",
556 "test/layer_test_common.h", 555 "test/layer_test_common.h",
557 "test/layer_tree_host_common_test.cc", 556 "test/layer_tree_host_common_test.cc",
558 "test/layer_tree_host_common_test.h", 557 "test/layer_tree_host_common_test.h",
559 "test/layer_tree_json_parser.cc", 558 "test/layer_tree_json_parser.cc",
560 "test/layer_tree_json_parser.h", 559 "test/layer_tree_json_parser.h",
561 "test/layer_tree_pixel_test.cc", 560 "test/layer_tree_pixel_test.cc",
562 "test/layer_tree_pixel_test.h", 561 "test/layer_tree_pixel_test.h",
563 "test/layer_tree_test.cc", 562 "test/layer_tree_test.cc",
564 "test/layer_tree_test.h", 563 "test/layer_tree_test.h",
564 "test/mock_occlusion_tracker.h",
565 "test/mock_quad_culler.cc", 565 "test/mock_quad_culler.cc",
566 "test/mock_quad_culler.h", 566 "test/mock_quad_culler.h",
567 "test/ordered_texture_map.cc", 567 "test/ordered_texture_map.cc",
568 "test/ordered_texture_map.h", 568 "test/ordered_texture_map.h",
569 "test/paths.cc", 569 "test/paths.cc",
570 "test/paths.h", 570 "test/paths.h",
571 "test/pixel_comparator.cc", 571 "test/pixel_comparator.cc",
572 "test/pixel_comparator.h", 572 "test/pixel_comparator.h",
573 "test/pixel_test.cc", 573 "test/pixel_test.cc",
574 "test/pixel_test.h", 574 "test/pixel_test.h",
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 "//ui/gfx", 772 "//ui/gfx",
773 "//ui/gfx/geometry", 773 "//ui/gfx/geometry",
774 ] 774 ]
775 } 775 }
776 776
777 test("cc_perftests") { 777 test("cc_perftests") {
778 # TODO(GYP) 778 # TODO(GYP)
779 } 779 }
780 780
781 } # if false 781 } # if false
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698