Roll src/third_party/WebKit e2f1087:c936ac9 (svn 200537:200538)
[chromium-blink-merge.git] / components / mime_util / BUILD.gn
blob0e3a8137a7adfd9b48b781ea6dc5128bf03c126b
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
5 static_library("mime_util") {
6   sources = [
7     "mime_util.cc",
8     "mime_util.h",
9   ]
11   deps = [
12     "//base",
13     "//net",
14   ]
16   # iOS doesn't use and must not depend on //media
17   if (!is_ios) {
18     deps += [ "//media" ]
19   }
22 source_set("unit_tests") {
23   testonly = true
24   sources = [
25     "mime_util_unittest.cc",
26   ]
28   deps = [
29     ":mime_util",
30     "//base",
31     "//testing/gtest",
32   ]