| 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("//cc/cc.gni") | 5 import("//cc/cc.gni") |
| 6 import("//gpu/vulkan/features.gni") | 6 import("//gpu/vulkan/features.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "benchmarks/benchmark_instrumentation.cc", | 10 "benchmarks/benchmark_instrumentation.cc", |
| (...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 484 "//gpu/ipc:gl_in_process_context", | 484 "//gpu/ipc:gl_in_process_context", |
| 485 "//gpu/skia_bindings:skia_bindings", | 485 "//gpu/skia_bindings:skia_bindings", |
| 486 "//gpu/vulkan:features", | 486 "//gpu/vulkan:features", |
| 487 "//media", | 487 "//media", |
| 488 "//mojo/public/cpp/bindings:struct_traits", | 488 "//mojo/public/cpp/bindings:struct_traits", |
| 489 "//third_party/libyuv", | 489 "//third_party/libyuv", |
| 490 "//ui/events:events_base", | 490 "//ui/events:events_base", |
| 491 "//ui/gfx", | 491 "//ui/gfx", |
| 492 "//ui/gfx/geometry", | 492 "//ui/gfx/geometry", |
| 493 "//ui/gl", | 493 "//ui/gl", |
| 494 "//ui/latency", |
| 494 ] | 495 ] |
| 495 | 496 |
| 496 defines = [ "CC_IMPLEMENTATION=1" ] | 497 defines = [ "CC_IMPLEMENTATION=1" ] |
| 497 | 498 |
| 498 if (enable_vulkan) { | 499 if (enable_vulkan) { |
| 499 sources += [ | 500 sources += [ |
| 500 "output/vulkan_renderer.cc", | 501 "output/vulkan_renderer.cc", |
| 501 "output/vulkan_renderer.h", | 502 "output/vulkan_renderer.h", |
| 502 ] | 503 ] |
| 503 | 504 |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 "//gpu/skia_bindings", | 674 "//gpu/skia_bindings", |
| 674 "//media", | 675 "//media", |
| 675 "//skia", | 676 "//skia", |
| 676 "//testing/gmock", | 677 "//testing/gmock", |
| 677 "//testing/gtest", | 678 "//testing/gtest", |
| 678 "//ui/gfx", | 679 "//ui/gfx", |
| 679 "//ui/gfx:test_support", | 680 "//ui/gfx:test_support", |
| 680 "//ui/gfx/geometry", | 681 "//ui/gfx/geometry", |
| 681 "//ui/gl", | 682 "//ui/gl", |
| 682 "//ui/gl:test_support", | 683 "//ui/gl:test_support", |
| 684 "//ui/latency", |
| 683 ] | 685 ] |
| 684 if (!is_android) { | 686 if (!is_android) { |
| 685 data_deps = [ | 687 data_deps = [ |
| 686 "//third_party/mesa:osmesa", | 688 "//third_party/mesa:osmesa", |
| 687 ] | 689 ] |
| 688 } | 690 } |
| 689 } | 691 } |
| 690 | 692 |
| 691 cc_test("cc_unittests") { | 693 cc_test("cc_unittests") { |
| 692 sources = [ | 694 sources = [ |
| (...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 952 data = [ | 954 data = [ |
| 953 "test/data/", | 955 "test/data/", |
| 954 | 956 |
| 955 # Needed for isolate script to execute. | 957 # Needed for isolate script to execute. |
| 956 "//testing/scripts/common.py", | 958 "//testing/scripts/common.py", |
| 957 "//testing/xvfb.py", | 959 "//testing/xvfb.py", |
| 958 "//testing/scripts/run_gtest_perf_test.py", | 960 "//testing/scripts/run_gtest_perf_test.py", |
| 959 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 961 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 960 ] | 962 ] |
| 961 } | 963 } |
| OLD | NEW |