| 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': 1, | 7 'chromium_code': 1, |
| 8 'cc_unit_tests_source_files': [ | 8 'cc_unit_tests_source_files': [ |
| 9 'animation/animation_unittest.cc', | 9 'animation/animation_unittest.cc', |
| 10 'animation/keyframed_animation_curve_unittest.cc', | 10 'animation/keyframed_animation_curve_unittest.cc', |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 'test/fake_output_surface_client.cc', | 163 'test/fake_output_surface_client.cc', |
| 164 'test/fake_output_surface_client.h', | 164 'test/fake_output_surface_client.h', |
| 165 'test/fake_painted_scrollbar_layer.cc', | 165 'test/fake_painted_scrollbar_layer.cc', |
| 166 'test/fake_painted_scrollbar_layer.h', | 166 'test/fake_painted_scrollbar_layer.h', |
| 167 'test/fake_picture_layer.cc', | 167 'test/fake_picture_layer.cc', |
| 168 'test/fake_picture_layer.h', | 168 'test/fake_picture_layer.h', |
| 169 'test/fake_picture_layer_impl.cc', | 169 'test/fake_picture_layer_impl.cc', |
| 170 'test/fake_picture_layer_impl.h', | 170 'test/fake_picture_layer_impl.h', |
| 171 'test/fake_picture_layer_tiling_client.cc', | 171 'test/fake_picture_layer_tiling_client.cc', |
| 172 'test/fake_picture_layer_tiling_client.h', | 172 'test/fake_picture_layer_tiling_client.h', |
| 173 'test/fake_picture_pile.cc', |
| 174 'test/fake_picture_pile.h', |
| 173 'test/fake_picture_pile_impl.cc', | 175 'test/fake_picture_pile_impl.cc', |
| 174 'test/fake_picture_pile_impl.h', | 176 'test/fake_picture_pile_impl.h', |
| 175 'test/fake_proxy.cc', | 177 'test/fake_proxy.cc', |
| 176 'test/fake_proxy.h', | 178 'test/fake_proxy.h', |
| 177 'test/fake_renderer_client.cc', | 179 'test/fake_renderer_client.cc', |
| 178 'test/fake_renderer_client.h', | 180 'test/fake_renderer_client.h', |
| 179 'test/fake_rendering_stats_instrumentation.h', | 181 'test/fake_rendering_stats_instrumentation.h', |
| 180 'test/fake_scoped_ui_resource.cc', | 182 'test/fake_scoped_ui_resource.cc', |
| 181 'test/fake_scoped_ui_resource.h', | 183 'test/fake_scoped_ui_resource.h', |
| 182 'test/fake_scrollbar.cc', | 184 'test/fake_scrollbar.cc', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 'test/test_now_source.h', | 249 'test/test_now_source.h', |
| 248 'test/test_occlusion_tracker.h', | 250 'test/test_occlusion_tracker.h', |
| 249 'test/test_shared_bitmap_manager.cc', | 251 'test/test_shared_bitmap_manager.cc', |
| 250 'test/test_shared_bitmap_manager.h', | 252 'test/test_shared_bitmap_manager.h', |
| 251 'test/test_texture.cc', | 253 'test/test_texture.cc', |
| 252 'test/test_texture.h', | 254 'test/test_texture.h', |
| 253 'test/test_tile_priorities.cc', | 255 'test/test_tile_priorities.cc', |
| 254 'test/test_tile_priorities.h', | 256 'test/test_tile_priorities.h', |
| 255 'test/test_web_graphics_context_3d.cc', | 257 'test/test_web_graphics_context_3d.cc', |
| 256 'test/test_web_graphics_context_3d.h', | 258 'test/test_web_graphics_context_3d.h', |
| 259 'test/thread_blocker.cc', |
| 260 'test/thread_blocker.h', |
| 257 'test/tiled_layer_test_common.cc', | 261 'test/tiled_layer_test_common.cc', |
| 258 'test/tiled_layer_test_common.h', | 262 'test/tiled_layer_test_common.h', |
| 259 ], | 263 ], |
| 260 }, | 264 }, |
| 261 'targets': [ | 265 'targets': [ |
| 262 { | 266 { |
| 263 'target_name': 'cc_unittests', | 267 'target_name': 'cc_unittests', |
| 264 'type': '<(gtest_target_type)', | 268 'type': '<(gtest_target_type)', |
| 265 'dependencies': [ | 269 'dependencies': [ |
| 266 '../base/base.gyp:test_support_base', | 270 '../base/base.gyp:test_support_base', |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 'variables': { | 433 'variables': { |
| 430 'test_suite_name': 'cc_perftests', | 434 'test_suite_name': 'cc_perftests', |
| 431 }, | 435 }, |
| 432 'includes': [ '../build/apk_test.gypi' ], | 436 'includes': [ '../build/apk_test.gypi' ], |
| 433 }, | 437 }, |
| 434 ], | 438 ], |
| 435 } | 439 } |
| 436 ] | 440 ] |
| 437 ], | 441 ], |
| 438 } | 442 } |
| OLD | NEW |