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

Unified Diff: media/mojo/BUILD.gn

Issue 2581893002: Use the /WX flag to have link warnings treated as errors. (Closed)
Patch Set: Move /WX setter into :compiler and respect fatal_linker_warnings Created 4 years 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
« no previous file with comments | « media/BUILD.gn ('k') | media/mojo/services/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/mojo/BUILD.gn
diff --git a/media/mojo/BUILD.gn b/media/mojo/BUILD.gn
index bcaaa4c8478c4a532871e21afdc45101909882e4..8ac65b347cf68ddfe598779db0131f8af791a576 100644
--- a/media/mojo/BUILD.gn
+++ b/media/mojo/BUILD.gn
@@ -35,6 +35,14 @@ source_set("unit_tests") {
}
test("media_mojo_unittests") {
+ # crbug.com/676418: Suppress symbol import warnings.
+ if (is_win && is_component_build) {
+ ldflags = [
+ "/ignore:4217",
+ "/ignore:4049",
+ ]
+ }
+
deps = [
":unit_tests",
"//mojo/edk/test:run_all_unittests",
« no previous file with comments | « media/BUILD.gn ('k') | media/mojo/services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698