Chromium Code Reviews| 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/win/manifest.gni") | 5 import("//build/config/win/manifest.gni") |
| 6 | 6 |
| 7 # Depending on this target will cause the manifests for Chrome's default | 7 # Depending on this target will cause the manifests for Chrome's default |
| 8 # Windows and common control compatibility and elevation for executables. | 8 # Windows and common control compatibility and elevation for executables. |
| 9 windows_manifest("default_exe_manifest") { | 9 windows_manifest("default_exe_manifest") { |
| 10 sources = [ | 10 sources = [ |
| 11 as_invoker_manifest, | 11 as_invoker_manifest, |
| 12 common_controls_manifest, | 12 common_controls_manifest, |
| 13 default_compatibility_manifest, | 13 default_compatibility_manifest, |
| 14 ] | 14 ] |
| 15 type = "exe" | 15 type = "exe" |
| 16 } | 16 } |
| 17 | |
| 18 if (is_win) { | |
|
Dirk Pranke
2017/03/31 17:46:16
Nit: it seems like the `if (is_win)` should be red
jochen (gone - plz use gerrit)
2017/03/31 17:58:40
See patchset 4 - the all target appears to execute
| |
| 19 action("copy_cdb_to_output") { | |
| 20 script = "//build/win/copy_cdb_to_output.py" | |
| 21 inputs = [ | |
| 22 script, | |
| 23 ] | |
| 24 outputs = [ | |
| 25 "$root_out_dir/cdb/cdb.exe", | |
| 26 "$root_out_dir/cdb/dbgeng.dll", | |
| 27 "$root_out_dir/cdb/dbghelp.dll", | |
| 28 "$root_out_dir/cdb/dbgmodel.dll", | |
| 29 "$root_out_dir/cdb/winext/ext.dll", | |
| 30 "$root_out_dir/cdb/winext/uext.dll", | |
| 31 "$root_out_dir/cdb/winxp/exts.dll", | |
| 32 "$root_out_dir/cdb/winxp/ntsdexts.dll", | |
| 33 "$root_out_dir/cdb/api-ms-win-core-console-l1-1-0.dll", | |
| 34 "$root_out_dir/cdb/api-ms-win-core-datetime-l1-1-0.dll", | |
| 35 "$root_out_dir/cdb/api-ms-win-core-debug-l1-1-0.dll", | |
| 36 "$root_out_dir/cdb/api-ms-win-core-errorhandling-l1-1-0.dll", | |
| 37 "$root_out_dir/cdb/api-ms-win-core-file-l1-1-0.dll", | |
| 38 "$root_out_dir/cdb/api-ms-win-core-file-l1-2-0.dll", | |
| 39 "$root_out_dir/cdb/api-ms-win-core-file-l2-1-0.dll", | |
| 40 "$root_out_dir/cdb/api-ms-win-core-handle-l1-1-0.dll", | |
| 41 "$root_out_dir/cdb/api-ms-win-core-heap-l1-1-0.dll", | |
| 42 "$root_out_dir/cdb/api-ms-win-core-interlocked-l1-1-0.dll", | |
| 43 "$root_out_dir/cdb/api-ms-win-core-libraryloader-l1-1-0.dll", | |
| 44 "$root_out_dir/cdb/api-ms-win-core-localization-l1-2-0.dll", | |
| 45 "$root_out_dir/cdb/api-ms-win-core-memory-l1-1-0.dll", | |
| 46 "$root_out_dir/cdb/api-ms-win-core-namedpipe-l1-1-0.dll", | |
| 47 "$root_out_dir/cdb/api-ms-win-core-processenvironment-l1-1-0.dll", | |
| 48 "$root_out_dir/cdb/api-ms-win-core-processthreads-l1-1-0.dll", | |
| 49 "$root_out_dir/cdb/api-ms-win-core-processthreads-l1-1-1.dll", | |
| 50 "$root_out_dir/cdb/api-ms-win-core-profile-l1-1-0.dll", | |
| 51 "$root_out_dir/cdb/api-ms-win-core-rtlsupport-l1-1-0.dll", | |
| 52 "$root_out_dir/cdb/api-ms-win-core-string-l1-1-0.dll", | |
| 53 "$root_out_dir/cdb/api-ms-win-core-synch-l1-1-0.dll", | |
| 54 "$root_out_dir/cdb/api-ms-win-core-synch-l1-2-0.dll", | |
| 55 "$root_out_dir/cdb/api-ms-win-core-sysinfo-l1-1-0.dll", | |
| 56 "$root_out_dir/cdb/api-ms-win-core-timezone-l1-1-0.dll", | |
| 57 "$root_out_dir/cdb/api-ms-win-core-util-l1-1-0.dll", | |
| 58 "$root_out_dir/cdb/api-ms-win-crt-conio-l1-1-0.dll", | |
| 59 "$root_out_dir/cdb/api-ms-win-crt-convert-l1-1-0.dll", | |
| 60 "$root_out_dir/cdb/api-ms-win-crt-environment-l1-1-0.dll", | |
| 61 "$root_out_dir/cdb/api-ms-win-crt-filesystem-l1-1-0.dll", | |
| 62 "$root_out_dir/cdb/api-ms-win-crt-heap-l1-1-0.dll", | |
| 63 "$root_out_dir/cdb/api-ms-win-crt-locale-l1-1-0.dll", | |
| 64 "$root_out_dir/cdb/api-ms-win-crt-math-l1-1-0.dll", | |
| 65 "$root_out_dir/cdb/api-ms-win-crt-multibyte-l1-1-0.dll", | |
| 66 "$root_out_dir/cdb/api-ms-win-crt-private-l1-1-0.dll", | |
| 67 "$root_out_dir/cdb/api-ms-win-crt-process-l1-1-0.dll", | |
| 68 "$root_out_dir/cdb/api-ms-win-crt-runtime-l1-1-0.dll", | |
| 69 "$root_out_dir/cdb/api-ms-win-crt-stdio-l1-1-0.dll", | |
| 70 "$root_out_dir/cdb/api-ms-win-crt-string-l1-1-0.dll", | |
| 71 "$root_out_dir/cdb/api-ms-win-crt-time-l1-1-0.dll", | |
| 72 "$root_out_dir/cdb/api-ms-win-crt-utility-l1-1-0.dll", | |
| 73 "$root_out_dir/cdb/ucrtbase.dll", | |
| 74 ] | |
| 75 args = [ | |
| 76 rebase_path("$root_out_dir/cdb", root_out_dir), | |
| 77 current_cpu, | |
| 78 ] | |
| 79 } | |
| 80 } | |
| OLD | NEW |