| 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 = [ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 "//tools/perf/chrome_telemetry_build/", | 87 "//tools/perf/chrome_telemetry_build/", |
| 88 "//third_party/catapult/", | 88 "//third_party/catapult/", |
| 89 "//components/crash/content/tools/generate_breakpad_symbols.py", | 89 "//components/crash/content/tools/generate_breakpad_symbols.py", |
| 90 ] | 90 ] |
| 91 | 91 |
| 92 if (is_win) { | 92 if (is_win) { |
| 93 data_deps += [ "//chrome:reorder_imports" ] | 93 data_deps += [ "//chrome:reorder_imports" ] |
| 94 } | 94 } |
| 95 | 95 |
| 96 if (is_linux) { | 96 if (is_linux) { |
| 97 data_deps += [ | 97 data_deps += [ "//breakpad:dump_syms($host_toolchain)" ] |
| 98 "//tools/xdisplaycheck", | |
| 99 "//breakpad:dump_syms($host_toolchain)", | |
| 100 ] | |
| 101 } | 98 } |
| 102 | 99 |
| 103 if (is_mac) { | 100 if (is_mac) { |
| 104 data_deps += [ | 101 data_deps += [ |
| 105 "//breakpad:dump_syms", | 102 "//breakpad:dump_syms", |
| 106 "//chrome:chrome_framework", | 103 "//chrome:chrome_framework", |
| 107 "//chrome:chrome_helper_app", | 104 "//chrome:chrome_helper_app", |
| 108 "//third_party/crashpad/crashpad/tools:crashpad_database_util", | 105 "//third_party/crashpad/crashpad/tools:crashpad_database_util", |
| 109 ] | 106 ] |
| 110 } | 107 } |
| (...skipping 11 matching lines...) Expand all Loading... |
| 122 "$root_out_dir/base.dll.pdb", | 119 "$root_out_dir/base.dll.pdb", |
| 123 "$root_out_dir/blink_platform.dll.pdb", | 120 "$root_out_dir/blink_platform.dll.pdb", |
| 124 "$root_out_dir/blink_web.dll.pdb", | 121 "$root_out_dir/blink_web.dll.pdb", |
| 125 "$root_out_dir/content.dll.pdb", | 122 "$root_out_dir/content.dll.pdb", |
| 126 ] | 123 ] |
| 127 } else { | 124 } else { |
| 128 data += [ "$root_out_dir/chrome_child.dll.pdb" ] | 125 data += [ "$root_out_dir/chrome_child.dll.pdb" ] |
| 129 } | 126 } |
| 130 } | 127 } |
| 131 } | 128 } |
| OLD | NEW |