blob: d8bf4a42271e8b8a1ec1321c5ac5d557b906a3dc [file] [log] [blame]
# Copyright 2017 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")
import("//extensions/buildflags/buildflags.gni")
assert(enable_extensions,
"Cannot depend on extensions because enable_extensions=false.")
source_set("file_handlers") {
sources = [
"app_file_handler_util.cc",
"app_file_handler_util.h",
"directory_util.cc",
"directory_util.h",
"mime_util.cc",
"mime_util.h",
]
if (is_chromeos_ash) {
sources += [ "non_native_file_system_delegate.h" ]
}
deps = [
"//base:base",
"//build:chromeos_buildflags",
"//content/public/browser",
"//content/public/common",
"//extensions/browser/api",
"//extensions/common",
"//extensions/common/api",
"//net",
"//storage/browser",
]
public_deps = [ "//extensions/browser:browser_sources" ]
}