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

Side by Side Diff: cc/cc_tests.gyp

Issue 11662003: cc: Put context-loss tests in layer_tree_host_unittest_context.cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 80cols Created 7 years, 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/heads_up_display_layer.h » ('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 (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': 0, 7 'chromium_code': 0,
8 'cc_unit_tests_source_files': [ 8 'cc_unit_tests_source_files': [
9 'active_animation_unittest.cc', 9 'active_animation_unittest.cc',
10 'content_layer_unittest.cc', 10 'content_layer_unittest.cc',
(...skipping 11 matching lines...) Expand all
22 'keyframed_animation_curve_unittest.cc', 22 'keyframed_animation_curve_unittest.cc',
23 'layer_animation_controller_unittest.cc', 23 'layer_animation_controller_unittest.cc',
24 'layer_impl_unittest.cc', 24 'layer_impl_unittest.cc',
25 'layer_iterator_unittest.cc', 25 'layer_iterator_unittest.cc',
26 'layer_quad_unittest.cc', 26 'layer_quad_unittest.cc',
27 'layer_sorter_unittest.cc', 27 'layer_sorter_unittest.cc',
28 'layer_tree_host_common_unittest.cc', 28 'layer_tree_host_common_unittest.cc',
29 'layer_tree_host_impl_unittest.cc', 29 'layer_tree_host_impl_unittest.cc',
30 'layer_tree_host_unittest.cc', 30 'layer_tree_host_unittest.cc',
31 'layer_tree_host_unittest_animation.cc', 31 'layer_tree_host_unittest_animation.cc',
32 'layer_tree_host_unittest_context.cc',
32 'layer_tree_host_unittest_occlusion.cc', 33 'layer_tree_host_unittest_occlusion.cc',
33 'layer_tree_host_unittest_scroll.cc', 34 'layer_tree_host_unittest_scroll.cc',
34 'layer_unittest.cc', 35 'layer_unittest.cc',
35 'math_util_unittest.cc', 36 'math_util_unittest.cc',
36 'nine_patch_layer_impl_unittest.cc', 37 'nine_patch_layer_impl_unittest.cc',
37 'nine_patch_layer_unittest.cc', 38 'nine_patch_layer_unittest.cc',
38 'occlusion_tracker_unittest.cc', 39 'occlusion_tracker_unittest.cc',
39 'picture_layer_tiling_set_unittest.cc', 40 'picture_layer_tiling_set_unittest.cc',
40 'picture_layer_tiling_unittest.cc', 41 'picture_layer_tiling_unittest.cc',
41 'prioritized_resource_unittest.cc', 42 'prioritized_resource_unittest.cc',
(...skipping 21 matching lines...) Expand all
63 'timing_function_unittest.cc', 64 'timing_function_unittest.cc',
64 'test/fake_web_graphics_context_3d_unittest.cc', 65 'test/fake_web_graphics_context_3d_unittest.cc',
65 ], 66 ],
66 'cc_tests_support_files': [ 67 'cc_tests_support_files': [
67 'test/animation_test_common.cc', 68 'test/animation_test_common.cc',
68 'test/animation_test_common.h', 69 'test/animation_test_common.h',
69 'test/fake_content_layer.cc', 70 'test/fake_content_layer.cc',
70 'test/fake_content_layer.h', 71 'test/fake_content_layer.h',
71 'test/fake_content_layer_client.cc', 72 'test/fake_content_layer_client.cc',
72 'test/fake_content_layer_client.h', 73 'test/fake_content_layer_client.h',
74 'test/fake_content_layer_impl.cc',
75 'test/fake_content_layer_impl.h',
73 'test/fake_impl_proxy.h', 76 'test/fake_impl_proxy.h',
74 'test/fake_output_surface.h', 77 'test/fake_output_surface.h',
75 'test/fake_layer_tree_host_client.cc', 78 'test/fake_layer_tree_host_client.cc',
76 'test/fake_layer_tree_host_client.h', 79 'test/fake_layer_tree_host_client.h',
77 'test/fake_layer_tree_host_impl.cc', 80 'test/fake_layer_tree_host_impl.cc',
78 'test/fake_layer_tree_host_impl_client.cc', 81 'test/fake_layer_tree_host_impl_client.cc',
79 'test/fake_layer_tree_host_impl_client.h', 82 'test/fake_layer_tree_host_impl_client.h',
80 'test/fake_layer_tree_host_impl.h', 83 'test/fake_layer_tree_host_impl.h',
81 'test/fake_picture_layer_tiling_client.cc', 84 'test/fake_picture_layer_tiling_client.cc',
82 'test/fake_picture_layer_tiling_client.h', 85 'test/fake_picture_layer_tiling_client.h',
83 'test/fake_proxy.cc', 86 'test/fake_proxy.cc',
84 'test/fake_proxy.h', 87 'test/fake_proxy.h',
85 'test/fake_scrollbar_layer.cc', 88 'test/fake_scrollbar_layer.cc',
86 'test/fake_scrollbar_layer.h', 89 'test/fake_scrollbar_layer.h',
87 'test/fake_scrollbar_theme_painter.h', 90 'test/fake_scrollbar_theme_painter.h',
88 'test/fake_scrollbar_theme_painter.cc', 91 'test/fake_scrollbar_theme_painter.cc',
89 'test/fake_tile_manager_client.h', 92 'test/fake_tile_manager_client.h',
90 'test/fake_output_surface.cc', 93 'test/fake_output_surface.cc',
91 'test/fake_output_surface.h', 94 'test/fake_output_surface.h',
92 'test/fake_software_output_device.cc', 95 'test/fake_software_output_device.cc',
93 'test/fake_software_output_device.h', 96 'test/fake_software_output_device.h',
97 'test/fake_video_frame.cc',
98 'test/fake_video_frame.h',
99 'test/fake_video_frame_provider.cc',
100 'test/fake_video_frame_provider.h',
94 'test/fake_web_graphics_context_3d.cc', 101 'test/fake_web_graphics_context_3d.cc',
95 'test/fake_web_graphics_context_3d.h', 102 'test/fake_web_graphics_context_3d.h',
96 'test/fake_web_scrollbar.cc', 103 'test/fake_web_scrollbar.cc',
97 'test/fake_web_scrollbar.h', 104 'test/fake_web_scrollbar.h',
98 'test/fake_web_scrollbar_theme_geometry.cc', 105 'test/fake_web_scrollbar_theme_geometry.cc',
99 'test/fake_web_scrollbar_theme_geometry.h', 106 'test/fake_web_scrollbar_theme_geometry.h',
100 'test/geometry_test_utils.cc', 107 'test/geometry_test_utils.cc',
101 'test/geometry_test_utils.h', 108 'test/geometry_test_utils.h',
102 'test/layer_test_common.cc', 109 'test/layer_test_common.cc',
103 'test/layer_test_common.h', 110 'test/layer_test_common.h',
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 'variables': { 256 'variables': {
250 'test_suite_name': 'cc_perftests', 257 'test_suite_name': 'cc_perftests',
251 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte sts<(SHARED_LIB_SUFFIX)', 258 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte sts<(SHARED_LIB_SUFFIX)',
252 }, 259 },
253 'includes': [ '../build/apk_test.gypi' ], 260 'includes': [ '../build/apk_test.gypi' ],
254 }, 261 },
255 ], 262 ],
256 }] 263 }]
257 ], 264 ],
258 } 265 }
OLDNEW
« no previous file with comments | « no previous file | cc/heads_up_display_layer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698