| 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("//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", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "main.cc", | 34 "main.cc", |
| 35 ] | 35 ] |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 ":lib", | 38 ":lib", |
| 39 "//base", | 39 "//base", |
| 40 "//mojo/application/public/cpp", | 40 "//mojo/application/public/cpp", |
| 41 "//mojo/common", | 41 "//mojo/common", |
| 42 "//mojo/environment:chromium", | 42 "//mojo/environment:chromium", |
| 43 "//mojo/platform_handle:for_shared_library", | 43 "//mojo/platform_handle:for_shared_library", |
| 44 "//third_party/mojo/src/mojo/public/cpp/bindings", | 44 "//mojo/public/cpp/bindings", |
| 45 "//third_party/mojo/src/mojo/public/cpp/system", | 45 "//mojo/public/cpp/system", |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 | 48 |
| 49 mojo_native_application("apptests") { | 49 mojo_native_application("apptests") { |
| 50 output_name = "filesystem_apptests" | 50 output_name = "filesystem_apptests" |
| 51 | 51 |
| 52 testonly = true | 52 testonly = true |
| 53 | 53 |
| 54 sources = [ | 54 sources = [ |
| 55 "directory_impl_unittest.cc", | 55 "directory_impl_unittest.cc", |
| 56 "file_impl_unittest.cc", | 56 "file_impl_unittest.cc", |
| 57 "files_test_base.cc", | 57 "files_test_base.cc", |
| 58 "files_test_base.h", | 58 "files_test_base.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 deps = [ | 61 deps = [ |
| 62 "//base", | 62 "//base", |
| 63 "//components/filesystem/public/interfaces", | 63 "//components/filesystem/public/interfaces", |
| 64 "//mojo/application/public/cpp:test_support", | 64 "//mojo/application/public/cpp:test_support", |
| 65 "//mojo/platform_handle:for_shared_library", | 65 "//mojo/platform_handle:for_shared_library", |
| 66 "//third_party/mojo/src/mojo/public/cpp/bindings", | 66 "//mojo/public/cpp/bindings", |
| 67 ] | 67 ] |
| 68 | 68 |
| 69 data_deps = [ | 69 data_deps = [ |
| 70 ":filesystem", | 70 ":filesystem", |
| 71 ] | 71 ] |
| 72 } | 72 } |
| OLD | NEW |