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

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: Created 6 years, 1 month 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 = [
15 "proto",
Ilya Sherman 2014/11/18 22:30:43 Should this be a public dep, to match the export_d
Tim Song 2014/12/03 01:18:23 Done.
12 "//base", 16 "//base",
13 "//google_apis", 17 "//google_apis",
14 "//net", 18 "//net",
15 ] 19 ]
16 } 20 }
17 21
18 source_set("unit_tests") { 22 source_set("unit_tests") {
19 testonly = true 23 testonly = true
20 sources = [ 24 sources = [
21 "cryptauth_api_call_flow_unittest.cc", 25 "cryptauth_api_call_flow_unittest.cc",
26 "cryptauth_client_unittest.cc",
22 ] 27 ]
23 28
24 deps = [ 29 deps = [
25 ":cryptauth", 30 ":cryptauth",
26 "//base/test:test_support", 31 "//base/test:test_support",
27 "//net:test_support", 32 "//net:test_support",
28 "//testing/gtest", 33 "//testing/gtest",
29 ] 34 ]
30 } 35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698