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

Side by Side Diff: components/sync_sessions.gypi

Issue 1399053004: [Sync] Adding revisit logic for typed URLs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated for Stan's comments. 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/components_tests.gyp ('k') | components/sync_sessions/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/sync_sessions 8 # GN version: //components/sync_sessions
9 'target_name': 'sync_sessions', 9 'target_name': 'sync_sessions',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../sync/sync.gyp:sync', 16 '../sync/sync.gyp:sync',
17 'history_core_browser',
17 'sync_driver', 18 'sync_driver',
18 ], 19 ],
19 'sources': [ 20 'sources': [
20 # Note: sources list duplicated in GN build. 21 # Note: sources list duplicated in GN build.
21 'sync_sessions/revisit/current_tab_matcher.cc', 22 'sync_sessions/revisit/current_tab_matcher.cc',
22 'sync_sessions/revisit/current_tab_matcher.h', 23 'sync_sessions/revisit/current_tab_matcher.h',
23 'sync_sessions/revisit/offset_tab_matcher.cc', 24 'sync_sessions/revisit/offset_tab_matcher.cc',
24 'sync_sessions/revisit/offset_tab_matcher.h', 25 'sync_sessions/revisit/offset_tab_matcher.h',
25 'sync_sessions/revisit/page_equality.h', 26 'sync_sessions/revisit/page_equality.h',
26 'sync_sessions/revisit/page_visit_observer.h', 27 'sync_sessions/revisit/page_visit_observer.h',
27 'sync_sessions/revisit/sessions_page_revisit_observer.cc', 28 'sync_sessions/revisit/sessions_page_revisit_observer.cc',
28 'sync_sessions/revisit/sessions_page_revisit_observer.h', 29 'sync_sessions/revisit/sessions_page_revisit_observer.h',
30 'sync_sessions/revisit/typed_url_page_revisit_observer.cc',
31 'sync_sessions/revisit/typed_url_page_revisit_observer.h',
32 'sync_sessions/revisit/typed_url_page_revisit_task.cc',
33 'sync_sessions/revisit/typed_url_page_revisit_task.h',
29 ], 34 ],
30 'conditions': [ 35 'conditions': [
31 ['OS!="ios"', { 36 ['OS!="ios"', {
32 'dependencies': [ 37 'dependencies': [
33 'sessions_content', 38 'sessions_content',
34 ], 39 ],
35 }, { # OS==ios 40 }, { # OS==ios
36 'dependencies': [ 41 'dependencies': [
37 'sessions_ios', 42 'sessions_ios',
38 ], 43 ],
39 }], 44 }],
40 ], 45 ],
41 }, 46 },
42 ], 47 ],
43 } 48 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/sync_sessions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698