blob: 01d92068b4e9415773fa0405cb0ccb01dafb394a [file] [log] [blame]
# 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.
import("//remoting/build/config/remoting_build.gni")
source_set("file_transfer") {
public = [
"file_operations.h",
"local_file_operations.h",
]
sources = [
"local_file_operations.cc",
]
deps = [
"//base",
"//remoting/protocol",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"local_file_operations_unittest.cc",
]
deps = [
":file_transfer",
"//remoting/protocol",
"//testing/gtest",
]
}