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 source_set("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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 "session_data_type_controller_unittest.cc", | 83 "session_data_type_controller_unittest.cc", |
84 "synced_session_tracker_unittest.cc", | 84 "synced_session_tracker_unittest.cc", |
85 ] | 85 ] |
86 | 86 |
87 deps = [ | 87 deps = [ |
88 ":sync_sessions", | 88 ":sync_sessions", |
89 ":test_support", | 89 ":test_support", |
90 "//base:prefs", | 90 "//base:prefs", |
91 "//base:prefs_test_support", | 91 "//base:prefs_test_support", |
92 "//base/test:test_support", | 92 "//base/test:test_support", |
93 "//testing/gmock", | |
94 "//components/bookmarks/browser", | 93 "//components/bookmarks/browser", |
95 "//components/history/core/browser", | 94 "//components/history/core/browser", |
96 "//components/sessions:test_support", | 95 "//components/sessions:test_support", |
97 "//components/sync_driver", | 96 "//components/sync_driver", |
98 "//components/sync_driver:test_support", | 97 "//components/sync_driver:test_support", |
99 "//testing/gtest", | |
100 "//sync", | 98 "//sync", |
101 "//sync:test_support_sync_api", | 99 "//sync:test_support_sync_api", |
| 100 "//testing/gmock", |
| 101 "//testing/gtest", |
102 "//ui/base:base", | 102 "//ui/base:base", |
103 "//url", | 103 "//url", |
104 ] | 104 ] |
105 } | 105 } |
OLD | NEW |