OLD | NEW |
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 # GYP version: components/sync_sessions.gypi:sync_sessions | 5 # GYP version: components/sync_sessions.gypi:sync_sessions |
6 source_set("sync_sessions") { | 6 static_library("sync_sessions") { |
7 sources = [ | 7 sources = [ |
8 "favicon_cache.cc", | 8 "favicon_cache.cc", |
9 "favicon_cache.h", | 9 "favicon_cache.h", |
10 "local_session_event_router.h", | 10 "local_session_event_router.h", |
11 "open_tabs_ui_delegate.cc", | 11 "open_tabs_ui_delegate.cc", |
12 "open_tabs_ui_delegate.h", | 12 "open_tabs_ui_delegate.h", |
13 "revisit/bookmarks_by_url_provider_impl.cc", | 13 "revisit/bookmarks_by_url_provider_impl.cc", |
14 "revisit/bookmarks_by_url_provider_impl.h", | 14 "revisit/bookmarks_by_url_provider_impl.h", |
15 "revisit/bookmarks_page_revisit_observer.cc", | 15 "revisit/bookmarks_page_revisit_observer.cc", |
16 "revisit/bookmarks_page_revisit_observer.h", | 16 "revisit/bookmarks_page_revisit_observer.h", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "//components/sessions", | 58 "//components/sessions", |
59 "//components/sync_driver", | 59 "//components/sync_driver", |
60 "//components/variations", | 60 "//components/variations", |
61 "//sync", | 61 "//sync", |
62 "//ui/base:base", | 62 "//ui/base:base", |
63 "//ui/gfx", | 63 "//ui/gfx", |
64 "//url", | 64 "//url", |
65 ] | 65 ] |
66 } | 66 } |
67 | 67 |
68 source_set("test_support") { | 68 static_library("test_support") { |
69 testonly = true | 69 testonly = true |
70 sources = [ | 70 sources = [ |
71 "fake_sync_sessions_client.cc", | 71 "fake_sync_sessions_client.cc", |
72 "fake_sync_sessions_client.h", | 72 "fake_sync_sessions_client.h", |
73 ] | 73 ] |
74 | 74 |
75 public_deps = [ | 75 public_deps = [ |
76 ":sync_sessions", | 76 ":sync_sessions", |
77 "//base", | 77 "//base", |
78 "//url", | 78 "//url", |
(...skipping 29 matching lines...) Expand all Loading... |
108 "//components/sync_driver", | 108 "//components/sync_driver", |
109 "//components/sync_driver:test_support", | 109 "//components/sync_driver:test_support", |
110 "//sync", | 110 "//sync", |
111 "//sync:test_support_sync_api", | 111 "//sync:test_support_sync_api", |
112 "//testing/gmock", | 112 "//testing/gmock", |
113 "//testing/gtest", | 113 "//testing/gtest", |
114 "//ui/base:base", | 114 "//ui/base:base", |
115 "//url", | 115 "//url", |
116 ] | 116 ] |
117 } | 117 } |
OLD | NEW |