OLD | NEW |
1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//extensions/features/features.gni") | 5 import("//extensions/features/features.gni") |
6 | 6 |
7 assert(enable_extensions, | 7 assert(enable_extensions, |
8 "Cannot depend on extensions because enable_extensions=false.") | 8 "Cannot depend on extensions because enable_extensions=false.") |
9 | 9 |
10 source_set("file_system") { | 10 source_set("file_system") { |
11 sources = [ | 11 sources = [ |
| 12 "file_system_api.cc", |
| 13 "file_system_api.h", |
| 14 "file_system_delegate.h", |
12 "saved_file_entry.cc", | 15 "saved_file_entry.cc", |
13 "saved_file_entry.h", | 16 "saved_file_entry.h", |
14 "saved_files_service_interface.h", | 17 "saved_files_service_interface.h", |
15 ] | 18 ] |
16 | 19 |
17 deps = [ | 20 deps = [ |
18 "//base:base", | 21 "//base", |
| 22 "//content/public/browser", |
| 23 "//extensions/browser/api/file_handlers", |
| 24 "//extensions/common", |
| 25 "//extensions/common/api", |
| 26 "//net", |
| 27 "//storage/browser", |
| 28 "//storage/common", |
| 29 "//ui/base", |
| 30 "//ui/shell_dialogs", |
| 31 ] |
| 32 |
| 33 public_deps = [ |
| 34 "//extensions/browser:browser_sources", |
19 ] | 35 ] |
20 } | 36 } |
OLD | NEW |