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