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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
637 data += [ | 637 data += [ |
638 "$root_out_dir/base.dll.pdb", | 638 "$root_out_dir/base.dll.pdb", |
639 "$root_out_dir/blink_platform.dll.pdb", | 639 "$root_out_dir/blink_platform.dll.pdb", |
640 "$root_out_dir/blink_web.dll.pdb", | 640 "$root_out_dir/blink_web.dll.pdb", |
641 "$root_out_dir/content.dll.pdb", | 641 "$root_out_dir/content.dll.pdb", |
642 ] | 642 ] |
643 } | 643 } |
644 } | 644 } |
645 } | 645 } |
646 | 646 |
647 group("telemetry_gpu_unittests_run") { | |
648 testonly = true | |
649 deps = [ | |
650 ":telemetry_gpu_unittests", | |
651 ] | |
652 } | |
653 | |
654 group("telemetry_gpu_unittests") { | |
655 # telemetry/testing/run_tests.py require environment to have a browser. | |
656 # TODO(nednguyen): make sure that telemetry_gpu_unittests script doesn't | |
657 # need browser to run. (crbug.com/534585) | |
658 data_deps = [ "//chrome" ] | |
Ken Russell (switch to Gerrit)
2015/09/21 23:04:37
Thanks for tracking down this problem. I don't und
nednguyen
2015/09/21 23:13:01
Which are the non-GN platforms?
Dirk Pranke
2015/09/22 17:48:52
Most of them :). Only the main linux release and d
| |
659 | |
660 data = [ | |
661 # TODO(kbr): refactor the telemetry dependencies more cleanly. | |
662 "//content/test/gpu/", | |
663 "//content/test/data/gpu/", | |
664 | |
665 # For GpuProcess.video | |
666 "//content/test/data/media/bear.ogv", | |
667 "//third_party/catapult/", | |
668 | |
669 # Generic telemetry deps | |
670 "//build/android/devil/", | |
671 "//build/android/pylib/", | |
672 "//build/util/", | |
673 "//third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.js ", | |
674 "//third_party/WebKit/PerformanceTests/resources/statistics.js", | |
675 "//third_party/flot/jquery.flot.min.js", | |
676 "//third_party/webpagereplay/", | |
677 "//tools/telemetry/", | |
678 | |
679 # From telemetry_gpu_unittests.isolate | |
680 "//third_party/typ/", | |
681 "//testing/scripts/common.py", | |
682 "//testing/scripts/run_telemetry_as_googletest.py", | |
683 ] | |
684 } | |
685 | |
647 # TODO(GYP): Delete this after we've converted everything to GN. | 686 # TODO(GYP): Delete this after we've converted everything to GN. |
648 # The _run targets exist only for compatibility w/ GYP. | 687 # The _run targets exist only for compatibility w/ GYP. |
649 group("tab_capture_end2end_tests_run") { | 688 group("tab_capture_end2end_tests_run") { |
650 testonly = true | 689 testonly = true |
651 deps = [ | 690 deps = [ |
652 ":browser_tests", | 691 ":browser_tests", |
653 ] | 692 ] |
654 } | 693 } |
655 | 694 |
656 # TODO(GYP): Delete this after we've converted everything to GN. | 695 # TODO(GYP): Delete this after we've converted everything to GN. |
(...skipping 1360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
2017 "//third_party/mojo/src/mojo/edk/system", | 2056 "//third_party/mojo/src/mojo/edk/system", |
2018 ] | 2057 ] |
2019 | 2058 |
2020 if (!is_android && use_ash) { | 2059 if (!is_android && use_ash) { |
2021 sources += rebase_path( | 2060 sources += rebase_path( |
2022 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2061 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
2023 ".", | 2062 ".", |
2024 "//chrome") | 2063 "//chrome") |
2025 } | 2064 } |
2026 } | 2065 } |
OLD | NEW |