| 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("//cc/cc.gni") | 6 import("//cc/cc.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", |
| (...skipping 511 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 522 deps = [ | 522 deps = [ |
| 523 "//base", | 523 "//base", |
| 524 "//base/third_party/dynamic_annotations", | 524 "//base/third_party/dynamic_annotations", |
| 525 "//cc/surfaces:surface_id", | 525 "//cc/surfaces:surface_id", |
| 526 "//gpu", | 526 "//gpu", |
| 527 "//gpu/command_buffer/client:gles2_implementation", | 527 "//gpu/command_buffer/client:gles2_implementation", |
| 528 "//gpu/command_buffer/client:gles2_interface", | 528 "//gpu/command_buffer/client:gles2_interface", |
| 529 "//gpu/ipc:gl_in_process_context", | 529 "//gpu/ipc:gl_in_process_context", |
| 530 "//gpu/skia_bindings:skia_bindings", | 530 "//gpu/skia_bindings:skia_bindings", |
| 531 "//media", | 531 "//media", |
| 532 "//mojo/public/cpp/bindings:struct_traits", |
| 532 "//third_party/libyuv", | 533 "//third_party/libyuv", |
| 533 "//ui/events:events_base", | 534 "//ui/events:events_base", |
| 534 "//ui/gfx", | 535 "//ui/gfx", |
| 535 "//ui/gfx/geometry", | 536 "//ui/gfx/geometry", |
| 536 "//ui/gl", | 537 "//ui/gl", |
| 537 ] | 538 ] |
| 538 | 539 |
| 539 defines = [ "CC_IMPLEMENTATION=1" ] | 540 defines = [ "CC_IMPLEMENTATION=1" ] |
| 540 | 541 |
| 541 if (enable_vulkan) { | 542 if (enable_vulkan) { |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 data = [ | 990 data = [ |
| 990 "test/data/", | 991 "test/data/", |
| 991 | 992 |
| 992 # Needed for isolate script to execute. | 993 # Needed for isolate script to execute. |
| 993 "//testing/scripts/common.py", | 994 "//testing/scripts/common.py", |
| 994 "//testing/xvfb.py", | 995 "//testing/xvfb.py", |
| 995 "//testing/scripts/run_gtest_perf_test.py", | 996 "//testing/scripts/run_gtest_perf_test.py", |
| 996 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 997 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 997 ] | 998 ] |
| 998 } | 999 } |
| OLD | NEW |