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

Unified Diff: components/ntp_tiles/BUILD.gn

Issue 1928913002: Create //components/ntp_tiles. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/ntp_tiles/BUILD.gn
diff --git a/components/client_update_protocol/BUILD.gn b/components/ntp_tiles/BUILD.gn
similarity index 57%
copy from components/client_update_protocol/BUILD.gn
copy to components/ntp_tiles/BUILD.gn
index e3af8836de7ce4fc0a6ec36f8b49b64352a6414e..66524ed833f9645407b31ca16b879a9cd64cd4b9 100644
--- a/components/client_update_protocol/BUILD.gn
+++ b/components/ntp_tiles/BUILD.gn
@@ -2,28 +2,26 @@
# 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") {
+# GYP version: components/ntp_tiles.gypi:ntp_tiles
+source_set("ntp_tiles") {
sources = [
- "ecdsa.cc",
- "ecdsa.h",
+ "pref_names.cc",
+ "pref_names.h",
+ "switches.cc",
+ "switches.h",
]
- deps = [
+ public_deps = [
"//base",
- "//crypto",
]
}
source_set("unit_tests") {
testonly = true
- sources = [
- "ecdsa_unittest.cc",
- ]
+ sources = []
deps = [
- ":client_update_protocol",
+ ":ntp_tiles",
"//base",
- "//crypto",
- "//testing/gtest",
]
}

Powered by Google App Engine
This is Rietveld 408576698