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

Unified Diff: components/doodle/BUILD.gn

Issue 2660883002: Introduce a Doodle Fetcher for NTP (Closed)
Patch Set: Created 3 years, 11 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/BUILD.gn ('k') | components/doodle/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/doodle/BUILD.gn
diff --git a/components/doodle/BUILD.gn b/components/doodle/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..fe6dc99f14d0ee9319b6b178bbf707e7bcefdb02
--- /dev/null
+++ b/components/doodle/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright 2017 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.
+
+static_library("doodle") {
+ sources = [
+ "doodle_fetcher.cc",
+ "doodle_fetcher.h",
+ ]
+
+ deps = [
+ "//base",
+ "//net",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "doodle_fetcher_unittest.cc",
+ ]
+
+ deps = [
+ ":doodle",
+ "//net:test_support",
+ "//ui/base",
+ ]
+}
« no previous file with comments | « components/BUILD.gn ('k') | components/doodle/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698