| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'TreeSynchronizerTest.cpp', | 53 'TreeSynchronizerTest.cpp', |
| 54 ], | 54 ], |
| 55 'cc_tests_support_files': [ | 55 'cc_tests_support_files': [ |
| 56 'test/CCAnimationTestCommon.cpp', | 56 'test/CCAnimationTestCommon.cpp', |
| 57 'test/CCAnimationTestCommon.h', | 57 'test/CCAnimationTestCommon.h', |
| 58 'test/CCGeometryTestUtils.cpp', | 58 'test/CCGeometryTestUtils.cpp', |
| 59 'test/CCGeometryTestUtils.h', | 59 'test/CCGeometryTestUtils.h', |
| 60 'test/CCLayerTestCommon.cpp', | 60 'test/CCLayerTestCommon.cpp', |
| 61 'test/CCLayerTestCommon.h', | 61 'test/CCLayerTestCommon.h', |
| 62 'test/CCOcclusionTrackerTestCommon.h', | 62 'test/CCOcclusionTrackerTestCommon.h', |
| 63 'test/CCSchedulerTestCommon.cpp', |
| 63 'test/CCSchedulerTestCommon.h', | 64 'test/CCSchedulerTestCommon.h', |
| 64 'test/CCTestCommon.h', | 65 'test/CCTestCommon.h', |
| 65 'test/CCTiledLayerTestCommon.cpp', | 66 'test/CCTiledLayerTestCommon.cpp', |
| 66 'test/CCTiledLayerTestCommon.h', | 67 'test/CCTiledLayerTestCommon.h', |
| 67 'test/CompositorFakeWebGraphicsContext3D.h', | 68 'test/CompositorFakeWebGraphicsContext3D.h', |
| 68 'test/FakeCCGraphicsContext.h', | 69 'test/FakeCCGraphicsContext.h', |
| 70 'test/FakeCCLayerTreeHostClient.cpp', |
| 69 'test/FakeCCLayerTreeHostClient.h', | 71 'test/FakeCCLayerTreeHostClient.h', |
| 70 'test/FakeGraphicsContext3DTest.cpp', | 72 'test/FakeGraphicsContext3DTest.cpp', |
| 71 'test/FakeWebCompositorOutputSurface.h', | 73 'test/FakeWebCompositorOutputSurface.h', |
| 72 'test/FakeWebGraphicsContext3D.h', | 74 'test/FakeWebGraphicsContext3D.h', |
| 73 'test/FakeWebScrollbarThemeGeometry.h', | 75 'test/FakeWebScrollbarThemeGeometry.h', |
| 76 'test/MockCCQuadCuller.cpp', |
| 74 'test/MockCCQuadCuller.h', | 77 'test/MockCCQuadCuller.h', |
| 75 'test/WebCompositorInitializer.h', | 78 'test/WebCompositorInitializer.h', |
| 76 ], | 79 ], |
| 77 }, | 80 }, |
| 78 'targets': [ | 81 'targets': [ |
| 79 { | 82 { |
| 80 'target_name': 'cc_unittests', | 83 'target_name': 'cc_unittests', |
| 81 'type': 'executable', | 84 'type': 'executable', |
| 82 'dependencies': [ | 85 'dependencies': [ |
| 83 '../base/base.gyp:test_support_base', | 86 '../base/base.gyp:test_support_base', |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 '<@(cc_tests_support_files)', | 146 '<@(cc_tests_support_files)', |
| 144 'test/test_webkit_platform.cc', | 147 'test/test_webkit_platform.cc', |
| 145 'test/test_webkit_platform.h', | 148 'test/test_webkit_platform.h', |
| 146 ], | 149 ], |
| 147 }, | 150 }, |
| 148 ], | 151 ], |
| 149 }], | 152 }], |
| 150 ], | 153 ], |
| 151 } | 154 } |
| 152 | 155 |
| OLD | NEW |