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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
635 data += [ | 635 data += [ |
636 "$root_out_dir/base.dll.pdb", | 636 "$root_out_dir/base.dll.pdb", |
637 "$root_out_dir/blink_platform.dll.pdb", | 637 "$root_out_dir/blink_platform.dll.pdb", |
638 "$root_out_dir/blink_web.dll.pdb", | 638 "$root_out_dir/blink_web.dll.pdb", |
639 "$root_out_dir/content.dll.pdb", | 639 "$root_out_dir/content.dll.pdb", |
640 ] | 640 ] |
641 } | 641 } |
642 } | 642 } |
643 } | 643 } |
644 | 644 |
| 645 group("telemetry_gpu_unittests_run") { |
| 646 testonly = true |
| 647 deps = [ |
| 648 ":telemetry_gpu_unittests", |
| 649 ] |
| 650 } |
| 651 |
| 652 group("telemetry_gpu_unittests") { |
| 653 data = [ |
| 654 # TODO(kbr): refactor the telemetry dependencies more cleanly. |
| 655 "//content/test/gpu/", |
| 656 "//content/test/data/gpu/", |
| 657 |
| 658 # For GpuProcess.video |
| 659 "//content/test/data/media/bear.ogv", |
| 660 "//third_party/catapult/", |
| 661 |
| 662 # Generic telemetry deps |
| 663 "//build/android/devil/", |
| 664 "//build/android/pylib/", |
| 665 "//build/util/", |
| 666 "//third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.js
", |
| 667 "//third_party/WebKit/PerformanceTests/resources/statistics.js", |
| 668 "//third_party/flot/jquery.flot.min.js", |
| 669 "//third_party/webpagereplay/", |
| 670 "//tools/telemetry/", |
| 671 |
| 672 # From telemetry_gpu_unittests.isolate |
| 673 "//third_party/typ/", |
| 674 "//testing/scripts/common.py", |
| 675 "//testing/scripts/run_telemetry_as_googletest.py", |
| 676 ] |
| 677 } |
| 678 |
645 # TODO(GYP): Delete this after we've converted everything to GN. | 679 # TODO(GYP): Delete this after we've converted everything to GN. |
646 # The _run targets exist only for compatibility w/ GYP. | 680 # The _run targets exist only for compatibility w/ GYP. |
647 group("tab_capture_end2end_tests_run") { | 681 group("tab_capture_end2end_tests_run") { |
648 testonly = true | 682 testonly = true |
649 deps = [ | 683 deps = [ |
650 ":browser_tests", | 684 ":browser_tests", |
651 ] | 685 ] |
652 } | 686 } |
653 | 687 |
654 # TODO(GYP): Delete this after we've converted everything to GN. | 688 # TODO(GYP): Delete this after we've converted everything to GN. |
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2015 "//third_party/mojo/src/mojo/edk/system", | 2049 "//third_party/mojo/src/mojo/edk/system", |
2016 ] | 2050 ] |
2017 | 2051 |
2018 if (!is_android && use_ash) { | 2052 if (!is_android && use_ash) { |
2019 sources += rebase_path( | 2053 sources += rebase_path( |
2020 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2054 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
2021 ".", | 2055 ".", |
2022 "//chrome") | 2056 "//chrome") |
2023 } | 2057 } |
2024 } | 2058 } |
OLD | NEW |