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 source_set("browser") { | 5 source_set("browser") { |
6 sources = [ | 6 sources = [ |
7 "browser_constants.cc", | 7 "browser_constants.cc", |
8 "browser_constants.h", | 8 "browser_constants.h", |
9 "chrome_browser_provider.h", | 9 "chrome_browser_provider.h", |
10 "chrome_browser_provider.mm", | 10 "chrome_browser_provider.mm", |
(...skipping 26 matching lines...) Expand all Loading... |
37 "//components/sync_sessions", | 37 "//components/sync_sessions", |
38 "//ios/public/provider/web", | 38 "//ios/public/provider/web", |
39 "//ios/web", | 39 "//ios/web", |
40 ] | 40 ] |
41 } | 41 } |
42 | 42 |
43 source_set("test_support") { | 43 source_set("test_support") { |
44 testonly = true | 44 testonly = true |
45 | 45 |
46 sources = [ | 46 sources = [ |
| 47 "signin/fake_chrome_identity.h", |
| 48 "signin/fake_chrome_identity.mm", |
| 49 "signin/fake_chrome_identity_service.h", |
| 50 "signin/fake_chrome_identity_service.mm", |
47 "test_chrome_browser_provider.h", | 51 "test_chrome_browser_provider.h", |
48 "test_chrome_browser_provider.mm", | 52 "test_chrome_browser_provider.mm", |
49 "test_chrome_provider_initializer.h", | 53 "test_chrome_provider_initializer.h", |
50 "test_chrome_provider_initializer.mm", | 54 "test_chrome_provider_initializer.mm", |
51 "test_updatable_resource_provider.h", | 55 "test_updatable_resource_provider.h", |
52 "test_updatable_resource_provider.mm", | 56 "test_updatable_resource_provider.mm", |
53 ] | 57 ] |
54 | 58 |
55 deps = [ | 59 deps = [ |
56 ":browser", | 60 ":browser", |
57 "//base", | 61 "//base", |
58 "//components/signin/ios/browser:test_support", | 62 "//components/signin/ios/browser:test_support", |
| 63 "//testing/gmock", |
59 "//testing/gtest", | 64 "//testing/gtest", |
60 ] | 65 ] |
61 } | 66 } |
OLD | NEW |