| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 | 6 |
| 7 group("telemetry_chrome_test") { | 7 group("telemetry_chrome_test") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| 11 data_deps = [ | 11 data_deps = [ |
| 12 "//chrome/android:chrome_public_apk", | 12 "//chrome/android:chrome_public_apk", |
| 13 ] | 13 ] |
| 14 } else { | 14 } else { |
| 15 data_deps = [ | 15 data_deps = [ |
| 16 "//third_party/catapult/telemetry:bitmaptools", | 16 "//third_party/catapult/telemetry:bitmaptools", |
| 17 ] | 17 ] |
| 18 | 18 |
| 19 data_deps += [ "//chrome" ] | 19 data_deps += [ "//chrome" ] |
| 20 } | 20 } |
| 21 | 21 |
| 22 data = [ | 22 data = [ |
| 23 "//tools/perf/core/", # chrome_telemetry_build/ depends on core/ |
| 23 "//tools/perf/chrome_telemetry_build/", | 24 "//tools/perf/chrome_telemetry_build/", |
| 24 "//third_party/catapult/", | 25 "//third_party/catapult/", |
| 25 "//components/crash/content/tools/generate_breakpad_symbols.py", | 26 "//components/crash/content/tools/generate_breakpad_symbols.py", |
| 26 ] | 27 ] |
| 27 | 28 |
| 28 if (is_win) { | 29 if (is_win) { |
| 29 data_deps += [ "//chrome:reorder_imports" ] | 30 data_deps += [ "//chrome:reorder_imports" ] |
| 30 } | 31 } |
| 31 | 32 |
| 32 if (is_linux) { | 33 if (is_linux) { |
| (...skipping 22 matching lines...) Expand all Loading... |
| 55 "$root_out_dir/base.dll.pdb", | 56 "$root_out_dir/base.dll.pdb", |
| 56 "$root_out_dir/blink_platform.dll.pdb", | 57 "$root_out_dir/blink_platform.dll.pdb", |
| 57 "$root_out_dir/blink_web.dll.pdb", | 58 "$root_out_dir/blink_web.dll.pdb", |
| 58 "$root_out_dir/content.dll.pdb", | 59 "$root_out_dir/content.dll.pdb", |
| 59 ] | 60 ] |
| 60 } else { | 61 } else { |
| 61 data += [ "$root_out_dir/chrome_child.dll.pdb" ] | 62 data += [ "$root_out_dir/chrome_child.dll.pdb" ] |
| 62 } | 63 } |
| 63 } | 64 } |
| 64 } | 65 } |
| OLD | NEW |