| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("cc") { | 7 source_set("cc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "debug/frame_timing_request.cc", | 9 "debug/frame_timing_request.cc", |
| 10 "debug/frame_timing_request.h", | 10 "debug/frame_timing_request.h", |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 "quads/stream_video_draw_quad.cc", | 117 "quads/stream_video_draw_quad.cc", |
| 118 "quads/stream_video_draw_quad.h", | 118 "quads/stream_video_draw_quad.h", |
| 119 "quads/surface_draw_quad.cc", | 119 "quads/surface_draw_quad.cc", |
| 120 "quads/surface_draw_quad.h", | 120 "quads/surface_draw_quad.h", |
| 121 "quads/texture_draw_quad.cc", | 121 "quads/texture_draw_quad.cc", |
| 122 "quads/texture_draw_quad.h", | 122 "quads/texture_draw_quad.h", |
| 123 "quads/tile_draw_quad.cc", | 123 "quads/tile_draw_quad.cc", |
| 124 "quads/tile_draw_quad.h", | 124 "quads/tile_draw_quad.h", |
| 125 "quads/yuv_video_draw_quad.cc", | 125 "quads/yuv_video_draw_quad.cc", |
| 126 "quads/yuv_video_draw_quad.h", | 126 "quads/yuv_video_draw_quad.h", |
| 127 "resources/layer_painter.h", | |
| 128 "resources/layer_quad.cc", | 127 "resources/layer_quad.cc", |
| 129 "resources/layer_quad.h", | 128 "resources/layer_quad.h", |
| 130 "resources/platform_color.h", | 129 "resources/platform_color.h", |
| 131 "resources/release_callback.h", | 130 "resources/release_callback.h", |
| 132 "resources/resource.cc", | 131 "resources/resource.cc", |
| 133 "resources/resource.h", | 132 "resources/resource.h", |
| 134 "resources/resource_format.cc", | 133 "resources/resource_format.cc", |
| 135 "resources/resource_format.h", | 134 "resources/resource_format.h", |
| 136 "resources/resource_pool.cc", | 135 "resources/resource_pool.cc", |
| 137 "resources/resource_pool.h", | 136 "resources/resource_pool.h", |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "//ui/events:events_base", | 354 "//ui/events:events_base", |
| 356 "//ui/gfx", | 355 "//ui/gfx", |
| 357 "//ui/gfx/geometry", | 356 "//ui/gfx/geometry", |
| 358 "//ui/gfx:test_support", | 357 "//ui/gfx:test_support", |
| 359 "//ui/gl", | 358 "//ui/gl", |
| 360 ] | 359 ] |
| 361 } | 360 } |
| 362 | 361 |
| 363 test("cc_perftests") { | 362 test("cc_perftests") { |
| 364 sources = [ | 363 sources = [ |
| 365 "resources/picture_layer_tiling_perftest.cc", | |
| 366 "resources/picture_pile_impl_perftest.cc", | |
| 367 "resources/task_graph_runner_perftest.cc", | |
| 368 "resources/texture_compressor_perftest.cc", | 364 "resources/texture_compressor_perftest.cc", |
| 369 "resources/tile_manager_perftest.cc", | |
| 370 "resources/tile_task_worker_pool_perftest.cc", | |
| 371 "test/cc_test_suite.cc", | 365 "test/cc_test_suite.cc", |
| 372 "test/run_all_perftests.cc", | 366 "test/run_all_perftests.cc", |
| 373 ] | 367 ] |
| 374 | 368 |
| 375 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 369 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 376 | 370 |
| 377 deps = [ | 371 deps = [ |
| 378 ":cc", | 372 ":cc", |
| 379 ":test_support", | 373 ":test_support", |
| 380 "//base", | 374 "//base", |
| 381 "//base/test:test_support", | 375 "//base/test:test_support", |
| 382 "//gpu", | 376 "//gpu", |
| 383 "//gpu:test_support", | 377 "//gpu:test_support", |
| 384 "//gpu/command_buffer/common:gles2_utils", | 378 "//gpu/command_buffer/common:gles2_utils", |
| 385 "//skia", | 379 "//skia", |
| 386 "//testing/gmock", | 380 "//testing/gmock", |
| 387 "//testing/gtest", | 381 "//testing/gtest", |
| 388 "//testing/perf", | 382 "//testing/perf", |
| 389 "//ui/gfx", | 383 "//ui/gfx", |
| 390 "//ui/gfx/geometry", | 384 "//ui/gfx/geometry", |
| 391 "//ui/gl", | 385 "//ui/gl", |
| 392 ] | 386 ] |
| 393 } | 387 } |
| OLD | NEW |