# Copyright 2024 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") | |
assert(is_chromeos) | |
static_library("test_support") { | |
testonly = true | |
sources = [ | |
"fake_recent_source.cc", | |
"recent_file_matcher.h", | |
] | |
public_deps = [ "//testing/gtest" ] | |
deps = [ | |
"//base", | |
"//chrome/browser/ash/fileapi", | |
"//net", | |
] | |
} |