| 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 30 matching lines...) Expand all Loading... |
| 41 "synced_session.h", | 41 "synced_session.h", |
| 42 "synced_session_tracker.cc", | 42 "synced_session_tracker.cc", |
| 43 "synced_session_tracker.h", | 43 "synced_session_tracker.h", |
| 44 "synced_tab_delegate.cc", | 44 "synced_tab_delegate.cc", |
| 45 "synced_tab_delegate.h", | 45 "synced_tab_delegate.h", |
| 46 "synced_window_delegate.h", | 46 "synced_window_delegate.h", |
| 47 "synced_window_delegates_getter.cc", | 47 "synced_window_delegates_getter.cc", |
| 48 "synced_window_delegates_getter.h", | 48 "synced_window_delegates_getter.h", |
| 49 "tab_node_pool.cc", | 49 "tab_node_pool.cc", |
| 50 "tab_node_pool.h", | 50 "tab_node_pool.h", |
| 51 "task_tracker.cc", |
| 52 "task_tracker.h", |
| 51 ] | 53 ] |
| 52 | 54 |
| 53 public_deps = [ | 55 public_deps = [ |
| 54 "//components/sessions", | 56 "//components/sessions", |
| 55 "//components/sync", | 57 "//components/sync", |
| 56 ] | 58 ] |
| 57 | 59 |
| 58 deps = [ | 60 deps = [ |
| 59 "//base", | 61 "//base", |
| 60 "//components/bookmarks/browser", | 62 "//components/bookmarks/browser", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "revisit/current_tab_matcher_unittest.cc", | 99 "revisit/current_tab_matcher_unittest.cc", |
| 98 "revisit/offset_tab_matcher_unittest.cc", | 100 "revisit/offset_tab_matcher_unittest.cc", |
| 99 "revisit/page_revisit_broadcaster_unittest.cc", | 101 "revisit/page_revisit_broadcaster_unittest.cc", |
| 100 "revisit/sessions_page_revisit_observer_unittest.cc", | 102 "revisit/sessions_page_revisit_observer_unittest.cc", |
| 101 "revisit/typed_url_page_revisit_task_unittest.cc", | 103 "revisit/typed_url_page_revisit_task_unittest.cc", |
| 102 "session_data_type_controller_unittest.cc", | 104 "session_data_type_controller_unittest.cc", |
| 103 "sessions_sync_manager_unittest.cc", | 105 "sessions_sync_manager_unittest.cc", |
| 104 "sync_sessions_metrics_unittest.cc", | 106 "sync_sessions_metrics_unittest.cc", |
| 105 "synced_session_tracker_unittest.cc", | 107 "synced_session_tracker_unittest.cc", |
| 106 "tab_node_pool_unittest.cc", | 108 "tab_node_pool_unittest.cc", |
| 109 "task_tracker_unittest.cc", |
| 107 ] | 110 ] |
| 108 | 111 |
| 109 deps = [ | 112 deps = [ |
| 110 ":sync_sessions", | 113 ":sync_sessions", |
| 111 ":test_support", | 114 ":test_support", |
| 112 "//base/test:test_support", | 115 "//base/test:test_support", |
| 113 "//components/bookmarks/browser", | 116 "//components/bookmarks/browser", |
| 114 "//components/history/core/browser", | 117 "//components/history/core/browser", |
| 115 "//components/prefs:test_support", | 118 "//components/prefs:test_support", |
| 116 "//components/sessions:test_support", | 119 "//components/sessions:test_support", |
| 117 "//components/sync", | 120 "//components/sync", |
| 118 "//components/sync:test_support_driver", | 121 "//components/sync:test_support_driver", |
| 119 "//components/sync:test_support_engine", | 122 "//components/sync:test_support_engine", |
| 120 "//components/sync:test_support_model", | 123 "//components/sync:test_support_model", |
| 121 "//testing/gmock", | 124 "//testing/gmock", |
| 122 "//testing/gtest", | 125 "//testing/gtest", |
| 123 "//ui/base:base", | 126 "//ui/base:base", |
| 124 "//url", | 127 "//url", |
| 125 ] | 128 ] |
| 126 } | 129 } |
| OLD | NEW |