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

Unified Diff: components/base32/BUILD.gn

Issue 2017123002: Adds a base32 component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Migrates installer/setup/user_hive_visitor.cc to use base32 component Created 4 years, 6 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/base32.gypi ('k') | components/base32/OWNERS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/base32/BUILD.gn
diff --git a/components/client_update_protocol/BUILD.gn b/components/base32/BUILD.gn
similarity index 64%
copy from components/client_update_protocol/BUILD.gn
copy to components/base32/BUILD.gn
index e3af8836de7ce4fc0a6ec36f8b49b64352a6414e..78136044798d4201e9d20b209a750c753261584b 100644
--- a/components/client_update_protocol/BUILD.gn
+++ b/components/base32/BUILD.gn
@@ -2,28 +2,25 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("client_update_protocol") {
+source_set("base32") {
sources = [
- "ecdsa.cc",
- "ecdsa.h",
+ "base32.cc",
+ "base32.h",
]
deps = [
"//base",
- "//crypto",
]
}
source_set("unit_tests") {
testonly = true
sources = [
- "ecdsa_unittest.cc",
+ "base32_unittest.cc",
]
deps = [
- ":client_update_protocol",
- "//base",
- "//crypto",
+ ":base32",
"//testing/gtest",
]
}
« no previous file with comments | « components/base32.gypi ('k') | components/base32/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698