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

Side by Side Diff: cc/cc_tests.gyp

Issue 10909218: Add some missing unit tests and update cc_unittests and webkit_compositor_bindings_unittests (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Updated to tip of tree Created 8 years, 3 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 | « cc/TreeSynchronizerTest.cpp ('k') | webkit/compositor_bindings/LayerChromiumTest.cpp » ('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 'use_libcc_for_compositor%': 0, 8 'use_libcc_for_compositor%': 0,
9 'cc_tests_source_files': [ 9 'cc_tests_source_files': [
10 'CCActiveAnimationTest.cpp', 10 'CCActiveAnimationTest.cpp',
11 'CCDamageTrackerTest.cpp', 11 'CCDamageTrackerTest.cpp',
12 'CCDelayBasedTimeSourceTest.cpp', 12 'CCDelayBasedTimeSourceTest.cpp',
13 'CCDrawQuadTest.cpp',
13 'CCFrameRateControllerTest.cpp', 14 'CCFrameRateControllerTest.cpp',
14 'CCHeadsUpDisplayTest.cpp', 15 'CCHeadsUpDisplayTest.cpp',
15 'CCKeyframedAnimationCurveTest.cpp', 16 'CCKeyframedAnimationCurveTest.cpp',
16 'CCLayerAnimationControllerTest.cpp', 17 'CCLayerAnimationControllerTest.cpp',
17 'CCLayerImplTest.cpp', 18 'CCLayerImplTest.cpp',
18 'CCLayerIteratorTest.cpp', 19 'CCLayerIteratorTest.cpp',
19 'CCLayerQuadTest.cpp', 20 'CCLayerQuadTest.cpp',
20 'CCLayerSorterTest.cpp', 21 'CCLayerSorterTest.cpp',
21 'CCLayerTreeHostCommonTest.cpp', 22 'CCLayerTreeHostCommonTest.cpp',
22 'CCLayerTreeHostImplTest.cpp', 23 'CCLayerTreeHostImplTest.cpp',
23 'CCLayerTreeHostTest.cpp', 24 'CCLayerTreeHostTest.cpp',
24 'CCMathUtilTest.cpp', 25 'CCMathUtilTest.cpp',
25 'CCOcclusionTrackerTest.cpp', 26 'CCOcclusionTrackerTest.cpp',
26 'CCPrioritizedTextureTest.cpp', 27 'CCPrioritizedTextureTest.cpp',
27 'CCQuadCullerTest.cpp', 28 'CCQuadCullerTest.cpp',
29 'CCRenderPassTest.cpp',
28 'CCRenderSurfaceFiltersTest.cpp', 30 'CCRenderSurfaceFiltersTest.cpp',
29 'CCRenderSurfaceTest.cpp', 31 'CCRenderSurfaceTest.cpp',
32 'CCRendererGLTest.cpp',
30 'CCResourceProviderTest.cpp', 33 'CCResourceProviderTest.cpp',
31 'CCSchedulerStateMachineTest.cpp', 34 'CCSchedulerStateMachineTest.cpp',
32 'CCSchedulerTest.cpp', 35 'CCSchedulerTest.cpp',
33 'CCSchedulerTest.cpp',
34 'CCScopedTextureTest.cpp', 36 'CCScopedTextureTest.cpp',
35 'CCScrollbarAnimationControllerLinearFadeTest.cpp', 37 'CCScrollbarAnimationControllerLinearFadeTest.cpp',
36 'CCSolidColorLayerImplTest.cpp', 38 'CCSolidColorLayerImplTest.cpp',
37 'CCTextureUpdateControllerTest.cpp', 39 'CCTextureUpdateControllerTest.cpp',
38 'CCThreadTaskTest.cpp', 40 'CCThreadTaskTest.cpp',
39 'CCThreadedTest.cpp', 41 'CCThreadedTest.cpp',
40 'CCThreadedTest.h', 42 'CCThreadedTest.h',
41 'CCTiledLayerImplTest.cpp', 43 'CCTiledLayerImplTest.cpp',
42 'CCTimerTest.cpp', 44 'CCTimerTest.cpp',
45 'ContentLayerChromiumTest.cpp',
43 'FloatQuadTest.cpp', 46 'FloatQuadTest.cpp',
47 'LayerChromiumTest.cpp',
48 'ScrollbarLayerChromiumTest.cpp',
49 'TextureCopierTest.cpp',
50 'TextureLayerChromiumTest.cpp',
51 'ThrottledTextureUploaderTest.cpp',
52 'TiledLayerChromiumTest.cpp',
53 'TreeSynchronizerTest.cpp',
44 ], 54 ],
45 'cc_tests_support_files': [ 55 'cc_tests_support_files': [
46 'test/CCAnimationTestCommon.cpp', 56 'test/CCAnimationTestCommon.cpp',
47 'test/CCAnimationTestCommon.h', 57 'test/CCAnimationTestCommon.h',
48 'test/CCGeometryTestUtils.cpp', 58 'test/CCGeometryTestUtils.cpp',
49 'test/CCGeometryTestUtils.h', 59 'test/CCGeometryTestUtils.h',
50 'test/CCLayerTestCommon.cpp', 60 'test/CCLayerTestCommon.cpp',
51 'test/CCLayerTestCommon.h', 61 'test/CCLayerTestCommon.h',
52 'test/CCOcclusionTrackerTestCommon.h', 62 'test/CCOcclusionTrackerTestCommon.h',
53 'test/CCSchedulerTestCommon.h', 63 'test/CCSchedulerTestCommon.h',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 ], 141 ],
132 'sources': [ 142 'sources': [
133 '<@(cc_tests_support_files)', 143 '<@(cc_tests_support_files)',
134 ], 144 ],
135 }, 145 },
136 ], 146 ],
137 }], 147 }],
138 ], 148 ],
139 } 149 }
140 150
OLDNEW
« no previous file with comments | « cc/TreeSynchronizerTest.cpp ('k') | webkit/compositor_bindings/LayerChromiumTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698