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