| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 'test/scheduler_test_common.cc', | 192 'test/scheduler_test_common.cc', |
| 193 'test/scheduler_test_common.h', | 193 'test/scheduler_test_common.h', |
| 194 'test/skia_common.cc', | 194 'test/skia_common.cc', |
| 195 'test/skia_common.h', | 195 'test/skia_common.h', |
| 196 'test/solid_color_content_layer_client.cc', | 196 'test/solid_color_content_layer_client.cc', |
| 197 'test/solid_color_content_layer_client.h', | 197 'test/solid_color_content_layer_client.h', |
| 198 'test/test_context_provider.cc', | 198 'test/test_context_provider.cc', |
| 199 'test/test_context_provider.h', | 199 'test/test_context_provider.h', |
| 200 'test/test_context_support.cc', | 200 'test/test_context_support.cc', |
| 201 'test/test_context_support.h', | 201 'test/test_context_support.h', |
| 202 'test/test_gles2_interface.cc', |
| 203 'test/test_gles2_interface.h', |
| 202 'test/test_texture.cc', | 204 'test/test_texture.cc', |
| 203 'test/test_texture.h', | 205 'test/test_texture.h', |
| 204 'test/test_tile_priorities.cc', | 206 'test/test_tile_priorities.cc', |
| 205 'test/test_tile_priorities.h', | 207 'test/test_tile_priorities.h', |
| 206 'test/test_web_graphics_context_3d.cc', | 208 'test/test_web_graphics_context_3d.cc', |
| 207 'test/test_web_graphics_context_3d.h', | 209 'test/test_web_graphics_context_3d.h', |
| 208 'test/tiled_layer_test_common.cc', | 210 'test/tiled_layer_test_common.cc', |
| 209 'test/tiled_layer_test_common.h', | 211 'test/tiled_layer_test_common.h', |
| 210 ], | 212 ], |
| 211 }, | 213 }, |
| 212 'targets': [ | 214 'targets': [ |
| 213 { | 215 { |
| 214 'target_name': 'cc_unittests', | 216 'target_name': 'cc_unittests', |
| 215 'type': '<(gtest_target_type)', | 217 'type': '<(gtest_target_type)', |
| 216 'dependencies': [ | 218 'dependencies': [ |
| 217 '../base/base.gyp:test_support_base', | 219 '../base/base.gyp:test_support_base', |
| 218 '../gpu/gpu.gyp:gpu', | 220 '../gpu/gpu.gyp:gpu', |
| 221 '../gpu/gpu.gyp:gpu_unittest_utils', |
| 219 '../media/media.gyp:media', | 222 '../media/media.gyp:media', |
| 220 '../skia/skia.gyp:skia', | 223 '../skia/skia.gyp:skia', |
| 221 '../testing/gmock.gyp:gmock', | 224 '../testing/gmock.gyp:gmock', |
| 222 '../testing/gtest.gyp:gtest', | 225 '../testing/gtest.gyp:gtest', |
| 223 '../ui/events/events.gyp:events_base', | 226 '../ui/events/events.gyp:events_base', |
| 224 '../ui/gfx/gfx.gyp:gfx', | 227 '../ui/gfx/gfx.gyp:gfx', |
| 225 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', | 228 '../webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', |
| 226 'cc.gyp:cc', | 229 'cc.gyp:cc', |
| 227 'cc_test_support', | 230 'cc_test_support', |
| 228 ], | 231 ], |
| (...skipping 30 matching lines...) Expand all Loading... |
| 259 ], | 262 ], |
| 260 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 263 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 261 'msvs_disabled_warnings': [ 4267, ], | 264 'msvs_disabled_warnings': [ 4267, ], |
| 262 }, | 265 }, |
| 263 { | 266 { |
| 264 'target_name': 'cc_perftests', | 267 'target_name': 'cc_perftests', |
| 265 'type': '<(gtest_target_type)', | 268 'type': '<(gtest_target_type)', |
| 266 'dependencies': [ | 269 'dependencies': [ |
| 267 '../base/base.gyp:test_support_base', | 270 '../base/base.gyp:test_support_base', |
| 268 '../gpu/gpu.gyp:gpu', | 271 '../gpu/gpu.gyp:gpu', |
| 272 '../gpu/gpu.gyp:gpu_unittest_utils', |
| 269 '../media/media.gyp:media', | 273 '../media/media.gyp:media', |
| 270 '../skia/skia.gyp:skia', | 274 '../skia/skia.gyp:skia', |
| 271 '../testing/gmock.gyp:gmock', | 275 '../testing/gmock.gyp:gmock', |
| 272 '../testing/gtest.gyp:gtest', | 276 '../testing/gtest.gyp:gtest', |
| 273 '../testing/perf/perf_test.gyp:*', | 277 '../testing/perf/perf_test.gyp:*', |
| 274 '../ui/gfx/gfx.gyp:gfx', | 278 '../ui/gfx/gfx.gyp:gfx', |
| 275 'cc.gyp:cc', | 279 'cc.gyp:cc', |
| 276 'cc_test_support', | 280 'cc_test_support', |
| 277 ], | 281 ], |
| 278 'sources': [ | 282 'sources': [ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 'test_suite_name': 'cc_perftests', | 370 'test_suite_name': 'cc_perftests', |
| 367 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perf
tests<(SHARED_LIB_SUFFIX)', | 371 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perf
tests<(SHARED_LIB_SUFFIX)', |
| 368 }, | 372 }, |
| 369 'includes': [ '../build/apk_test.gypi' ], | 373 'includes': [ '../build/apk_test.gypi' ], |
| 370 }, | 374 }, |
| 371 ], | 375 ], |
| 372 } | 376 } |
| 373 ] | 377 ] |
| 374 ], | 378 ], |
| 375 } | 379 } |
| OLD | NEW |