| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//third_party/mojo/src/mojo/public/mojo_application.gni") | 5 import("//mojo/public/mojo_application.gni") |
| 6 | 6 |
| 7 source_set("lib") { | 7 source_set("lib") { |
| 8 sources = [ | 8 sources = [ |
| 9 "directory_impl.cc", | 9 "directory_impl.cc", |
| 10 "directory_impl.h", | 10 "directory_impl.h", |
| 11 "file_impl.cc", | 11 "file_impl.cc", |
| 12 "file_impl.h", | 12 "file_impl.h", |
| 13 "file_system_app.cc", | 13 "file_system_app.cc", |
| 14 "file_system_app.h", | 14 "file_system_app.h", |
| 15 "file_system_impl.cc", | 15 "file_system_impl.cc", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 deps = [ | 57 deps = [ |
| 58 "//base", | 58 "//base", |
| 59 "//components/filesystem/public/interfaces", | 59 "//components/filesystem/public/interfaces", |
| 60 "//mojo/application/public/cpp:test_support", | 60 "//mojo/application/public/cpp:test_support", |
| 61 "//mojo/platform_handle", | 61 "//mojo/platform_handle", |
| 62 "//third_party/mojo/src/mojo/public/cpp/bindings", | 62 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 data_deps = [ ":filesystem" ] | 65 data_deps = [ ":filesystem" ] |
| 66 } | 66 } |
| OLD | NEW |