summaryrefslogtreecommitdiff
path: root/chromium/chromeos/components/drivefs/BUILD.gn
blob: a8045860c25d122cf7b9b2dafcd0fe81f558d5c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")

component("drivefs") {
  sources = [
    "drivefs_auth.cc",
    "drivefs_auth.h",
    "drivefs_bootstrap.cc",
    "drivefs_bootstrap.h",
    "drivefs_host.cc",
    "drivefs_host.h",
    "drivefs_host_observer.h",
    "drivefs_search.cc",
    "drivefs_search.h",
    "drivefs_session.cc",
    "drivefs_session.h",
    "drivefs_util.h",
    "fake_drivefs_launcher_client.cc",
    "fake_drivefs_launcher_client.h",
  ]
  deps = [
    "//base",
    "//chromeos/components/drivefs/mojom",
    "//chromeos/components/mojo_bootstrap",
    "//chromeos/constants",
    "//chromeos/dbus",
    "//chromeos/disks",
    "//components/account_id",
    "//components/drive",
    "//components/signin/public/identity_manager",
    "//dbus",
    "//google_apis",
    "//mojo/public/cpp/bindings",
    "//mojo/public/cpp/platform",
    "//net",
    "//services/network/public/cpp:cpp",
  ]
  defines = [ "IS_DRIVEFS_IMPL" ]
}

source_set("test_support") {
  testonly = true
  sources = [
    "fake_drivefs.cc",
    "fake_drivefs.h",
  ]
  deps = [
    ":drivefs",
    "//base",
    "//chromeos/components/drivefs/mojom",
    "//chromeos/dbus:test_support",
    "//net",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [
    "drivefs_auth_unittest.cc",
    "drivefs_bootstrap_unittest.cc",
    "drivefs_host_unittest.cc",
    "drivefs_search_unittest.cc",
    "drivefs_session_unittest.cc",
  ]

  deps = [
    ":drivefs",
    ":test_support",
    "//base",
    "//base/test:test_support",
    "//chromeos/components/drivefs/mojom",
    "//chromeos/components/mojo_bootstrap",
    "//chromeos/disks:test_support",
    "//components/account_id",
    "//components/drive",
    "//components/invalidation/impl:test_support",
    "//components/signin/public/identity_manager",
    "//components/signin/public/identity_manager:test_support",
    "//mojo/public/cpp/bindings",
    "//net",
    "//net:test_support",
    "//services/network:test_support",
    "//services/network/public/cpp:cpp",
    "//testing/gmock",
    "//testing/gtest",
  ]
}