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

Side by Side Diff: components/sync_sessions.gypi

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
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 {
6 'targets': [
7 {
8 # GN version: //components/sync_sessions
9 'target_name': 'sync_sessions',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../sync/sync.gyp:sync',
17 'sync_driver',
18 ],
19 'sources': [
20 # Note: sources list duplicated in GN build.
21 'sync_sessions/revisit/current_tab_matcher.cc',
22 'sync_sessions/revisit/current_tab_matcher.h',
23 'sync_sessions/revisit/offset_tab_matcher.cc',
24 'sync_sessions/revisit/offset_tab_matcher.h',
25 'sync_sessions/revisit/page_equality.h',
26 'sync_sessions/revisit/page_visit_observer.h',
27 'sync_sessions/revisit/sessions_page_revisit_observer.cc',
28 'sync_sessions/revisit/sessions_page_revisit_observer.h',
29 ],
30 'conditions': [
31 ['OS!="ios"', {
32 'dependencies': [
33 'sessions_content',
34 ],
35 }, { # OS==ios
36 'dependencies': [
37 'sessions_ios',
38 ],
39 }],
40 ],
41 },
42 ],
43 }
OLDNEW
« no previous file with comments | « components/sync_driver/revisit/sessions_page_revisit_observer_unittest.cc ('k') | components/sync_sessions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698