summaryrefslogtreecommitdiff
path: root/chromium/cloud_print
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-13 15:05:36 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-14 10:33:47 +0000
commite684a3455bcc29a6e3e66a004e352dea4e1141e7 (patch)
treed55b4003bde34d7d05f558f02cfd82b2a66a7aac /chromium/cloud_print
parent2b94bfe47ccb6c08047959d1c26e392919550e86 (diff)
downloadqtwebengine-chromium-e684a3455bcc29a6e3e66a004e352dea4e1141e7.tar.gz
BASELINE: Update Chromium to 72.0.3626.110 and Ninja to 1.9.0
Change-Id: Ic57220b00ecc929a893c91f5cc552f5d3e99e922 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/cloud_print')
-rw-r--r--chromium/cloud_print/virtual_driver/win/port_monitor/BUILD.gn29
1 files changed, 17 insertions, 12 deletions
diff --git a/chromium/cloud_print/virtual_driver/win/port_monitor/BUILD.gn b/chromium/cloud_print/virtual_driver/win/port_monitor/BUILD.gn
index 7b71d2cee5a..42fa30c2e3d 100644
--- a/chromium/cloud_print/virtual_driver/win/port_monitor/BUILD.gn
+++ b/chromium/cloud_print/virtual_driver/win/port_monitor/BUILD.gn
@@ -2,6 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+import("//build/config/compiler/compiler.gni")
import("//chrome/process_version_rc_template.gni")
assert(is_win)
@@ -69,17 +70,19 @@ if (current_cpu == "x64") {
gcp_portmon64_out_dir = get_label_info(gcp_portmon64_label, "root_out_dir")
- copy("copy_gcp_portmon_pdb") {
- visibility = [ ":copy_gcp_portmon_dll" ]
- sources = [
- "$gcp_portmon64_out_dir/gcp_portmon64.dll.pdb",
- ]
- outputs = [
- "$root_out_dir/{{source_file_part}}",
- ]
- deps = [
- gcp_portmon64_label,
- ]
+ if (symbol_level > 0) {
+ copy("copy_gcp_portmon_pdb") {
+ visibility = [ ":copy_gcp_portmon_dll" ]
+ sources = [
+ "$gcp_portmon64_out_dir/gcp_portmon64.dll.pdb",
+ ]
+ outputs = [
+ "$root_out_dir/{{source_file_part}}",
+ ]
+ deps = [
+ gcp_portmon64_label,
+ ]
+ }
}
copy("copy_gcp_portmon_dll") {
sources = [
@@ -89,9 +92,11 @@ if (current_cpu == "x64") {
"$root_out_dir/{{source_file_part}}",
]
deps = [
- ":copy_gcp_portmon_pdb",
gcp_portmon64_label,
]
+ if (symbol_level > 0) {
+ deps += [ ":copy_gcp_portmon_pdb" ]
+ }
}
}