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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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", |
60 "//components/sync_driver", | |
61 "//components/variations", | 60 "//components/variations", |
62 "//ui/base:base", | 61 "//ui/base:base", |
63 "//ui/gfx", | 62 "//ui/gfx", |
64 "//url", | 63 "//url", |
65 ] | 64 ] |
66 } | 65 } |
67 | 66 |
68 static_library("test_support") { | 67 static_library("test_support") { |
69 testonly = true | 68 testonly = true |
70 sources = [ | 69 sources = [ |
(...skipping 29 matching lines...) Expand all Loading... |
100 deps = [ | 99 deps = [ |
101 ":sync_sessions", | 100 ":sync_sessions", |
102 ":test_support", | 101 ":test_support", |
103 "//base/test:test_support", | 102 "//base/test:test_support", |
104 "//components/bookmarks/browser", | 103 "//components/bookmarks/browser", |
105 "//components/history/core/browser", | 104 "//components/history/core/browser", |
106 "//components/prefs:test_support", | 105 "//components/prefs:test_support", |
107 "//components/sessions:test_support", | 106 "//components/sessions:test_support", |
108 "//components/sync", | 107 "//components/sync", |
109 "//components/sync:test_support_sync_api", | 108 "//components/sync:test_support_sync_api", |
110 "//components/sync_driver", | 109 "//components/sync:test_support_sync_driver", |
111 "//components/sync_driver:test_support", | |
112 "//testing/gmock", | 110 "//testing/gmock", |
113 "//testing/gtest", | 111 "//testing/gtest", |
114 "//ui/base:base", | 112 "//ui/base:base", |
115 "//url", | 113 "//url", |
116 ] | 114 ] |
117 } | 115 } |
OLD | NEW |