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

Side by Side Diff: components/ntp_snippets/BUILD.gn

Issue 2200113002: [New CL] Add a tab helper to record the last visit date for each bookmark (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 if (is_android) { 7 if (is_android) {
8 import("//build/config/android/config.gni") 8 import("//build/config/android/config.gni")
9 import("//build/config/android/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
11 11
12 # GYP version: components/ntp_snippets.gypi:ntp_snippets 12 # GYP version: components/ntp_snippets.gypi:ntp_snippets
13 static_library("ntp_snippets") { 13 static_library("ntp_snippets") {
14 sources = [ 14 sources = [
15 "bookmarks/bookmark_last_visit_utils.cc",
16 "bookmarks/bookmark_last_visit_utils.h",
15 "category.cc", 17 "category.cc",
16 "category.h", 18 "category.h",
17 "category_factory.cc", 19 "category_factory.cc",
18 "category_factory.h", 20 "category_factory.h",
19 "category_status.cc", 21 "category_status.cc",
20 "category_status.h", 22 "category_status.h",
21 "content_suggestion.cc", 23 "content_suggestion.cc",
22 "content_suggestion.h", 24 "content_suggestion.h",
23 "content_suggestions_provider.cc", 25 "content_suggestions_provider.cc",
24 "content_suggestions_provider.h", 26 "content_suggestions_provider.h",
(...skipping 29 matching lines...) Expand all
54 "//components/prefs", 56 "//components/prefs",
55 "//components/signin/core/browser", 57 "//components/signin/core/browser",
56 "//components/suggestions", 58 "//components/suggestions",
57 "//components/sync_driver", 59 "//components/sync_driver",
58 "//google_apis", 60 "//google_apis",
59 "//net", 61 "//net",
60 "//url", 62 "//url",
61 ] 63 ]
62 64
63 deps = [ 65 deps = [
66 "//components/bookmarks/browser",
64 "//components/data_use_measurement/core", 67 "//components/data_use_measurement/core",
65 "//components/image_fetcher", 68 "//components/image_fetcher",
66 "//components/metrics", 69 "//components/metrics",
67 "//components/ntp_snippets/proto", 70 "//components/ntp_snippets/proto",
68 "//components/offline_pages", 71 "//components/offline_pages",
69 "//components/variations", 72 "//components/variations",
70 "//components/variations/net", 73 "//components/variations/net",
71 "//third_party/icu/", 74 "//third_party/icu/",
72 "//ui/gfx", 75 "//ui/gfx",
73 ] 76 ]
(...skipping 29 matching lines...) Expand all
103 "//components/leveldb_proto:test_support", 106 "//components/leveldb_proto:test_support",
104 "//components/signin/core/browser:test_support", 107 "//components/signin/core/browser:test_support",
105 "//components/signin/core/common", 108 "//components/signin/core/common",
106 "//components/sync_driver:test_support", 109 "//components/sync_driver:test_support",
107 "//components/variations", 110 "//components/variations",
108 "//net:test_support", 111 "//net:test_support",
109 "//testing/gtest", 112 "//testing/gtest",
110 "//third_party/icu/", 113 "//third_party/icu/",
111 ] 114 ]
112 } 115 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698