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("//cc/cc.gni") | 6 import("//cc/cc.gni") |
6 import("//gpu/vulkan/features.gni") | |
7 | 7 |
8 cc_component("cc") { | 8 cc_component("cc") { |
9 sources = [ | 9 sources = [ |
10 "debug/benchmark_instrumentation.cc", | 10 "debug/benchmark_instrumentation.cc", |
11 "debug/benchmark_instrumentation.h", | 11 "debug/benchmark_instrumentation.h", |
12 "debug/debug_colors.cc", | 12 "debug/debug_colors.cc", |
13 "debug/debug_colors.h", | 13 "debug/debug_colors.h", |
14 "debug/debug_rect_history.cc", | 14 "debug/debug_rect_history.cc", |
15 "debug/debug_rect_history.h", | 15 "debug/debug_rect_history.h", |
16 "debug/devtools_instrumentation.cc", | 16 "debug/devtools_instrumentation.cc", |
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 deps = [ | 524 deps = [ |
525 "//base", | 525 "//base", |
526 "//base/third_party/dynamic_annotations", | 526 "//base/third_party/dynamic_annotations", |
527 "//cc/paint", | 527 "//cc/paint", |
528 "//cc/surfaces:surface_id", | 528 "//cc/surfaces:surface_id", |
529 "//gpu", | 529 "//gpu", |
530 "//gpu/command_buffer/client:gles2_implementation", | 530 "//gpu/command_buffer/client:gles2_implementation", |
531 "//gpu/command_buffer/client:gles2_interface", | 531 "//gpu/command_buffer/client:gles2_interface", |
532 "//gpu/ipc:gl_in_process_context", | 532 "//gpu/ipc:gl_in_process_context", |
533 "//gpu/skia_bindings:skia_bindings", | 533 "//gpu/skia_bindings:skia_bindings", |
534 "//gpu/vulkan:features", | |
535 "//media", | 534 "//media", |
536 "//mojo/public/cpp/bindings:struct_traits", | 535 "//mojo/public/cpp/bindings:struct_traits", |
537 "//third_party/libyuv", | 536 "//third_party/libyuv", |
538 "//ui/events:events_base", | 537 "//ui/events:events_base", |
539 "//ui/gfx", | 538 "//ui/gfx", |
540 "//ui/gfx/geometry", | 539 "//ui/gfx/geometry", |
541 "//ui/gl", | 540 "//ui/gl", |
542 ] | 541 ] |
543 | 542 |
544 defines = [ "CC_IMPLEMENTATION=1" ] | 543 defines = [ "CC_IMPLEMENTATION=1" ] |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
999 data = [ | 998 data = [ |
1000 "test/data/", | 999 "test/data/", |
1001 | 1000 |
1002 # Needed for isolate script to execute. | 1001 # Needed for isolate script to execute. |
1003 "//testing/scripts/common.py", | 1002 "//testing/scripts/common.py", |
1004 "//testing/xvfb.py", | 1003 "//testing/xvfb.py", |
1005 "//testing/scripts/run_gtest_perf_test.py", | 1004 "//testing/scripts/run_gtest_perf_test.py", |
1006 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1005 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
1007 ] | 1006 ] |
1008 } | 1007 } |
OLD | NEW |