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 static_library("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", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "tab_node_pool.h", | 49 "tab_node_pool.h", |
50 ] | 50 ] |
51 | 51 |
52 deps = [ | 52 deps = [ |
53 "//base", | 53 "//base", |
54 "//components/bookmarks/browser", | 54 "//components/bookmarks/browser", |
55 "//components/favicon/core", | 55 "//components/favicon/core", |
56 "//components/history/core/browser", | 56 "//components/history/core/browser", |
57 "//components/prefs", | 57 "//components/prefs", |
58 "//components/sessions", | 58 "//components/sessions", |
| 59 "//components/sync", |
59 "//components/sync_driver", | 60 "//components/sync_driver", |
60 "//components/variations", | 61 "//components/variations", |
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 static_library("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", |
(...skipping 26 matching lines...) Expand all Loading... |
98 ] | 98 ] |
99 | 99 |
100 deps = [ | 100 deps = [ |
101 ":sync_sessions", | 101 ":sync_sessions", |
102 ":test_support", | 102 ":test_support", |
103 "//base/test:test_support", | 103 "//base/test:test_support", |
104 "//components/bookmarks/browser", | 104 "//components/bookmarks/browser", |
105 "//components/history/core/browser", | 105 "//components/history/core/browser", |
106 "//components/prefs:test_support", | 106 "//components/prefs:test_support", |
107 "//components/sessions:test_support", | 107 "//components/sessions:test_support", |
| 108 "//components/sync", |
| 109 "//components/sync:test_support_sync_api", |
108 "//components/sync_driver", | 110 "//components/sync_driver", |
109 "//components/sync_driver:test_support", | 111 "//components/sync_driver:test_support", |
110 "//sync", | |
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 |