Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Unified Diff: third_party/mesa/BUILD.gn

Issue 1749053002: Move //remoting/remoting_host_win.gypi:* to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update for component build of Windows Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/mesa/BUILD.gn
diff --git a/third_party/mesa/BUILD.gn b/third_party/mesa/BUILD.gn
index 31df76a6dcefa07c7d9f96b0b6efc89b918638a7..fd0d31ea890911662ca46b20d3a34674e77db3fa 100644
--- a/third_party/mesa/BUILD.gn
+++ b/third_party/mesa/BUILD.gn
@@ -713,6 +713,11 @@ loadable_module("osmesa") {
if (is_win) {
ldflags = [ "/DEF:" + rebase_path("src/src/mesa/drivers/osmesa/osmesa.def",
root_build_dir) ]
+ if (is_component_build) {
+ # A known bug in VC linker http://shortn/_m9vLk6Ao0L
+ # TODO(zijiehe): Remove after a compiler and linker upgrade.
+ ldflags += [ "/guard:no" ]
+ }
}
deps = [

Powered by Google App Engine
This is Rietveld 408576698