| 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 'hash_pair_unittest.cc', | 10 'hash_pair_unittest.cc', |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'test/FakeCCLayerTreeHostClient.cpp', | 74 'test/FakeCCLayerTreeHostClient.cpp', |
| 75 'test/FakeCCLayerTreeHostClient.h', | 75 'test/FakeCCLayerTreeHostClient.h', |
| 76 'test/FakeGraphicsContext3DTest.cpp', | 76 'test/FakeGraphicsContext3DTest.cpp', |
| 77 'test/FakeWebCompositorSoftwareOutputDevice.h', | 77 'test/FakeWebCompositorSoftwareOutputDevice.h', |
| 78 'test/FakeWebCompositorOutputSurface.h', | 78 'test/FakeWebCompositorOutputSurface.h', |
| 79 'test/FakeWebGraphicsContext3D.h', | 79 'test/FakeWebGraphicsContext3D.h', |
| 80 'test/FakeWebScrollbarThemeGeometry.h', | 80 'test/FakeWebScrollbarThemeGeometry.h', |
| 81 'test/MockCCQuadCuller.cpp', | 81 'test/MockCCQuadCuller.cpp', |
| 82 'test/MockCCQuadCuller.h', | 82 'test/MockCCQuadCuller.h', |
| 83 'test/WebCompositorInitializer.h', | 83 'test/WebCompositorInitializer.h', |
| 84 |
| 85 'test/animation_test_common.h', |
| 86 'test/geometry_test_utils.h', |
| 87 'test/layer_test_common.h', |
| 88 'test/layer_tree_test_common.h', |
| 89 'test/occlusion_tracker_test_common.h', |
| 90 'test/render_pass_test_common.h', |
| 91 'test/scheduler_test_common.h', |
| 92 'test/test_common.h', |
| 93 'test/tiled_layer_test_common.h', |
| 94 'test/compositor_fake_web_graphics_context_3d.h', |
| 95 'test/fake_graphics_context.h', |
| 96 'test/fake_layer_tree_host_client.h', |
| 97 'test/fake_web_compositor_output_surface.h', |
| 98 'test/fake_web_compositor_software_output_device.h', |
| 99 'test/fake_web_graphics_context_3d.h', |
| 100 'test/fake_web_scrollbar_theme_geometry.h', |
| 101 'test/mock_quad_culler.h', |
| 102 'test/web_compositor_initializer.h', |
| 84 ], | 103 ], |
| 85 }, | 104 }, |
| 86 'targets': [ | 105 'targets': [ |
| 87 { | 106 { |
| 88 'target_name': 'cc_unittests', | 107 'target_name': 'cc_unittests', |
| 89 'type': 'executable', | 108 'type': 'executable', |
| 90 'dependencies': [ | 109 'dependencies': [ |
| 91 '../base/base.gyp:test_support_base', | 110 '../base/base.gyp:test_support_base', |
| 92 '../testing/gtest.gyp:gtest', | 111 '../testing/gtest.gyp:gtest', |
| 93 '../testing/gmock.gyp:gmock', | 112 '../testing/gmock.gyp:gmock', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 'sources': [ | 169 'sources': [ |
| 151 '<@(cc_tests_support_files)', | 170 '<@(cc_tests_support_files)', |
| 152 'test/test_webkit_platform.cc', | 171 'test/test_webkit_platform.cc', |
| 153 'test/test_webkit_platform.h', | 172 'test/test_webkit_platform.h', |
| 154 ], | 173 ], |
| 155 }, | 174 }, |
| 156 ], | 175 ], |
| 157 }], | 176 }], |
| 158 ], | 177 ], |
| 159 } | 178 } |
| 160 | |
| OLD | NEW |