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

Side by Side Diff: cc/cc.gyp

Issue 384083002: WIP BSP Tree for 3D Layer Sorting (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Small fixes to style/formatting, minor cleanup. Created 6 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 | « no previous file | cc/cc_tests.gyp » ('j') | cc/output/bsp_controller.h » ('J')
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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 'layers/ui_resource_layer_impl.h', 235 'layers/ui_resource_layer_impl.h',
236 'layers/video_frame_provider.h', 236 'layers/video_frame_provider.h',
237 'layers/video_frame_provider_client_impl.cc', 237 'layers/video_frame_provider_client_impl.cc',
238 'layers/video_frame_provider_client_impl.h', 238 'layers/video_frame_provider_client_impl.h',
239 'layers/video_layer.cc', 239 'layers/video_layer.cc',
240 'layers/video_layer.h', 240 'layers/video_layer.h',
241 'layers/video_layer_impl.cc', 241 'layers/video_layer_impl.cc',
242 'layers/video_layer_impl.h', 242 'layers/video_layer_impl.h',
243 'output/begin_frame_args.cc', 243 'output/begin_frame_args.cc',
244 'output/begin_frame_args.h', 244 'output/begin_frame_args.h',
245 'output/bsp_compare_result.h',
246 'output/bsp_controller.cc',
247 'output/bsp_controller.h',
248 'output/bsp_tree.cc',
249 'output/bsp_tree.h',
250 'output/bsp_walk_action.cc',
251 'output/bsp_walk_action.h',
245 'output/compositor_frame.cc', 252 'output/compositor_frame.cc',
246 'output/compositor_frame.h', 253 'output/compositor_frame.h',
247 'output/compositor_frame_ack.cc', 254 'output/compositor_frame_ack.cc',
248 'output/compositor_frame_ack.h', 255 'output/compositor_frame_ack.h',
249 'output/compositor_frame_metadata.cc', 256 'output/compositor_frame_metadata.cc',
250 'output/compositor_frame_metadata.h', 257 'output/compositor_frame_metadata.h',
251 'output/context_provider.cc', 258 'output/context_provider.cc',
252 'output/context_provider.h', 259 'output/context_provider.h',
253 'output/copy_output_request.cc', 260 'output/copy_output_request.cc',
254 'output/copy_output_request.h', 261 'output/copy_output_request.h',
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 'output/software_renderer.cc', 306 'output/software_renderer.cc',
300 'output/software_renderer.h', 307 'output/software_renderer.h',
301 'output/viewport_selection_bound.cc', 308 'output/viewport_selection_bound.cc',
302 'output/viewport_selection_bound.h', 309 'output/viewport_selection_bound.h',
303 'quads/checkerboard_draw_quad.cc', 310 'quads/checkerboard_draw_quad.cc',
304 'quads/checkerboard_draw_quad.h', 311 'quads/checkerboard_draw_quad.h',
305 'quads/content_draw_quad_base.cc', 312 'quads/content_draw_quad_base.cc',
306 'quads/content_draw_quad_base.h', 313 'quads/content_draw_quad_base.h',
307 'quads/debug_border_draw_quad.cc', 314 'quads/debug_border_draw_quad.cc',
308 'quads/debug_border_draw_quad.h', 315 'quads/debug_border_draw_quad.h',
316 'quads/draw_polygon.cc',
317 'quads/draw_polygon.h',
309 'quads/draw_quad.cc', 318 'quads/draw_quad.cc',
310 'quads/draw_quad.h', 319 'quads/draw_quad.h',
311 'quads/io_surface_draw_quad.cc', 320 'quads/io_surface_draw_quad.cc',
312 'quads/io_surface_draw_quad.h', 321 'quads/io_surface_draw_quad.h',
313 'quads/picture_draw_quad.cc', 322 'quads/picture_draw_quad.cc',
314 'quads/picture_draw_quad.h', 323 'quads/picture_draw_quad.h',
315 'quads/render_pass.cc', 324 'quads/render_pass.cc',
316 'quads/render_pass.h', 325 'quads/render_pass.h',
317 'quads/render_pass_draw_quad.cc', 326 'quads/render_pass_draw_quad.cc',
318 'quads/render_pass_draw_quad.h', 327 'quads/render_pass_draw_quad.h',
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 'surfaces/surface_id_allocator.h', 515 'surfaces/surface_id_allocator.h',
507 'surfaces/surface_manager.cc', 516 'surfaces/surface_manager.cc',
508 'surfaces/surface_manager.h', 517 'surfaces/surface_manager.h',
509 'surfaces/surface_resource_holder.cc', 518 'surfaces/surface_resource_holder.cc',
510 'surfaces/surface_resource_holder.h', 519 'surfaces/surface_resource_holder.h',
511 'surfaces/surfaces_export.h', 520 'surfaces/surfaces_export.h',
512 ], 521 ],
513 }, 522 },
514 ], 523 ],
515 } 524 }
OLDNEW
« no previous file with comments | « no previous file | cc/cc_tests.gyp » ('j') | cc/output/bsp_controller.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698