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_tests.gyp

Issue 1982893002: [blimp] Add SkPicture caching support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix non-existing SkPicture::uniqueID() when dealing with display items without SkPictures Created 4 years, 7 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
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 'cc_unit_tests_source_files': [ 8 'cc_unit_tests_source_files': [
9 'animation/animation_host_unittest.cc', 9 'animation/animation_host_unittest.cc',
10 'animation/animation_player_unittest.cc', 10 'animation/animation_player_unittest.cc',
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 'output/software_renderer_unittest.cc', 82 'output/software_renderer_unittest.cc',
83 'output/texture_mailbox_deleter_unittest.cc', 83 'output/texture_mailbox_deleter_unittest.cc',
84 'playback/discardable_image_map_unittest.cc', 84 'playback/discardable_image_map_unittest.cc',
85 'playback/display_item_list_unittest.cc', 85 'playback/display_item_list_unittest.cc',
86 'playback/raster_source_unittest.cc', 86 'playback/raster_source_unittest.cc',
87 'playback/recording_source_unittest.cc', 87 'playback/recording_source_unittest.cc',
88 'proto/base_conversions_unittest.cc', 88 'proto/base_conversions_unittest.cc',
89 'proto/cc_conversions_unittest.cc', 89 'proto/cc_conversions_unittest.cc',
90 'proto/gfx_conversions_unittest.cc', 90 'proto/gfx_conversions_unittest.cc',
91 'proto/gpu_conversions_unittest.cc', 91 'proto/gpu_conversions_unittest.cc',
92 'proto/picture_cache_conversions_unittest.cc',
92 'proto/skia_conversions_unittest.cc', 93 'proto/skia_conversions_unittest.cc',
93 'proto/synced_property_conversions_unittest.cc', 94 'proto/synced_property_conversions_unittest.cc',
94 'quads/draw_polygon_unittest.cc', 95 'quads/draw_polygon_unittest.cc',
95 'quads/draw_quad_unittest.cc', 96 'quads/draw_quad_unittest.cc',
96 'quads/render_pass_unittest.cc', 97 'quads/render_pass_unittest.cc',
97 'raster/raster_buffer_provider_unittest.cc', 98 'raster/raster_buffer_provider_unittest.cc',
98 'raster/scoped_gpu_raster_unittest.cc', 99 'raster/scoped_gpu_raster_unittest.cc',
99 'raster/single_thread_task_graph_runner_unittest.cc', 100 'raster/single_thread_task_graph_runner_unittest.cc',
100 'raster/synchronous_task_graph_runner_unittest.cc', 101 'raster/synchronous_task_graph_runner_unittest.cc',
101 'raster/texture_compressor_etc1_unittest.cc', 102 'raster/texture_compressor_etc1_unittest.cc',
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 'test/fake_layer_tree_host_impl_client.cc', 197 'test/fake_layer_tree_host_impl_client.cc',
197 'test/fake_layer_tree_host_impl_client.h', 198 'test/fake_layer_tree_host_impl_client.h',
198 'test/fake_mask_layer_impl.cc', 199 'test/fake_mask_layer_impl.cc',
199 'test/fake_mask_layer_impl.h', 200 'test/fake_mask_layer_impl.h',
200 'test/fake_output_surface.cc', 201 'test/fake_output_surface.cc',
201 'test/fake_output_surface.h', 202 'test/fake_output_surface.h',
202 'test/fake_output_surface_client.cc', 203 'test/fake_output_surface_client.cc',
203 'test/fake_output_surface_client.h', 204 'test/fake_output_surface_client.h',
204 'test/fake_painted_scrollbar_layer.cc', 205 'test/fake_painted_scrollbar_layer.cc',
205 'test/fake_painted_scrollbar_layer.h', 206 'test/fake_painted_scrollbar_layer.h',
207 'test/fake_picture_cache.cc',
208 'test/fake_picture_cache.h',
206 'test/fake_picture_layer.cc', 209 'test/fake_picture_layer.cc',
207 'test/fake_picture_layer.h', 210 'test/fake_picture_layer.h',
208 'test/fake_picture_layer_impl.cc', 211 'test/fake_picture_layer_impl.cc',
209 'test/fake_picture_layer_impl.h', 212 'test/fake_picture_layer_impl.h',
210 'test/fake_picture_layer_tiling_client.cc', 213 'test/fake_picture_layer_tiling_client.cc',
211 'test/fake_picture_layer_tiling_client.h', 214 'test/fake_picture_layer_tiling_client.h',
212 'test/fake_proxy.cc', 215 'test/fake_proxy.cc',
213 'test/fake_proxy.h', 216 'test/fake_proxy.h',
214 'test/fake_raster_buffer_provider.cc', 217 'test/fake_raster_buffer_provider.cc',
215 'test/fake_raster_buffer_provider.h', 218 'test/fake_raster_buffer_provider.h',
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 512 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
510 ], 513 ],
511 } 514 }
512 ], 515 ],
513 ], 516 ],
514 }, 517 },
515 ], 518 ],
516 }], 519 }],
517 ], 520 ],
518 } 521 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698