| 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 if (is_win) { | 7 if (is_win) { |
| 8 action("copy_cdb_to_output") { | 8 action("copy_cdb_to_output") { |
| 9 script = "//build/win/copy_cdb_to_output.py" | 9 script = "//build/win/copy_cdb_to_output.py" |
| 10 inputs = [ | 10 inputs = [ |
| 11 script, | 11 script, |
| 12 ] | 12 ] |
| 13 outputs = [ | 13 outputs = [ |
| 14 "$root_out_dir/cdb/cdb.exe", | 14 "$root_out_dir/cdb/cdb.exe", |
| 15 "$root_out_dir/cdb/dbgeng.dll", | 15 "$root_out_dir/cdb/dbgeng.dll", |
| 16 "$root_out_dir/cdb/dbghelp.dll", | 16 "$root_out_dir/cdb/dbghelp.dll", |
| 17 "$root_out_dir/cdb/dbgmodel.dll", | 17 "$root_out_dir/cdb/dbgmodel.dll", |
| 18 ] | 18 ] |
| 19 args = [ | 19 args = [ |
| 20 rebase_path("$root_out_dir/cdb", root_out_dir), | 20 rebase_path("$root_out_dir/cdb", root_out_dir), |
| 21 target_cpu, | 21 current_cpu, |
| 22 ] | 22 ] |
| 23 } | 23 } |
| 24 } | 24 } |
| 25 | 25 |
| 26 group("telemetry_chrome_test") { | 26 group("telemetry_chrome_test") { |
| 27 testonly = true | 27 testonly = true |
| 28 | 28 |
| 29 if (is_android) { | 29 if (is_android) { |
| 30 data_deps = [ | 30 data_deps = [ |
| 31 "//chrome/android:chrome_public_apk", | 31 "//chrome/android:chrome_public_apk", |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 "$root_out_dir/base.dll.pdb", | 79 "$root_out_dir/base.dll.pdb", |
| 80 "$root_out_dir/blink_platform.dll.pdb", | 80 "$root_out_dir/blink_platform.dll.pdb", |
| 81 "$root_out_dir/blink_web.dll.pdb", | 81 "$root_out_dir/blink_web.dll.pdb", |
| 82 "$root_out_dir/content.dll.pdb", | 82 "$root_out_dir/content.dll.pdb", |
| 83 ] | 83 ] |
| 84 } else { | 84 } else { |
| 85 data += [ "$root_out_dir/chrome_child.dll.pdb" ] | 85 data += [ "$root_out_dir/chrome_child.dll.pdb" ] |
| 86 } | 86 } |
| 87 } | 87 } |
| 88 } | 88 } |
| OLD | NEW |