| 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 static_library("cryptauth") { |
| 6 sources = [ | 6 sources = [ |
| 7 "cryptauth_access_token_fetcher.h", | 7 "cryptauth_access_token_fetcher.h", |
| 8 "cryptauth_access_token_fetcher_impl.cc", | 8 "cryptauth_access_token_fetcher_impl.cc", |
| 9 "cryptauth_access_token_fetcher_impl.h", | 9 "cryptauth_access_token_fetcher_impl.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.h", | 12 "cryptauth_client.h", |
| 13 "cryptauth_client_impl.cc", | 13 "cryptauth_client_impl.cc", |
| 14 "cryptauth_client_impl.h", | 14 "cryptauth_client_impl.h", |
| 15 "cryptauth_device_manager.cc", | 15 "cryptauth_device_manager.cc", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 46 "//crypto", | 46 "//crypto", |
| 47 "//google_apis", | 47 "//google_apis", |
| 48 "//net", | 48 "//net", |
| 49 ] | 49 ] |
| 50 | 50 |
| 51 public_deps = [ | 51 public_deps = [ |
| 52 "//components/proximity_auth/cryptauth/proto", | 52 "//components/proximity_auth/cryptauth/proto", |
| 53 ] | 53 ] |
| 54 } | 54 } |
| 55 | 55 |
| 56 source_set("test_support") { | 56 static_library("test_support") { |
| 57 testonly = true | 57 testonly = true |
| 58 | 58 |
| 59 sources = [ | 59 sources = [ |
| 60 "fake_cryptauth_gcm_manager.cc", | 60 "fake_cryptauth_gcm_manager.cc", |
| 61 "fake_cryptauth_gcm_manager.h", | 61 "fake_cryptauth_gcm_manager.h", |
| 62 "fake_secure_message_delegate.cc", | 62 "fake_secure_message_delegate.cc", |
| 63 "fake_secure_message_delegate.h", | 63 "fake_secure_message_delegate.h", |
| 64 "mock_cryptauth_client.cc", | 64 "mock_cryptauth_client.cc", |
| 65 "mock_cryptauth_client.h", | 65 "mock_cryptauth_client.h", |
| 66 "mock_sync_scheduler.cc", | 66 "mock_sync_scheduler.cc", |
| (...skipping 30 matching lines...) Expand all Loading... |
| 97 ":test_support", | 97 ":test_support", |
| 98 "//base/test:test_support", | 98 "//base/test:test_support", |
| 99 "//components/gcm_driver:test_support", | 99 "//components/gcm_driver:test_support", |
| 100 "//components/prefs:test_support", | 100 "//components/prefs:test_support", |
| 101 "//components/proximity_auth", | 101 "//components/proximity_auth", |
| 102 "//google_apis:test_support", | 102 "//google_apis:test_support", |
| 103 "//net:test_support", | 103 "//net:test_support", |
| 104 "//testing/gtest", | 104 "//testing/gtest", |
| 105 ] | 105 ] |
| 106 } | 106 } |
| OLD | NEW |