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

Side by Side Diff: cc/BUILD.gn

Issue 595593002: Splitting of layers for correct intersections (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the static that was only used in ony place anyway Created 5 years, 9 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') | cc/output/direct_renderer.cc » ('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 import("//testing/test.gni") 5 import("//testing/test.gni")
6 6
7 component("cc") { 7 component("cc") {
8 sources = [ 8 sources = [
9 "animation/animation.cc", 9 "animation/animation.cc",
10 "animation/animation.h", 10 "animation/animation.h",
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 "output/copy_output_request.cc", 246 "output/copy_output_request.cc",
247 "output/copy_output_request.h", 247 "output/copy_output_request.h",
248 "output/copy_output_result.cc", 248 "output/copy_output_result.cc",
249 "output/copy_output_result.h", 249 "output/copy_output_result.h",
250 "output/delegated_frame_data.cc", 250 "output/delegated_frame_data.cc",
251 "output/delegated_frame_data.h", 251 "output/delegated_frame_data.h",
252 "output/delegating_renderer.cc", 252 "output/delegating_renderer.cc",
253 "output/delegating_renderer.h", 253 "output/delegating_renderer.h",
254 "output/direct_renderer.cc", 254 "output/direct_renderer.cc",
255 "output/direct_renderer.h", 255 "output/direct_renderer.h",
256 "output/dynamic_geometry_binding.cc",
257 "output/dynamic_geometry_binding.h",
256 "output/filter_operation.cc", 258 "output/filter_operation.cc",
257 "output/filter_operation.h", 259 "output/filter_operation.h",
258 "output/filter_operations.cc", 260 "output/filter_operations.cc",
259 "output/filter_operations.h", 261 "output/filter_operations.h",
260 "output/geometry_binding.cc", 262 "output/geometry_binding.cc",
261 "output/geometry_binding.h", 263 "output/geometry_binding.h",
262 "output/gl_frame_data.cc", 264 "output/gl_frame_data.cc",
263 "output/gl_frame_data.h", 265 "output/gl_frame_data.h",
264 "output/gl_renderer.cc", 266 "output/gl_renderer.cc",
265 "output/gl_renderer.h", 267 "output/gl_renderer.h",
(...skipping 20 matching lines...) Expand all
286 "output/renderer_settings.cc", 288 "output/renderer_settings.cc",
287 "output/renderer_settings.h", 289 "output/renderer_settings.h",
288 "output/shader.cc", 290 "output/shader.cc",
289 "output/shader.h", 291 "output/shader.h",
290 "output/software_frame_data.cc", 292 "output/software_frame_data.cc",
291 "output/software_frame_data.h", 293 "output/software_frame_data.h",
292 "output/software_output_device.cc", 294 "output/software_output_device.cc",
293 "output/software_output_device.h", 295 "output/software_output_device.h",
294 "output/software_renderer.cc", 296 "output/software_renderer.cc",
295 "output/software_renderer.h", 297 "output/software_renderer.h",
298 "output/static_geometry_binding.cc",
299 "output/static_geometry_binding.h",
296 "output/viewport_selection_bound.cc", 300 "output/viewport_selection_bound.cc",
297 "output/viewport_selection_bound.h", 301 "output/viewport_selection_bound.h",
298 "output/vsync_parameter_observer.h", 302 "output/vsync_parameter_observer.h",
299 "quads/checkerboard_draw_quad.cc", 303 "quads/checkerboard_draw_quad.cc",
300 "quads/checkerboard_draw_quad.h", 304 "quads/checkerboard_draw_quad.h",
301 "quads/content_draw_quad_base.cc", 305 "quads/content_draw_quad_base.cc",
302 "quads/content_draw_quad_base.h", 306 "quads/content_draw_quad_base.h",
303 "quads/debug_border_draw_quad.cc", 307 "quads/debug_border_draw_quad.cc",
304 "quads/debug_border_draw_quad.h", 308 "quads/debug_border_draw_quad.h",
305 "quads/draw_polygon.cc", 309 "quads/draw_polygon.cc",
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 "scheduler/scheduler_settings.cc", 501 "scheduler/scheduler_settings.cc",
498 "scheduler/scheduler_settings.h", 502 "scheduler/scheduler_settings.h",
499 "scheduler/scheduler_state_machine.cc", 503 "scheduler/scheduler_state_machine.cc",
500 "scheduler/scheduler_state_machine.h", 504 "scheduler/scheduler_state_machine.h",
501 "trees/blocking_task_runner.cc", 505 "trees/blocking_task_runner.cc",
502 "trees/blocking_task_runner.h", 506 "trees/blocking_task_runner.h",
503 "trees/damage_tracker.cc", 507 "trees/damage_tracker.cc",
504 "trees/damage_tracker.h", 508 "trees/damage_tracker.h",
505 "trees/draw_property_utils.cc", 509 "trees/draw_property_utils.cc",
506 "trees/draw_property_utils.h", 510 "trees/draw_property_utils.h",
507 "trees/layer_sorter.cc",
508 "trees/layer_sorter.h",
509 "trees/layer_tree_host.cc", 511 "trees/layer_tree_host.cc",
510 "trees/layer_tree_host.h", 512 "trees/layer_tree_host.h",
511 "trees/layer_tree_host_client.h", 513 "trees/layer_tree_host_client.h",
512 "trees/layer_tree_host_common.cc", 514 "trees/layer_tree_host_common.cc",
513 "trees/layer_tree_host_common.h", 515 "trees/layer_tree_host_common.h",
514 "trees/layer_tree_host_impl.cc", 516 "trees/layer_tree_host_impl.cc",
515 "trees/layer_tree_host_impl.h", 517 "trees/layer_tree_host_impl.h",
516 "trees/layer_tree_impl.cc", 518 "trees/layer_tree_impl.cc",
517 "trees/layer_tree_impl.h", 519 "trees/layer_tree_impl.h",
518 "trees/layer_tree_settings.cc", 520 "trees/layer_tree_settings.cc",
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 "resources/tile_task_worker_pool_unittest.cc", 824 "resources/tile_task_worker_pool_unittest.cc",
823 "resources/video_resource_updater_unittest.cc", 825 "resources/video_resource_updater_unittest.cc",
824 "scheduler/begin_frame_source_unittest.cc", 826 "scheduler/begin_frame_source_unittest.cc",
825 "scheduler/delay_based_time_source_unittest.cc", 827 "scheduler/delay_based_time_source_unittest.cc",
826 "scheduler/scheduler_state_machine_unittest.cc", 828 "scheduler/scheduler_state_machine_unittest.cc",
827 "scheduler/scheduler_unittest.cc", 829 "scheduler/scheduler_unittest.cc",
828 "test/layer_tree_json_parser_unittest.cc", 830 "test/layer_tree_json_parser_unittest.cc",
829 "test/test_web_graphics_context_3d_unittest.cc", 831 "test/test_web_graphics_context_3d_unittest.cc",
830 "trees/blocking_task_runner_unittest.cc", 832 "trees/blocking_task_runner_unittest.cc",
831 "trees/damage_tracker_unittest.cc", 833 "trees/damage_tracker_unittest.cc",
832 "trees/layer_sorter_unittest.cc",
833 "trees/layer_tree_host_common_unittest.cc", 834 "trees/layer_tree_host_common_unittest.cc",
834 "trees/layer_tree_host_impl_unittest.cc", 835 "trees/layer_tree_host_impl_unittest.cc",
835 "trees/layer_tree_host_pixeltest_blending.cc", 836 "trees/layer_tree_host_pixeltest_blending.cc",
836 "trees/layer_tree_host_pixeltest_filters.cc", 837 "trees/layer_tree_host_pixeltest_filters.cc",
837 "trees/layer_tree_host_pixeltest_masks.cc", 838 "trees/layer_tree_host_pixeltest_masks.cc",
838 "trees/layer_tree_host_pixeltest_readback.cc", 839 "trees/layer_tree_host_pixeltest_readback.cc",
839 "trees/layer_tree_host_pixeltest_synchronous.cc", 840 "trees/layer_tree_host_pixeltest_synchronous.cc",
840 "trees/layer_tree_host_unittest.cc", 841 "trees/layer_tree_host_unittest.cc",
841 "trees/layer_tree_host_unittest_animation.cc", 842 "trees/layer_tree_host_unittest_animation.cc",
842 "trees/layer_tree_host_unittest_context.cc", 843 "trees/layer_tree_host_unittest_context.cc",
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
921 "//testing/gmock", 922 "//testing/gmock",
922 "//testing/gtest", 923 "//testing/gtest",
923 "//testing/perf", 924 "//testing/perf",
924 "//ui/gfx", 925 "//ui/gfx",
925 "//ui/gfx/geometry", 926 "//ui/gfx/geometry",
926 "//ui/gl", 927 "//ui/gl",
927 ] 928 ]
928 } 929 }
929 # When adding support for isolates, please have a look at run-time dependencies 930 # When adding support for isolates, please have a look at run-time dependencies
930 # in the cc_unittests_run target in cc_tests.gyp. 931 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/output/direct_renderer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698