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