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

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

Issue 1387253004: [Sync] Creating sync_sessions component, moving revisit logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removing test_support target. Created 5 years, 2 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
« no previous file with comments | « components/sync_sessions.gypi ('k') | components/sync_sessions/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # GYP version: components/sync_sessions.gypi:sync_sessions
6 source_set("sync_sessions") {
7 sources = [
8 "revisit/current_tab_matcher.cc",
9 "revisit/current_tab_matcher.h",
10 "revisit/offset_tab_matcher.cc",
11 "revisit/offset_tab_matcher.h",
12 "revisit/page_equality.h",
13 "revisit/page_visit_observer.h",
14 "revisit/sessions_page_revisit_observer.cc",
15 "revisit/sessions_page_revisit_observer.h",
16 ]
17
18 deps = [
19 "//base",
20 "//components/sessions",
21 "//components/sync_driver",
22 "//sync",
23 ]
24 }
25
26 source_set("unit_tests") {
27 testonly = true
28 sources = [
29 "revisit/current_tab_matcher_unittest.cc",
30 "revisit/offset_tab_matcher_unittest.cc",
31 "revisit/sessions_page_revisit_observer_unittest.cc",
32 ]
33
34 deps = [
35 ":sync_sessions",
36 "//base/test:test_support",
37 "//testing/gtest",
38 "//sync",
39 ]
40 }
OLDNEW
« no previous file with comments | « components/sync_sessions.gypi ('k') | components/sync_sessions/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698