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

Side by Side Diff: cc/cc_tests.gyp

Issue 11412289: Basic pixel tests for cc (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 | « cc/DEPS ('k') | cc/gl_renderer.h » ('j') | cc/gl_renderer.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': 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',
11 'contents_scaling_layer_unittest.cc', 11 'contents_scaling_layer_unittest.cc',
12 'damage_tracker_unittest.cc', 12 'damage_tracker_unittest.cc',
13 'delay_based_time_source_unittest.cc', 13 'delay_based_time_source_unittest.cc',
14 'delegated_renderer_layer_impl_unittest.cc', 14 'delegated_renderer_layer_impl_unittest.cc',
15 'draw_quad_unittest.cc', 15 'draw_quad_unittest.cc',
16 'float_quad_unittest.cc', 16 'float_quad_unittest.cc',
17 'frame_rate_controller_unittest.cc', 17 'frame_rate_controller_unittest.cc',
18 'gl_renderer_unittest.cc', 18 'gl_renderer_unittest.cc',
19 'gl_renderer_pixel_test.cc',
danakj 2012/12/01 01:56:36 pixeltest instead of pixel_test?
19 'hash_pair_unittest.cc', 20 'hash_pair_unittest.cc',
20 'heads_up_display_unittest.cc', 21 'heads_up_display_unittest.cc',
21 'keyframed_animation_curve_unittest.cc', 22 'keyframed_animation_curve_unittest.cc',
22 'layer_animation_controller_unittest.cc', 23 'layer_animation_controller_unittest.cc',
23 'layer_impl_unittest.cc', 24 'layer_impl_unittest.cc',
24 'layer_iterator_unittest.cc', 25 'layer_iterator_unittest.cc',
25 'layer_quad_unittest.cc', 26 'layer_quad_unittest.cc',
26 'layer_sorter_unittest.cc', 27 'layer_sorter_unittest.cc',
27 'layer_tree_host_common_unittest.cc', 28 'layer_tree_host_common_unittest.cc',
28 'layer_tree_host_impl_unittest.cc', 29 'layer_tree_host_impl_unittest.cc',
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 'test/fake_web_scrollbar_theme_geometry.h', 79 'test/fake_web_scrollbar_theme_geometry.h',
79 'test/geometry_test_utils.cc', 80 'test/geometry_test_utils.cc',
80 'test/geometry_test_utils.h', 81 'test/geometry_test_utils.h',
81 'test/layer_test_common.cc', 82 'test/layer_test_common.cc',
82 'test/layer_test_common.h', 83 'test/layer_test_common.h',
83 'test/layer_tree_test_common.cc', 84 'test/layer_tree_test_common.cc',
84 'test/layer_tree_test_common.h', 85 'test/layer_tree_test_common.h',
85 'test/mock_quad_culler.cc', 86 'test/mock_quad_culler.cc',
86 'test/mock_quad_culler.h', 87 'test/mock_quad_culler.h',
87 'test/occlusion_tracker_test_common.h', 88 'test/occlusion_tracker_test_common.h',
89 'test/pixel_test_graphics_context.cc',
90 'test/pixel_test_graphics_context.h',
88 'test/render_pass_test_common.cc', 91 'test/render_pass_test_common.cc',
89 'test/render_pass_test_common.h', 92 'test/render_pass_test_common.h',
90 'test/scheduler_test_common.cc', 93 'test/scheduler_test_common.cc',
91 'test/scheduler_test_common.h', 94 'test/scheduler_test_common.h',
92 'test/tiled_layer_test_common.cc', 95 'test/tiled_layer_test_common.cc',
93 'test/tiled_layer_test_common.h', 96 'test/tiled_layer_test_common.h',
94 ], 97 ],
95 }, 98 },
96 'targets': [ 99 'targets': [
97 { 100 {
98 'target_name': 'cc_unittests', 101 'target_name': 'cc_unittests',
99 'type': '<(gtest_target_type)', 102 'type': '<(gtest_target_type)',
100 'dependencies': [ 103 'dependencies': [
101 '../base/base.gyp:test_support_base', 104 '../base/base.gyp:test_support_base',
102 '../media/media.gyp:media', 105 '../media/media.gyp:media',
103 '../skia/skia.gyp:skia', 106 '../skia/skia.gyp:skia',
104 '../testing/gmock.gyp:gmock', 107 '../testing/gmock.gyp:gmock',
105 '../testing/gtest.gyp:gtest', 108 '../testing/gtest.gyp:gtest',
106 '../ui/ui.gyp:ui', 109 '../ui/ui.gyp:ui',
110 '../webkit/support/webkit_support.gyp:webkit_gpu',
107 'cc.gyp:cc', 111 'cc.gyp:cc',
108 'cc_test_support', 112 'cc_test_support',
109 ], 113 ],
110 'sources': [ 114 'sources': [
111 'test/run_all_unittests.cc', 115 'test/run_all_unittests.cc',
112 '<@(cc_unit_tests_source_files)', 116 '<@(cc_unit_tests_source_files)',
113 ], 117 ],
114 'include_dirs': [ 118 'include_dirs': [
115 'test', 119 'test',
116 '.', 120 '.',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 'variables': { 209 'variables': {
206 'test_suite_name': 'cc_perftests', 210 'test_suite_name': 'cc_perftests',
207 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte sts<(SHARED_LIB_SUFFIX)', 211 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte sts<(SHARED_LIB_SUFFIX)',
208 }, 212 },
209 'includes': [ '../build/apk_test.gypi' ], 213 'includes': [ '../build/apk_test.gypi' ],
210 }, 214 },
211 ], 215 ],
212 }] 216 }]
213 ], 217 ],
214 } 218 }
OLDNEW
« no previous file with comments | « cc/DEPS ('k') | cc/gl_renderer.h » ('j') | cc/gl_renderer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698