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", |
| 8 "base64url.h", |
7 "cryptauth_access_token_fetcher.h", | 9 "cryptauth_access_token_fetcher.h", |
8 "cryptauth_access_token_fetcher_impl.cc", | 10 "cryptauth_access_token_fetcher_impl.cc", |
9 "cryptauth_access_token_fetcher_impl.h", | 11 "cryptauth_access_token_fetcher_impl.h", |
10 "cryptauth_api_call_flow.cc", | 12 "cryptauth_api_call_flow.cc", |
11 "cryptauth_api_call_flow.h", | 13 "cryptauth_api_call_flow.h", |
12 "cryptauth_client.h", | 14 "cryptauth_client.h", |
13 "cryptauth_client_impl.cc", | 15 "cryptauth_client_impl.cc", |
14 "cryptauth_client_impl.h", | 16 "cryptauth_client_impl.h", |
15 "cryptauth_enrollment_utils.cc", | 17 "cryptauth_enrollment_utils.cc", |
16 "cryptauth_enrollment_utils.h", | 18 "cryptauth_enrollment_utils.h", |
(...skipping 24 matching lines...) Expand all Loading... |
41 ] | 43 ] |
42 | 44 |
43 public_deps = [ | 45 public_deps = [ |
44 "proto", | 46 "proto", |
45 ] | 47 ] |
46 } | 48 } |
47 | 49 |
48 source_set("unit_tests") { | 50 source_set("unit_tests") { |
49 testonly = true | 51 testonly = true |
50 sources = [ | 52 sources = [ |
| 53 "base64url_unittest.cc", |
51 "cryptauth_access_token_fetcher_impl_unittest.cc", | 54 "cryptauth_access_token_fetcher_impl_unittest.cc", |
52 "cryptauth_api_call_flow_unittest.cc", | 55 "cryptauth_api_call_flow_unittest.cc", |
53 "cryptauth_client_impl_unittest.cc", | 56 "cryptauth_client_impl_unittest.cc", |
54 "fake_secure_message_delegate_unittest.cc", | 57 "fake_secure_message_delegate_unittest.cc", |
55 ] | 58 ] |
56 | 59 |
57 deps = [ | 60 deps = [ |
58 ":cryptauth", | 61 ":cryptauth", |
59 ":test_support", | 62 ":test_support", |
60 "//base/test:test_support", | 63 "//base/test:test_support", |
61 "//google_apis:test_support", | 64 "//google_apis:test_support", |
62 "//net:test_support", | 65 "//net:test_support", |
63 "//testing/gtest", | 66 "//testing/gtest", |
64 ] | 67 ] |
65 } | 68 } |
OLD | NEW |