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 "cryptauth_access_token_fetcher.h", | 7 "cryptauth_access_token_fetcher.h", |
| 8 "cryptauth_account_token_fetcher.cc", |
| 9 "cryptauth_account_token_fetcher.h", |
8 "cryptauth_api_call_flow.cc", | 10 "cryptauth_api_call_flow.cc", |
9 "cryptauth_api_call_flow.h", | 11 "cryptauth_api_call_flow.h", |
10 "cryptauth_client.cc", | 12 "cryptauth_client.cc", |
11 "cryptauth_client.h", | 13 "cryptauth_client.h", |
12 ] | 14 ] |
13 | 15 |
14 deps = [ | 16 deps = [ |
15 "//base", | 17 "//base", |
16 "//google_apis", | 18 "//google_apis", |
17 "//net", | 19 "//net", |
18 ] | 20 ] |
19 | 21 |
20 public_deps = [ | 22 public_deps = [ |
21 "proto", | 23 "proto", |
22 ] | 24 ] |
23 } | 25 } |
24 | 26 |
25 source_set("unit_tests") { | 27 source_set("unit_tests") { |
26 testonly = true | 28 testonly = true |
27 sources = [ | 29 sources = [ |
| 30 "cryptauth_account_token_fetcher_unittest.cc", |
28 "cryptauth_api_call_flow_unittest.cc", | 31 "cryptauth_api_call_flow_unittest.cc", |
29 "cryptauth_client_unittest.cc", | 32 "cryptauth_client_unittest.cc", |
30 ] | 33 ] |
31 | 34 |
32 deps = [ | 35 deps = [ |
33 ":cryptauth", | 36 ":cryptauth", |
34 "//base/test:test_support", | 37 "//base/test:test_support", |
| 38 "//google_apis:test_support", |
35 "//net:test_support", | 39 "//net:test_support", |
36 "//testing/gtest", | 40 "//testing/gtest", |
37 ] | 41 ] |
38 } | 42 } |
OLD | NEW |