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

Unified Diff: components/client_update_protocol/BUILD.gn

Issue 1805263002: Move CUP to new component client_update_protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: yay finally figured out gyp Created 4 years, 9 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/client_update_protocol/BUILD.gn
diff --git a/components/crx_file/BUILD.gn b/components/client_update_protocol/BUILD.gn
similarity index 58%
copy from components/crx_file/BUILD.gn
copy to components/client_update_protocol/BUILD.gn
index a7494392daf8d6475069c4bb81068be889142b32..e3af8836de7ce4fc0a6ec36f8b49b64352a6414e 100644
--- a/components/crx_file/BUILD.gn
+++ b/components/client_update_protocol/BUILD.gn
@@ -1,13 +1,11 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
+# Copyright 2016 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-source_set("crx_file") {
mab 2016/03/16 22:04:49 git chose this ancestor for me. I don't suppose y
waffles 2016/03/16 23:16:55 Not sure how to fix it, but I wouldn't worry about
Sorin Jianu 2016/03/16 23:19:51 It could be related to the similarity index. I agr
+source_set("client_update_protocol") {
sources = [
- "crx_file.cc",
- "crx_file.h",
- "id_util.cc",
- "id_util.h",
+ "ecdsa.cc",
+ "ecdsa.h",
]
deps = [
@@ -19,12 +17,13 @@ source_set("crx_file") {
source_set("unit_tests") {
testonly = true
sources = [
- "id_util_unittest.cc",
+ "ecdsa_unittest.cc",
]
deps = [
- ":crx_file",
+ ":client_update_protocol",
"//base",
+ "//crypto",
"//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698