| OLD | NEW |
| 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', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 'CCSchedulerTest.cpp', | 33 'CCSchedulerTest.cpp', |
| 34 'CCScopedTextureTest.cpp', | 34 'CCScopedTextureTest.cpp', |
| 35 'CCScrollbarAnimationControllerLinearFadeTest.cpp', | 35 'CCScrollbarAnimationControllerLinearFadeTest.cpp', |
| 36 'CCSolidColorLayerImplTest.cpp', | 36 'CCSolidColorLayerImplTest.cpp', |
| 37 'CCTextureUpdateControllerTest.cpp', | 37 'CCTextureUpdateControllerTest.cpp', |
| 38 'CCThreadTaskTest.cpp', | 38 'CCThreadTaskTest.cpp', |
| 39 'CCThreadedTest.cpp', | 39 'CCThreadedTest.cpp', |
| 40 'CCThreadedTest.h', | 40 'CCThreadedTest.h', |
| 41 'CCTiledLayerImplTest.cpp', | 41 'CCTiledLayerImplTest.cpp', |
| 42 'CCTimerTest.cpp', | 42 'CCTimerTest.cpp', |
| 43 'FloatQuadTest.cpp', |
| 43 ], | 44 ], |
| 44 'cc_tests_support_files': [ | 45 'cc_tests_support_files': [ |
| 45 'test/CCAnimationTestCommon.cpp', | 46 'test/CCAnimationTestCommon.cpp', |
| 46 'test/CCAnimationTestCommon.h', | 47 'test/CCAnimationTestCommon.h', |
| 47 'test/CCGeometryTestUtils.cpp', | 48 'test/CCGeometryTestUtils.cpp', |
| 48 'test/CCGeometryTestUtils.h', | 49 'test/CCGeometryTestUtils.h', |
| 49 'test/CCLayerTestCommon.cpp', | 50 'test/CCLayerTestCommon.cpp', |
| 50 'test/CCLayerTestCommon.h', | 51 'test/CCLayerTestCommon.h', |
| 51 'test/CCOcclusionTrackerTestCommon.h', | 52 'test/CCOcclusionTrackerTestCommon.h', |
| 52 'test/CCSchedulerTestCommon.h', | 53 'test/CCSchedulerTestCommon.h', |
| 53 'test/CCTestCommon.h', | 54 'test/CCTestCommon.h', |
| 54 'test/CCTiledLayerTestCommon.cpp', | 55 'test/CCTiledLayerTestCommon.cpp', |
| 55 'test/CCTiledLayerTestCommon.h', | 56 'test/CCTiledLayerTestCommon.h', |
| 56 'test/CompositorFakeWebGraphicsContext3D.h', | 57 'test/CompositorFakeWebGraphicsContext3D.h', |
| 57 'test/FakeCCGraphicsContext.h', | 58 'test/FakeCCGraphicsContext.h', |
| 58 'test/FakeCCLayerTreeHostClient.h', | 59 'test/FakeCCLayerTreeHostClient.h', |
| 59 'test/FakeGraphicsContext3DTest.cpp', | 60 'test/FakeGraphicsContext3DTest.cpp', |
| 60 'test/FakeWebCompositorOutputSurface.h', | 61 'test/FakeWebCompositorOutputSurface.h', |
| 61 'test/FakeWebGraphicsContext3D.h', | 62 'test/FakeWebGraphicsContext3D.h', |
| 62 'test/FakeWebScrollbarThemeGeometry.h', | 63 'test/FakeWebScrollbarThemeGeometry.h', |
| 63 'test/MockCCQuadCuller.h', | 64 'test/MockCCQuadCuller.h', |
| 65 'test/WebCompositorInitializer.h', |
| 64 ], | 66 ], |
| 65 }, | 67 }, |
| 66 'targets': [ | 68 'targets': [ |
| 67 { | 69 { |
| 68 'target_name': 'cc_unittests', | 70 'target_name': 'cc_unittests', |
| 69 'type': 'executable', | 71 'type': 'executable', |
| 70 'dependencies': [ | 72 'dependencies': [ |
| 71 '../base/base.gyp:test_support_base', | 73 '../base/base.gyp:test_support_base', |
| 72 '../testing/gtest.gyp:gtest', | 74 '../testing/gtest.gyp:gtest', |
| 73 '../testing/gmock.gyp:gmock', | 75 '../testing/gmock.gyp:gmock', |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 ], | 129 ], |
| 128 'sources': [ | 130 'sources': [ |
| 129 '<@(cc_tests_support_files)', | 131 '<@(cc_tests_support_files)', |
| 130 ], | 132 ], |
| 131 }, | 133 }, |
| 132 ], | 134 ], |
| 133 }], | 135 }], |
| 134 ], | 136 ], |
| 135 } | 137 } |
| 136 | 138 |
| OLD | NEW |