| 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_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", |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 "switches.cc", | 32 "switches.cc", |
| 33 "switches.h", | 33 "switches.h", |
| 34 "sync_scheduler.cc", | 34 "sync_scheduler.cc", |
| 35 "sync_scheduler.h", | 35 "sync_scheduler.h", |
| 36 "sync_scheduler_impl.cc", | 36 "sync_scheduler_impl.cc", |
| 37 "sync_scheduler_impl.h", | 37 "sync_scheduler_impl.h", |
| 38 ] | 38 ] |
| 39 | 39 |
| 40 deps = [ | 40 deps = [ |
| 41 "//base", | 41 "//base", |
| 42 "//base:prefs", | |
| 43 "//components/gcm_driver", | 42 "//components/gcm_driver", |
| 44 "//components/gcm_driver/common", | 43 "//components/gcm_driver/common", |
| 44 "//components/prefs", |
| 45 "//components/proximity_auth/logging", | 45 "//components/proximity_auth/logging", |
| 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 } |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 "cryptauth_enroller_impl_unittest.cc", | 88 "cryptauth_enroller_impl_unittest.cc", |
| 89 "cryptauth_enrollment_manager_unittest.cc", | 89 "cryptauth_enrollment_manager_unittest.cc", |
| 90 "cryptauth_gcm_manager_impl_unittest.cc", | 90 "cryptauth_gcm_manager_impl_unittest.cc", |
| 91 "fake_secure_message_delegate_unittest.cc", | 91 "fake_secure_message_delegate_unittest.cc", |
| 92 "sync_scheduler_impl_unittest.cc", | 92 "sync_scheduler_impl_unittest.cc", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 deps = [ | 95 deps = [ |
| 96 ":cryptauth", | 96 ":cryptauth", |
| 97 ":test_support", | 97 ":test_support", |
| 98 "//base:prefs_test_support", | |
| 99 "//base/test:test_support", | 98 "//base/test:test_support", |
| 100 "//components/gcm_driver:test_support", | 99 "//components/gcm_driver: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 |