blob: 72725dd90d399a78e023f7eee5ae9eaa2d815fbf [file] [log] [blame]
# Copyright 2020 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.
import("//build/config/chromeos/ui_mode.gni")
static_library("storage") {
if (is_chromeos || is_mac) {
sources = [
"prepare_directory_task.cc",
"prepare_directory_task.h",
"store_file_task.cc",
"store_file_task.h",
"store_files_task.cc",
"store_files_task.h",
]
deps = [
"//content/public/browser",
"//mojo/public/cpp/bindings",
]
public_deps = [
"//base",
"//third_party/blink/public/common",
]
}
}
source_set("unit_tests") {
testonly = true
sources = [ "share_service_unittest.cc" ]
if (is_chromeos || is_mac) {
sources += [ "prepare_directory_task_unittest.cc" ]
}
deps = [
"//base/test:test_support",
"//build:chromeos_buildflags",
"//chrome/browser",
"//chrome/common",
"//chrome/test:test_support",
"//content/public/browser",
"//content/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
if (is_chromeos_ash) {
deps += [ "//chrome/browser/webshare/chromeos:unit_tests" ]
}
if (is_chromeos || is_mac) {
deps += [ "//chrome/browser/webshare:storage" ]
}
}