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

Unified Diff: components/net_log/BUILD.gn

Issue 1347043002: Move ChromeNetLog to //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DetachFromThread Created 5 years, 3 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
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",
]
}

Powered by Google App Engine
This is Rietveld 408576698