| Index: components/net_log/BUILD.gn
|
| diff --git a/components/mime_util/BUILD.gn b/components/net_log/BUILD.gn
|
| similarity index 55%
|
| copy from components/mime_util/BUILD.gn
|
| copy to components/net_log/BUILD.gn
|
| index 0e3a8137a7adfd9b48b781ea6dc5128bf03c126b..5fd42b999bd881132c46f154757a4488c5c4888a 100644
|
| --- a/components/mime_util/BUILD.gn
|
| +++ b/components/net_log/BUILD.gn
|
| @@ -2,32 +2,31 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -static_library("mime_util") {
|
| +source_set("net_log") {
|
| sources = [
|
| - "mime_util.cc",
|
| - "mime_util.h",
|
| + "chrome_net_log.cc",
|
| + "chrome_net_log.h",
|
| + "net_log_temp_file.cc",
|
| + "net_log_temp_file.h",
|
| ]
|
|
|
| deps = [
|
| "//base",
|
| + "//components/data_reduction_proxy/core/common",
|
| + "//components/version_info",
|
| "//net",
|
| ]
|
| -
|
| - # iOS doesn't use and must not depend on //media
|
| - if (!is_ios) {
|
| - deps += [ "//media" ]
|
| - }
|
| }
|
|
|
| source_set("unit_tests") {
|
| testonly = true
|
| sources = [
|
| - "mime_util_unittest.cc",
|
| + "net_log_temp_file_unittest.cc",
|
| ]
|
| -
|
| deps = [
|
| - ":mime_util",
|
| "//base",
|
| + "//net",
|
| "//testing/gtest",
|
| + ":net_log",
|
| ]
|
| }
|
|
|