| 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 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "//chrome", |
| 605 "//tools/telemetry:bitmaptools", | 605 "//tools/telemetry:bitmaptools", |
| 606 ] | 606 ] |
| 607 | 607 |
| 608 if (is_win) { |
| 609 data_deps += [ "//content/shell:crash_service" ] |
| 610 } |
| 611 |
| 608 data = [ | 612 data = [ |
| 609 "//content/test/gpu/", | 613 "//content/test/gpu/", |
| 610 "//content/test/data/gpu/", | 614 "//content/test/data/gpu/", |
| 611 | 615 |
| 612 # For GpuProcess.video | 616 # For GpuProcess.video |
| 613 "//content/test/data/media/bear.ogv", | 617 "//content/test/data/media/bear.ogv", |
| 614 "//third_party/catapult/", | 618 "//third_party/catapult/", |
| 615 | 619 |
| 616 # For webgl_conformance | 620 # For webgl_conformance |
| 617 "//third_party/webgl/", | 621 "//third_party/webgl/", |
| (...skipping 1399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2017 "//third_party/mojo/src/mojo/edk/system", | 2021 "//third_party/mojo/src/mojo/edk/system", |
| 2018 ] | 2022 ] |
| 2019 | 2023 |
| 2020 if (!is_android && use_ash) { | 2024 if (!is_android && use_ash) { |
| 2021 sources += rebase_path( | 2025 sources += rebase_path( |
| 2022 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2026 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 2023 ".", | 2027 ".", |
| 2024 "//chrome") | 2028 "//chrome") |
| 2025 } | 2029 } |
| 2026 } | 2030 } |
| OLD | NEW |