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 source_set("cryptauth") { | 5 source_set("cryptauth") { |
6 sources = [ | 6 sources = [ |
7 "base64url.cc", | 7 "base64url.cc", |
8 "base64url.h", | 8 "base64url.h", |
9 "cryptauth_access_token_fetcher.h", | 9 "cryptauth_access_token_fetcher.h", |
10 "cryptauth_access_token_fetcher_impl.cc", | 10 "cryptauth_access_token_fetcher_impl.cc", |
11 "cryptauth_access_token_fetcher_impl.h", | 11 "cryptauth_access_token_fetcher_impl.h", |
12 "cryptauth_api_call_flow.cc", | 12 "cryptauth_api_call_flow.cc", |
13 "cryptauth_api_call_flow.h", | 13 "cryptauth_api_call_flow.h", |
14 "cryptauth_client.h", | 14 "cryptauth_client.h", |
15 "cryptauth_client_impl.cc", | 15 "cryptauth_client_impl.cc", |
16 "cryptauth_client_impl.h", | 16 "cryptauth_client_impl.h", |
17 "cryptauth_enroller.h", | 17 "cryptauth_enroller.h", |
18 "cryptauth_enroller_impl.cc", | 18 "cryptauth_enroller_impl.cc", |
19 "cryptauth_enroller_impl.h", | 19 "cryptauth_enroller_impl.h", |
20 "cryptauth_enrollment_utils.cc", | 20 "cryptauth_enrollment_utils.cc", |
21 "cryptauth_enrollment_utils.h", | 21 "cryptauth_enrollment_utils.h", |
22 "secure_message_delegate.cc", | 22 "secure_message_delegate.cc", |
23 "secure_message_delegate.h", | 23 "secure_message_delegate.h", |
24 "sync_scheduler.cc", | |
25 "sync_scheduler.h", | |
26 "sync_scheduler_impl.cc", | |
27 "sync_scheduler_impl.h", | |
28 ] | 24 ] |
29 | 25 |
30 deps = [ | 26 deps = [ |
31 "//base", | 27 "//base", |
32 "//components/proximity_auth/logging", | 28 "//components/proximity_auth/logging", |
33 "//google_apis", | 29 "//google_apis", |
34 "//net", | 30 "//net", |
35 ] | 31 ] |
36 | 32 |
37 public_deps = [ | 33 public_deps = [ |
(...skipping 24 matching lines...) Expand all Loading... |
62 | 58 |
63 source_set("unit_tests") { | 59 source_set("unit_tests") { |
64 testonly = true | 60 testonly = true |
65 sources = [ | 61 sources = [ |
66 "base64url_unittest.cc", | 62 "base64url_unittest.cc", |
67 "cryptauth_access_token_fetcher_impl_unittest.cc", | 63 "cryptauth_access_token_fetcher_impl_unittest.cc", |
68 "cryptauth_api_call_flow_unittest.cc", | 64 "cryptauth_api_call_flow_unittest.cc", |
69 "cryptauth_client_impl_unittest.cc", | 65 "cryptauth_client_impl_unittest.cc", |
70 "cryptauth_enroller_impl_unittest.cc", | 66 "cryptauth_enroller_impl_unittest.cc", |
71 "fake_secure_message_delegate_unittest.cc", | 67 "fake_secure_message_delegate_unittest.cc", |
72 "sync_scheduler_impl_unittest.cc", | |
73 ] | 68 ] |
74 | 69 |
75 deps = [ | 70 deps = [ |
76 ":cryptauth", | 71 ":cryptauth", |
77 ":test_support", | 72 ":test_support", |
78 "//base/test:test_support", | 73 "//base/test:test_support", |
79 "//google_apis:test_support", | 74 "//google_apis:test_support", |
80 "//net:test_support", | 75 "//net:test_support", |
81 "//testing/gtest", | 76 "//testing/gtest", |
82 ] | 77 ] |
83 } | 78 } |
OLD | NEW |