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

Unified Diff: components/mime_util/BUILD.gn

Issue 1129643002: Moved media mime type and codec checks to media/base/mime_util.* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use media/base/mime_util.h in //components/mime_util/DEPS Created 5 years, 7 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 | « components/html_viewer/web_mime_registry_impl.cc ('k') | components/mime_util/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/mime_util/BUILD.gn
diff --git a/components/mime_util/BUILD.gn b/components/mime_util/BUILD.gn
index 096db1acbfaf494fcb8426c3a74e68a4ad6d575b..0e3a8137a7adfd9b48b781ea6dc5128bf03c126b 100644
--- a/components/mime_util/BUILD.gn
+++ b/components/mime_util/BUILD.gn
@@ -12,6 +12,11 @@ static_library("mime_util") {
"//base",
"//net",
]
+
+ # iOS doesn't use and must not depend on //media
+ if (!is_ios) {
+ deps += [ "//media" ]
+ }
}
source_set("unit_tests") {
« no previous file with comments | « components/html_viewer/web_mime_registry_impl.cc ('k') | components/mime_util/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698