| 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 static_library("sync_sessions") { | 5 static_library("sync_sessions") { |
| 6 sources = [ | 6 sources = [ |
| 7 "favicon_cache.cc", | 7 "favicon_cache.cc", |
| 8 "favicon_cache.h", | 8 "favicon_cache.h", |
| 9 "local_session_event_router.h", | 9 "local_session_event_router.h", |
| 10 "lost_navigations_recorder.cc", | 10 "lost_navigations_recorder.cc", |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 sources = [ | 93 sources = [ |
| 94 "favicon_cache_unittest.cc", | 94 "favicon_cache_unittest.cc", |
| 95 "lost_navigations_recorder_unittest.cc", | 95 "lost_navigations_recorder_unittest.cc", |
| 96 "revisit/bookmarks_page_revisit_observer_unittest.cc", | 96 "revisit/bookmarks_page_revisit_observer_unittest.cc", |
| 97 "revisit/current_tab_matcher_unittest.cc", | 97 "revisit/current_tab_matcher_unittest.cc", |
| 98 "revisit/offset_tab_matcher_unittest.cc", | 98 "revisit/offset_tab_matcher_unittest.cc", |
| 99 "revisit/page_revisit_broadcaster_unittest.cc", | 99 "revisit/page_revisit_broadcaster_unittest.cc", |
| 100 "revisit/sessions_page_revisit_observer_unittest.cc", | 100 "revisit/sessions_page_revisit_observer_unittest.cc", |
| 101 "revisit/typed_url_page_revisit_task_unittest.cc", | 101 "revisit/typed_url_page_revisit_task_unittest.cc", |
| 102 "session_data_type_controller_unittest.cc", | 102 "session_data_type_controller_unittest.cc", |
| 103 "sessions_sync_manager_unittest.cc", |
| 103 "sync_sessions_metrics_unittest.cc", | 104 "sync_sessions_metrics_unittest.cc", |
| 104 "synced_session_tracker_unittest.cc", | 105 "synced_session_tracker_unittest.cc", |
| 105 "tab_node_pool_unittest.cc", | 106 "tab_node_pool_unittest.cc", |
| 106 ] | 107 ] |
| 107 | 108 |
| 108 deps = [ | 109 deps = [ |
| 109 ":sync_sessions", | 110 ":sync_sessions", |
| 110 ":test_support", | 111 ":test_support", |
| 111 "//base/test:test_support", | 112 "//base/test:test_support", |
| 112 "//components/bookmarks/browser", | 113 "//components/bookmarks/browser", |
| 113 "//components/history/core/browser", | 114 "//components/history/core/browser", |
| 114 "//components/prefs:test_support", | 115 "//components/prefs:test_support", |
| 115 "//components/sessions:test_support", | 116 "//components/sessions:test_support", |
| 116 "//components/sync", | 117 "//components/sync", |
| 117 "//components/sync:test_support_driver", | 118 "//components/sync:test_support_driver", |
| 118 "//components/sync:test_support_engine", | 119 "//components/sync:test_support_engine", |
| 119 "//components/sync:test_support_model", | 120 "//components/sync:test_support_model", |
| 120 "//testing/gmock", | 121 "//testing/gmock", |
| 121 "//testing/gtest", | 122 "//testing/gtest", |
| 122 "//ui/base:base", | 123 "//ui/base:base", |
| 123 "//url", | 124 "//url", |
| 124 ] | 125 ] |
| 125 } | 126 } |
| OLD | NEW |