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

Unified Diff: media/base/BUILD.gn

Issue 941863002: Add more size_t -> int warning fixes for the win x64 GN build. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@fix_win64
Patch Set: remove mojo changes Created 5 years, 10 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
« no previous file with comments | « media/audio/BUILD.gn ('k') | media/blink/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/BUILD.gn
diff --git a/media/base/BUILD.gn b/media/base/BUILD.gn
index 0fb3b1ceca87944fc4d8eec687999c87e7598f2e..bfe41de9a595c56b8d0b08a3f9304fbc16513793 100644
--- a/media/base/BUILD.gn
+++ b/media/base/BUILD.gn
@@ -270,7 +270,10 @@ source_set("base_for_cast_ios") {
"video_frame.cc",
"video_frame.h",
]
- configs += [ "//media:media_config" ]
+ configs += [
+ "//build/config/compiler:no_size_t_to_int_warning",
+ "//media:media_config",
+ ]
all_dependent_configs = [ ":base_for_cast_ios_dependent_config" ]
}
@@ -351,7 +354,10 @@ source_set("unittests") {
"wall_clock_time_source_unittest.cc",
"yuv_convert_unittest.cc",
]
- configs += [ "//media:media_config" ]
+ configs += [
+ "//build/config/compiler:no_size_t_to_int_warning",
+ "//media:media_config",
+ ]
deps = [
":base",
":test_support",
« no previous file with comments | « media/audio/BUILD.gn ('k') | media/blink/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698