Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: cc/cc_tests.gyp

Issue 1993543002: cc: Move cc param traits tests to cc/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added IPC dependency Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « cc/BUILD.gn ('k') | cc/ipc/cc_param_traits_perftest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_host_unittest.cc', 9 'animation/animation_host_unittest.cc',
10 'animation/animation_player_unittest.cc', 10 'animation/animation_player_unittest.cc',
(...skipping 17 matching lines...) Expand all
28 'base/tiling_data_unittest.cc', 28 'base/tiling_data_unittest.cc',
29 'base/unique_notifier_unittest.cc', 29 'base/unique_notifier_unittest.cc',
30 'debug/layer_tree_debug_state_unittest.cc', 30 'debug/layer_tree_debug_state_unittest.cc',
31 'debug/micro_benchmark_controller_unittest.cc', 31 'debug/micro_benchmark_controller_unittest.cc',
32 'debug/rendering_stats_unittest.cc', 32 'debug/rendering_stats_unittest.cc',
33 'input/layer_selection_bound_unittest.cc', 33 'input/layer_selection_bound_unittest.cc',
34 'input/scroll_state_unittest.cc', 34 'input/scroll_state_unittest.cc',
35 'input/scrollbar_animation_controller_linear_fade_unittest.cc', 35 'input/scrollbar_animation_controller_linear_fade_unittest.cc',
36 'input/scrollbar_animation_controller_thinning_unittest.cc', 36 'input/scrollbar_animation_controller_thinning_unittest.cc',
37 'input/top_controls_manager_unittest.cc', 37 'input/top_controls_manager_unittest.cc',
38 'ipc/cc_param_traits_unittest.cc',
38 'layers/heads_up_display_layer_impl_unittest.cc', 39 'layers/heads_up_display_layer_impl_unittest.cc',
39 'layers/heads_up_display_unittest.cc', 40 'layers/heads_up_display_unittest.cc',
40 'layers/layer_impl_unittest.cc', 41 'layers/layer_impl_unittest.cc',
41 'layers/layer_iterator_unittest.cc', 42 'layers/layer_iterator_unittest.cc',
42 'layers/layer_list_iterator_unittest.cc', 43 'layers/layer_list_iterator_unittest.cc',
43 'layers/layer_position_constraint_unittest.cc', 44 'layers/layer_position_constraint_unittest.cc',
44 'layers/layer_proto_converter_unittest.cc', 45 'layers/layer_proto_converter_unittest.cc',
45 'layers/layer_unittest.cc', 46 'layers/layer_unittest.cc',
46 'layers/layer_utils_unittest.cc', 47 'layers/layer_utils_unittest.cc',
47 'layers/nine_patch_layer_impl_unittest.cc', 48 'layers/nine_patch_layer_impl_unittest.cc',
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 }, 325 },
325 'targets': [ 326 'targets': [
326 { 327 {
327 'target_name': 'cc_unittests', 328 'target_name': 'cc_unittests',
328 'type': '<(gtest_target_type)', 329 'type': '<(gtest_target_type)',
329 'dependencies': [ 330 'dependencies': [
330 '../base/base.gyp:test_support_base', 331 '../base/base.gyp:test_support_base',
331 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 332 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
332 '../gpu/gpu.gyp:gpu', 333 '../gpu/gpu.gyp:gpu',
333 '../gpu/gpu.gyp:gpu_unittest_utils', 334 '../gpu/gpu.gyp:gpu_unittest_utils',
335 '../ipc/ipc.gyp:ipc',
334 '../media/media.gyp:media', 336 '../media/media.gyp:media',
335 '../skia/skia.gyp:skia', 337 '../skia/skia.gyp:skia',
336 '../testing/gmock.gyp:gmock', 338 '../testing/gmock.gyp:gmock',
337 '../testing/gtest.gyp:gtest', 339 '../testing/gtest.gyp:gtest',
338 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 340 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
339 '../ui/events/events.gyp:events_base', 341 '../ui/events/events.gyp:events_base',
340 '../ui/gfx/gfx.gyp:gfx', 342 '../ui/gfx/gfx.gyp:gfx',
341 '../ui/gfx/gfx.gyp:gfx_geometry', 343 '../ui/gfx/gfx.gyp:gfx_geometry',
342 'cc.gyp:cc', 344 'cc.gyp:cc',
343 'cc.gyp:cc_proto', 345 'cc.gyp:cc_proto',
344 'cc.gyp:cc_surfaces', 346 'cc.gyp:cc_surfaces',
345 'cc_test_support', 347 'cc_test_support',
348 'ipc/cc_ipc.gyp:cc_ipc',
346 ], 349 ],
347 'sources': [ 350 'sources': [
348 'test/cc_test_suite.cc', 351 'test/cc_test_suite.cc',
349 'test/run_all_unittests.cc', 352 'test/run_all_unittests.cc',
350 '<@(cc_unit_tests_source_files)', 353 '<@(cc_unit_tests_source_files)',
351 '<@(cc_surfaces_unit_tests_source_files)', 354 '<@(cc_surfaces_unit_tests_source_files)',
352 ], 355 ],
353 'conditions': [ 356 'conditions': [
354 ['OS == "android"', 357 ['OS == "android"',
355 { 358 {
356 'dependencies': [ 359 'dependencies': [
357 '../testing/android/native_test.gyp:native_test_native_code', 360 '../testing/android/native_test.gyp:native_test_native_code',
358 ], 361 ],
359 } 362 }
360 ], 363 ],
361 ], 364 ],
362 }, 365 },
363 { 366 {
364 # GN version: //cc/cc_perftests 367 # GN version: //cc/cc_perftests
365 'target_name': 'cc_perftests', 368 'target_name': 'cc_perftests',
366 'type': '<(gtest_target_type)', 369 'type': '<(gtest_target_type)',
367 'dependencies': [ 370 'dependencies': [
368 '../base/base.gyp:test_support_base', 371 '../base/base.gyp:test_support_base',
369 '../gpu/command_buffer/command_buffer.gyp:gles2_utils', 372 '../gpu/command_buffer/command_buffer.gyp:gles2_utils',
370 '../gpu/gpu.gyp:gpu', 373 '../gpu/gpu.gyp:gpu',
371 '../gpu/gpu.gyp:gpu_unittest_utils', 374 '../gpu/gpu.gyp:gpu_unittest_utils',
375 '../ipc/ipc.gyp:ipc',
372 '../media/media.gyp:media', 376 '../media/media.gyp:media',
373 '../skia/skia.gyp:skia', 377 '../skia/skia.gyp:skia',
374 '../testing/gmock.gyp:gmock', 378 '../testing/gmock.gyp:gmock',
375 '../testing/gtest.gyp:gtest', 379 '../testing/gtest.gyp:gtest',
376 '../testing/perf/perf_test.gyp:*', 380 '../testing/perf/perf_test.gyp:*',
377 '../ui/gfx/gfx.gyp:gfx', 381 '../ui/gfx/gfx.gyp:gfx',
378 '../ui/gfx/gfx.gyp:gfx_geometry', 382 '../ui/gfx/gfx.gyp:gfx_geometry',
379 'cc.gyp:cc', 383 'cc.gyp:cc',
380 'cc.gyp:cc_surfaces', 384 'cc.gyp:cc_surfaces',
381 'cc_test_support', 385 'cc_test_support',
386 'ipc/cc_ipc.gyp:cc_ipc',
382 ], 387 ],
383 'sources': [ 388 'sources': [
384 # Note: sources list duplicated in GN build. 389 # Note: sources list duplicated in GN build.
385 'animation/animation_host_perftest.cc', 390 'animation/animation_host_perftest.cc',
391 'ipc/cc_param_traits_perftest.cc',
386 'layers/layer_perftest.cc', 392 'layers/layer_perftest.cc',
387 'layers/picture_layer_impl_perftest.cc', 393 'layers/picture_layer_impl_perftest.cc',
388 'quads/draw_quad_perftest.cc', 394 'quads/draw_quad_perftest.cc',
389 'raster/raster_buffer_provider_perftest.cc', 395 'raster/raster_buffer_provider_perftest.cc',
390 'raster/task_graph_runner_perftest.cc', 396 'raster/task_graph_runner_perftest.cc',
391 'raster/texture_compressor_perftest.cc', 397 'raster/texture_compressor_perftest.cc',
392 'surfaces/surface_aggregator_perftest.cc', 398 'surfaces/surface_aggregator_perftest.cc',
393 'test/cc_test_suite.cc', 399 'test/cc_test_suite.cc',
394 'test/run_all_perftests.cc', 400 'test/run_all_perftests.cc',
395 'tiles/tile_manager_perftest.cc', 401 'tiles/tile_manager_perftest.cc',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 515 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
510 ], 516 ],
511 } 517 }
512 ], 518 ],
513 ], 519 ],
514 }, 520 },
515 ], 521 ],
516 }], 522 }],
517 ], 523 ],
518 } 524 }
OLDNEW
« no previous file with comments | « cc/BUILD.gn ('k') | cc/ipc/cc_param_traits_perftest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698