Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: components/proximity_auth/cryptauth/BUILD.gn

Issue 1063323002: Move base64url.* to CryptAuth component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@cryptauth_refactor
Patch Set: rename path in chrome/browser/chromeos Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « components/proximity_auth/client.cc ('k') | components/proximity_auth/cryptauth/base64url.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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",
8 "base64url.h",
7 "cryptauth_access_token_fetcher.h", 9 "cryptauth_access_token_fetcher.h",
8 "cryptauth_access_token_fetcher_impl.cc", 10 "cryptauth_access_token_fetcher_impl.cc",
9 "cryptauth_access_token_fetcher_impl.h", 11 "cryptauth_access_token_fetcher_impl.h",
10 "cryptauth_api_call_flow.cc", 12 "cryptauth_api_call_flow.cc",
11 "cryptauth_api_call_flow.h", 13 "cryptauth_api_call_flow.h",
12 "cryptauth_client.h", 14 "cryptauth_client.h",
13 "cryptauth_client_impl.cc", 15 "cryptauth_client_impl.cc",
14 "cryptauth_client_impl.h", 16 "cryptauth_client_impl.h",
15 "cryptauth_enrollment_utils.cc", 17 "cryptauth_enrollment_utils.cc",
16 "cryptauth_enrollment_utils.h", 18 "cryptauth_enrollment_utils.h",
(...skipping 24 matching lines...) Expand all
41 ] 43 ]
42 44
43 public_deps = [ 45 public_deps = [
44 "proto", 46 "proto",
45 ] 47 ]
46 } 48 }
47 49
48 source_set("unit_tests") { 50 source_set("unit_tests") {
49 testonly = true 51 testonly = true
50 sources = [ 52 sources = [
53 "base64url_unittest.cc",
51 "cryptauth_access_token_fetcher_impl_unittest.cc", 54 "cryptauth_access_token_fetcher_impl_unittest.cc",
52 "cryptauth_api_call_flow_unittest.cc", 55 "cryptauth_api_call_flow_unittest.cc",
53 "cryptauth_client_impl_unittest.cc", 56 "cryptauth_client_impl_unittest.cc",
54 "fake_secure_message_delegate_unittest.cc", 57 "fake_secure_message_delegate_unittest.cc",
55 ] 58 ]
56 59
57 deps = [ 60 deps = [
58 ":cryptauth", 61 ":cryptauth",
59 ":test_support", 62 ":test_support",
60 "//base/test:test_support", 63 "//base/test:test_support",
61 "//google_apis:test_support", 64 "//google_apis:test_support",
62 "//net:test_support", 65 "//net:test_support",
63 "//testing/gtest", 66 "//testing/gtest",
64 ] 67 ]
65 } 68 }
OLDNEW
« no previous file with comments | « components/proximity_auth/client.cc ('k') | components/proximity_auth/cryptauth/base64url.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698