| 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 "base64url.cc", | 7 "base64url.cc", |
| 8 "base64url.h", | 8 "base64url.h", |
| 9 "cryptauth_access_token_fetcher.h", | 9 "cryptauth_access_token_fetcher.h", |
| 10 "cryptauth_access_token_fetcher_impl.cc", | 10 "cryptauth_access_token_fetcher_impl.cc", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 public_deps = [ | 49 public_deps = [ |
| 50 "proto", | 50 "proto", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 | 53 |
| 54 source_set("test_support") { | 54 source_set("test_support") { |
| 55 testonly = true | 55 testonly = true |
| 56 | 56 |
| 57 sources = [ | 57 sources = [ |
| 58 "fake_cryptauth_gcm_manager.cc", |
| 59 "fake_cryptauth_gcm_manager.h", |
| 58 "fake_secure_message_delegate.cc", | 60 "fake_secure_message_delegate.cc", |
| 59 "fake_secure_message_delegate.h", | 61 "fake_secure_message_delegate.h", |
| 60 "mock_cryptauth_client.cc", | 62 "mock_cryptauth_client.cc", |
| 61 "mock_cryptauth_client.h", | 63 "mock_cryptauth_client.h", |
| 62 "mock_sync_scheduler.cc", | 64 "mock_sync_scheduler.cc", |
| 63 "mock_sync_scheduler.h", | 65 "mock_sync_scheduler.h", |
| 64 ] | 66 ] |
| 65 | 67 |
| 66 deps = [ | 68 deps = [ |
| 67 ":cryptauth", | 69 ":cryptauth", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 93 ":cryptauth", | 95 ":cryptauth", |
| 94 ":test_support", | 96 ":test_support", |
| 95 "//base:prefs_test_support", | 97 "//base:prefs_test_support", |
| 96 "//base/test:test_support", | 98 "//base/test:test_support", |
| 97 "//components/gcm_driver:test_support", | 99 "//components/gcm_driver:test_support", |
| 98 "//google_apis:test_support", | 100 "//google_apis:test_support", |
| 99 "//net:test_support", | 101 "//net:test_support", |
| 100 "//testing/gtest", | 102 "//testing/gtest", |
| 101 ] | 103 ] |
| 102 } | 104 } |
| OLD | NEW |