Android Chromoting: Remove exit-fullscreen button.
[chromium-blink-merge.git] / components / proximity_auth / cryptauth / BUILD.gn
blobccf0ac26aef5cac697a3d4b734a8a7277092dda3
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
3 # found in the LICENSE file.
5 source_set("cryptauth") {
6   sources = [
7     "cryptauth_access_token_fetcher.h",
8     "cryptauth_account_token_fetcher.cc",
9     "cryptauth_account_token_fetcher.h",
10     "cryptauth_api_call_flow.cc",
11     "cryptauth_api_call_flow.h",
12     "cryptauth_client.cc",
13     "cryptauth_client.h",
14     "cryptauth_client_factory.cc",
15     "cryptauth_client_factory.h",
16     "cryptauth_enrollment_utils.cc",
17     "cryptauth_enrollment_utils.h",
18   ]
20   deps = [
21     "//base",
22     "//google_apis",
23     "//net",
24   ]
26   public_deps = [
27     "proto",
28   ]
31 source_set("unit_tests") {
32   testonly = true
33   sources = [
34     "cryptauth_account_token_fetcher_unittest.cc",
35     "cryptauth_api_call_flow_unittest.cc",
36     "cryptauth_client_unittest.cc",
37   ]
39   deps = [
40     ":cryptauth",
41     "//base/test:test_support",
42     "//google_apis:test_support",
43     "//net:test_support",
44     "//testing/gtest",
45   ]