| 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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 'test/scheduler_test_common.cc', | 190 'test/scheduler_test_common.cc', |
| 191 'test/scheduler_test_common.h', | 191 'test/scheduler_test_common.h', |
| 192 'test/skia_common.cc', | 192 'test/skia_common.cc', |
| 193 'test/skia_common.h', | 193 'test/skia_common.h', |
| 194 'test/solid_color_content_layer_client.cc', | 194 'test/solid_color_content_layer_client.cc', |
| 195 'test/solid_color_content_layer_client.h', | 195 'test/solid_color_content_layer_client.h', |
| 196 'test/test_context_provider.cc', | 196 'test/test_context_provider.cc', |
| 197 'test/test_context_provider.h', | 197 'test/test_context_provider.h', |
| 198 'test/test_context_support.cc', | 198 'test/test_context_support.cc', |
| 199 'test/test_context_support.h', | 199 'test/test_context_support.h', |
| 200 'test/test_gles2_interface.cc', |
| 201 'test/test_gles2_interface.h', |
| 200 'test/test_texture.cc', | 202 'test/test_texture.cc', |
| 201 'test/test_texture.h', | 203 'test/test_texture.h', |
| 202 'test/test_tile_priorities.cc', | 204 'test/test_tile_priorities.cc', |
| 203 'test/test_tile_priorities.h', | 205 'test/test_tile_priorities.h', |
| 204 'test/test_web_graphics_context_3d.cc', | 206 'test/test_web_graphics_context_3d.cc', |
| 205 'test/test_web_graphics_context_3d.h', | 207 'test/test_web_graphics_context_3d.h', |
| 206 'test/tiled_layer_test_common.cc', | 208 'test/tiled_layer_test_common.cc', |
| 207 'test/tiled_layer_test_common.h', | 209 'test/tiled_layer_test_common.h', |
| 208 ], | 210 ], |
| 209 }, | 211 }, |
| 210 'targets': [ | 212 'targets': [ |
| 211 { | 213 { |
| 212 'target_name': 'cc_unittests', | 214 'target_name': 'cc_unittests', |
| 213 'type': '<(gtest_target_type)', | 215 'type': '<(gtest_target_type)', |
| 214 'dependencies': [ | 216 'dependencies': [ |
| 215 '../base/base.gyp:test_support_base', | 217 '../base/base.gyp:test_support_base', |
| 218 '../gpu/gpu.gyp:gles2_implementation', |
| 216 '../gpu/gpu.gyp:gpu', | 219 '../gpu/gpu.gyp:gpu', |
| 217 '../gpu/gpu.gyp:gpu_unittest_utils', | 220 '../gpu/gpu.gyp:gpu_unittest_utils', |
| 218 '../media/media.gyp:media', | 221 '../media/media.gyp:media', |
| 219 '../skia/skia.gyp:skia', | 222 '../skia/skia.gyp:skia', |
| 220 '../testing/gmock.gyp:gmock', | 223 '../testing/gmock.gyp:gmock', |
| 221 '../testing/gtest.gyp:gtest', | 224 '../testing/gtest.gyp:gtest', |
| 222 '../ui/gfx/gfx.gyp:gfx', | 225 '../ui/gfx/gfx.gyp:gfx', |
| 223 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 226 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 224 'cc.gyp:cc', | 227 'cc.gyp:cc', |
| 225 'cc_test_support', | 228 'cc_test_support', |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 363 'test_suite_name': 'cc_perftests', | 366 'test_suite_name': 'cc_perftests', |
| 364 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perf
tests<(SHARED_LIB_SUFFIX)', | 367 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perf
tests<(SHARED_LIB_SUFFIX)', |
| 365 }, | 368 }, |
| 366 'includes': [ '../build/apk_test.gypi' ], | 369 'includes': [ '../build/apk_test.gypi' ], |
| 367 }, | 370 }, |
| 368 ], | 371 ], |
| 369 } | 372 } |
| 370 ] | 373 ] |
| 371 ], | 374 ], |
| 372 } | 375 } |
| OLD | NEW |