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

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

Issue 738593002: Introduce CryptAuthClient, a class capable of performing all CryptAuth APIs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo Created 6 years 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
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 "cryptauth_access_token_fetcher.h",
7 "cryptauth_api_call_flow.cc", 8 "cryptauth_api_call_flow.cc",
8 "cryptauth_api_call_flow.h", 9 "cryptauth_api_call_flow.h",
10 "cryptauth_client.cc",
11 "cryptauth_client.h",
9 ] 12 ]
10 13
11 deps = [ 14 deps = [
12 "//base", 15 "//base",
13 "//google_apis", 16 "//google_apis",
14 "//net", 17 "//net",
15 ] 18 ]
19
20 public_deps = [
21 "proto",
22 ]
16 } 23 }
17 24
18 source_set("unit_tests") { 25 source_set("unit_tests") {
19 testonly = true 26 testonly = true
20 sources = [ 27 sources = [
21 "cryptauth_api_call_flow_unittest.cc", 28 "cryptauth_api_call_flow_unittest.cc",
29 "cryptauth_client_unittest.cc",
22 ] 30 ]
23 31
24 deps = [ 32 deps = [
25 ":cryptauth", 33 ":cryptauth",
26 "//base/test:test_support", 34 "//base/test:test_support",
27 "//net:test_support", 35 "//net:test_support",
28 "//testing/gtest", 36 "//testing/gtest",
29 ] 37 ]
30 } 38 }
OLDNEW
« no previous file with comments | « components/proximity_auth.gypi ('k') | components/proximity_auth/cryptauth/cryptauth_access_token_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698