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 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
594 # The _run targets exist only for compatibility w/ GYP. | 594 # The _run targets exist only for compatibility w/ GYP. |
595 group("telemetry_gpu_test_run") { | 595 group("telemetry_gpu_test_run") { |
596 testonly = true | 596 testonly = true |
597 deps = [ | 597 deps = [ |
598 ":telemetry_gpu_test", | 598 ":telemetry_gpu_test", |
599 ] | 599 ] |
600 } | 600 } |
601 | 601 |
602 group("telemetry_gpu_test") { | 602 group("telemetry_gpu_test") { |
603 data_deps = [ | 603 data_deps = [ |
604 "//chrome", | 604 # TODO(kbr): this used to be "//chrome". Had to change this to |
| 605 # chrome_initial temporarily to work around crbug.com/536192. |
| 606 "//chrome:chrome_initial", |
605 "//tools/telemetry:bitmaptools", | 607 "//tools/telemetry:bitmaptools", |
606 ] | 608 ] |
607 | 609 |
608 data = [ | 610 data = [ |
609 "//content/test/gpu/", | 611 "//content/test/gpu/", |
610 "//content/test/data/gpu/", | 612 "//content/test/data/gpu/", |
611 | 613 |
612 # For GpuProcess.video | 614 # For GpuProcess.video |
613 "//content/test/data/media/bear.ogv", | 615 "//content/test/data/media/bear.ogv", |
614 "//third_party/catapult/", | 616 "//third_party/catapult/", |
(...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2017 "//third_party/mojo/src/mojo/edk/system", | 2019 "//third_party/mojo/src/mojo/edk/system", |
2018 ] | 2020 ] |
2019 | 2021 |
2020 if (!is_android && use_ash) { | 2022 if (!is_android && use_ash) { |
2021 sources += rebase_path( | 2023 sources += rebase_path( |
2022 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2024 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
2023 ".", | 2025 ".", |
2024 "//chrome") | 2026 "//chrome") |
2025 } | 2027 } |
2026 } | 2028 } |
OLD | NEW |