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