| 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 "output/filter_operation.cc", | 237 "output/filter_operation.cc", |
| 238 "output/filter_operation.h", | 238 "output/filter_operation.h", |
| 239 "output/filter_operations.cc", | 239 "output/filter_operations.cc", |
| 240 "output/filter_operations.h", | 240 "output/filter_operations.h", |
| 241 "output/geometry_binding.cc", | 241 "output/geometry_binding.cc", |
| 242 "output/geometry_binding.h", | 242 "output/geometry_binding.h", |
| 243 "output/gl_renderer.cc", | 243 "output/gl_renderer.cc", |
| 244 "output/gl_renderer.h", | 244 "output/gl_renderer.h", |
| 245 "output/gl_renderer_draw_cache.cc", | 245 "output/gl_renderer_draw_cache.cc", |
| 246 "output/gl_renderer_draw_cache.h", | 246 "output/gl_renderer_draw_cache.h", |
| 247 "output/in_process_context_provider.cc", |
| 248 "output/in_process_context_provider.h", |
| 247 "output/latency_info_swap_promise.cc", | 249 "output/latency_info_swap_promise.cc", |
| 248 "output/latency_info_swap_promise.h", | 250 "output/latency_info_swap_promise.h", |
| 249 "output/layer_quad.cc", | 251 "output/layer_quad.cc", |
| 250 "output/layer_quad.h", | 252 "output/layer_quad.h", |
| 251 "output/managed_memory_policy.cc", | 253 "output/managed_memory_policy.cc", |
| 252 "output/managed_memory_policy.h", | 254 "output/managed_memory_policy.h", |
| 253 "output/output_surface.cc", | 255 "output/output_surface.cc", |
| 254 "output/output_surface.h", | 256 "output/output_surface.h", |
| 255 "output/output_surface_client.h", | 257 "output/output_surface_client.h", |
| 256 "output/output_surface_frame.cc", | 258 "output/output_surface_frame.cc", |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 577 public_deps = [ | 579 public_deps = [ |
| 578 "//cc/base", | 580 "//cc/base", |
| 579 "//skia", | 581 "//skia", |
| 580 ] | 582 ] |
| 581 deps = [ | 583 deps = [ |
| 582 "//base", | 584 "//base", |
| 583 "//base/third_party/dynamic_annotations", | 585 "//base/third_party/dynamic_annotations", |
| 584 "//cc/proto", | 586 "//cc/proto", |
| 585 "//cc/surfaces:surface_id", | 587 "//cc/surfaces:surface_id", |
| 586 "//gpu", | 588 "//gpu", |
| 589 "//gpu/command_buffer/client:gles2_implementation", |
| 587 "//gpu/command_buffer/client:gles2_interface", | 590 "//gpu/command_buffer/client:gles2_interface", |
| 591 "//gpu/ipc:gl_in_process_context", |
| 592 "//gpu/skia_bindings:skia_bindings", |
| 588 "//media", | 593 "//media", |
| 589 "//third_party/libyuv", | 594 "//third_party/libyuv", |
| 590 "//ui/events:events_base", | 595 "//ui/events:events_base", |
| 591 "//ui/gfx", | 596 "//ui/gfx", |
| 592 "//ui/gfx/geometry", | 597 "//ui/gfx/geometry", |
| 593 "//ui/gl", | 598 "//ui/gl", |
| 594 ] | 599 ] |
| 595 | 600 |
| 596 defines = [ "CC_IMPLEMENTATION=1" ] | 601 defines = [ "CC_IMPLEMENTATION=1" ] |
| 597 | 602 |
| (...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1074 data = [ | 1079 data = [ |
| 1075 "test/data/", | 1080 "test/data/", |
| 1076 | 1081 |
| 1077 # Needed for isolate script to execute. | 1082 # Needed for isolate script to execute. |
| 1078 "//testing/scripts/common.py", | 1083 "//testing/scripts/common.py", |
| 1079 "//testing/xvfb.py", | 1084 "//testing/xvfb.py", |
| 1080 "//testing/scripts/run_gtest_perf_test.py", | 1085 "//testing/scripts/run_gtest_perf_test.py", |
| 1081 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1086 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1082 ] | 1087 ] |
| 1083 } | 1088 } |
| OLD | NEW |