| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 source_set("common") { | 7 source_set("common") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 sources = [ | 23 sources = [ |
| 24 "sync_listen_notifications.cc", | 24 "sync_listen_notifications.cc", |
| 25 ] | 25 ] |
| 26 | 26 |
| 27 defines = [ "SYNC_TEST" ] | 27 defines = [ "SYNC_TEST" ] |
| 28 | 28 |
| 29 deps = [ | 29 deps = [ |
| 30 ":common", | 30 ":common", |
| 31 "//base", | 31 "//base", |
| 32 "//components/invalidation/impl", | 32 "//components/invalidation/impl", |
| 33 "//components/sync:test_support_sync_core", | 33 "//components/sync", |
| 34 "//components/sync:test_support_engine", |
| 34 "//jingle:notifier", | 35 "//jingle:notifier", |
| 35 "//net:test_support", | 36 "//net:test_support", |
| 36 ] | 37 ] |
| 37 } | 38 } |
| 38 | 39 |
| 39 test("sync_client") { | 40 test("sync_client") { |
| 40 sources = [ | 41 sources = [ |
| 41 "sync_client.cc", | 42 "sync_client.cc", |
| 42 ] | 43 ] |
| 43 | 44 |
| 44 defines = [ "SYNC_TEST" ] | 45 defines = [ "SYNC_TEST" ] |
| 45 | 46 |
| 46 deps = [ | 47 deps = [ |
| 47 ":common", | 48 ":common", |
| 48 "//base", | 49 "//base", |
| 49 "//components/invalidation/impl", | 50 "//components/invalidation/impl", |
| 50 "//components/sync:test_support_sync_core", | 51 "//components/sync", |
| 52 "//components/sync:test_support_engine", |
| 51 "//jingle:notifier", | 53 "//jingle:notifier", |
| 52 "//net:test_support", | 54 "//net:test_support", |
| 53 ] | 55 ] |
| 54 } | 56 } |
| OLD | NEW |