summaryrefslogtreecommitdiff
path: root/chromium/chrome/browser/webshare/chromeos/BUILD.gn
blob: af315c8bb385687620ef097a74268618b9eae1a6 (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
# Copyright 2020 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/config/chromeos/ui_mode.gni")

source_set("unit_tests") {
  testonly = true

  sources = [ "sharesheet_client_unittest.cc" ]

  deps = [
    "//base/test:test_support",
    "//chrome/browser",
    "//chrome/browser/webshare:storage",
    "//chrome/common",
    "//chrome/test:test_support",
    "//content/public/browser",
    "//content/test:test_support",
    "//testing/gmock",
    "//testing/gtest",
  ]

  if (is_chromeos_ash) {
    deps += [ "//chrome/browser/ash" ]
  }
}