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

Unified Diff: components/compression/BUILD.gn

Issue 1304563003: Move //components/metrics/compression_utils into standalone component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 4 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/compression.gypi ('k') | components/compression/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/compression/BUILD.gn
diff --git a/components/proximity_auth/logging/BUILD.gn b/components/compression/BUILD.gn
similarity index 58%
copy from components/proximity_auth/logging/BUILD.gn
copy to components/compression/BUILD.gn
index dbc8045d80c5fbf811625839ccc6eac90c77d129..e35fe238c426047a8f75857dc2ee19da23990f2f 100644
--- a/components/proximity_auth/logging/BUILD.gn
+++ b/components/compression/BUILD.gn
@@ -2,27 +2,25 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("logging") {
+# GYP version: components/compression.gypi:compression
+source_set("compression") {
sources = [
- "log_buffer.cc",
- "log_buffer.h",
- "logging.cc",
- "logging.h",
+ "compression_utils.cc",
+ "compression_utils.h",
]
-
deps = [
"//base",
+ "//third_party/zlib",
]
}
source_set("unit_tests") {
testonly = true
sources = [
- "logging_unittest.cc",
+ "compression_utils_unittest.cc",
]
-
deps = [
- "//base/test:test_support",
+ ":compression",
"//testing/gtest",
]
}
« no previous file with comments | « components/compression.gypi ('k') | components/compression/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698