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

Side by Side Diff: components/sync_sessions.gypi

Issue 2306443002: Remove GYP files from components. (Closed)
Patch Set: Remove compiled resources Created 4 years, 3 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_bookmarks.gypi ('k') | components/syncable_prefs.gypi » ('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 {
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 '../components/sync.gyp:sync',
17 '../url/url.gyp:url_lib',
18 'bookmarks_browser',
19 'history_core_browser',
20 'prefs/prefs.gyp:prefs',
21 ],
22 'sources': [
23 # Note: sources list duplicated in GN build.
24 'sync_sessions/favicon_cache.cc',
25 'sync_sessions/favicon_cache.h',
26 'sync_sessions/local_session_event_router.h',
27 'sync_sessions/open_tabs_ui_delegate.cc',
28 'sync_sessions/open_tabs_ui_delegate.h',
29 'sync_sessions/revisit/bookmarks_by_url_provider_impl.cc',
30 'sync_sessions/revisit/bookmarks_by_url_provider_impl.h',
31 'sync_sessions/revisit/bookmarks_page_revisit_observer.cc',
32 'sync_sessions/revisit/bookmarks_page_revisit_observer.h',
33 'sync_sessions/revisit/current_tab_matcher.cc',
34 'sync_sessions/revisit/current_tab_matcher.h',
35 'sync_sessions/revisit/offset_tab_matcher.cc',
36 'sync_sessions/revisit/offset_tab_matcher.h',
37 'sync_sessions/revisit/page_equality.h',
38 'sync_sessions/revisit/page_visit_observer.h',
39 'sync_sessions/revisit/page_revisit_broadcaster.cc',
40 'sync_sessions/revisit/page_revisit_broadcaster.h',
41 'sync_sessions/revisit/sessions_page_revisit_observer.cc',
42 'sync_sessions/revisit/sessions_page_revisit_observer.h',
43 'sync_sessions/revisit/typed_url_page_revisit_observer.cc',
44 'sync_sessions/revisit/typed_url_page_revisit_observer.h',
45 'sync_sessions/revisit/typed_url_page_revisit_task.cc',
46 'sync_sessions/revisit/typed_url_page_revisit_task.h',
47 'sync_sessions/session_data_type_controller.cc',
48 'sync_sessions/session_data_type_controller.h',
49 'sync_sessions/sessions_sync_manager.cc',
50 'sync_sessions/sessions_sync_manager.h',
51 'sync_sessions/synced_tab_delegate.cc',
52 'sync_sessions/synced_tab_delegate.h',
53 'sync_sessions/synced_session.cc',
54 'sync_sessions/synced_session.h',
55 'sync_sessions/synced_session_tracker.cc',
56 'sync_sessions/synced_session_tracker.h',
57 'sync_sessions/synced_window_delegate.h',
58 'sync_sessions/synced_window_delegates_getter.cc',
59 'sync_sessions/synced_window_delegates_getter.h',
60 'sync_sessions/sync_sessions_client.cc',
61 'sync_sessions/sync_sessions_client.h',
62 'sync_sessions/sync_sessions_metrics.cc',
63 'sync_sessions/sync_sessions_metrics.h',
64 'sync_sessions/tab_node_pool.cc',
65 'sync_sessions/tab_node_pool.h',
66 ],
67 'conditions': [
68 ['OS!="ios"', {
69 'dependencies': [
70 'sessions_content',
71 ],
72 }, { # OS==ios
73 'dependencies': [
74 'sessions_ios',
75 ],
76 }],
77 ],
78 },
79 {
80 'target_name': 'sync_sessions_test_support',
81 'type': 'static_library',
82 'dependencies': [
83 'sync_sessions',
84 '../base/base.gyp:base',
85 '../components/sync.gyp:sync',
86 '../testing/gtest.gyp:gtest',
87 ],
88 'include_dirs': [
89 '..',
90 ],
91 'sources': [
92 'sync_sessions/fake_sync_sessions_client.cc',
93 'sync_sessions/fake_sync_sessions_client.h',
94 ],
95 }
96 ]
97 }
OLDNEW
« no previous file with comments | « components/sync_bookmarks.gypi ('k') | components/syncable_prefs.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698