OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 # GYP version: components/sync_sessions.gypi:sync_sessions |
| 6 source_set("sync_sessions") { |
| 7 sources = [ |
| 8 "revisit/current_tab_matcher.cc", |
| 9 "revisit/current_tab_matcher.h", |
| 10 "revisit/offset_tab_matcher.cc", |
| 11 "revisit/offset_tab_matcher.h", |
| 12 "revisit/page_equality.h", |
| 13 "revisit/page_visit_observer.h", |
| 14 "revisit/sessions_page_revisit_observer.cc", |
| 15 "revisit/sessions_page_revisit_observer.h", |
| 16 ] |
| 17 |
| 18 deps = [ |
| 19 "//base", |
| 20 "//components/sessions", |
| 21 "//components/sync_driver", |
| 22 "//sync", |
| 23 ] |
| 24 } |
| 25 |
| 26 # GYP version: components/sync_sessions.gypi:sync_sessions_test_support |
| 27 static_library("test_support") { |
| 28 testonly = true |
| 29 sources = [] |
| 30 |
| 31 deps = [ |
| 32 ":sync_sessions", |
| 33 ] |
| 34 } |
| 35 |
| 36 source_set("unit_tests") { |
| 37 testonly = true |
| 38 sources = [ |
| 39 "revisit/current_tab_matcher_unittest.cc", |
| 40 "revisit/offset_tab_matcher_unittest.cc", |
| 41 "revisit/sessions_page_revisit_observer_unittest.cc", |
| 42 ] |
| 43 |
| 44 deps = [ |
| 45 ":test_support", |
| 46 "//base/test:test_support", |
| 47 "//testing/gtest", |
| 48 "//sync", |
| 49 ] |
| 50 } |
OLD | NEW |