| 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 import("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
| 7 | 7 |
| 8 mojo_native_application("files") { | 8 mojo_native_application("files") { |
| 9 sources = [ | 9 sources = [ |
| 10 "directory_impl.cc", | 10 "directory_impl.cc", |
| 11 "directory_impl.h", | 11 "directory_impl.h", |
| 12 "file_impl.cc", | 12 "file_impl.cc", |
| 13 "file_impl.h", | 13 "file_impl.h", |
| 14 "files_impl.cc", | 14 "files_impl.cc", |
| 15 "files_impl.h", | 15 "files_impl.h", |
| 16 "futimens.h", | 16 "futimens.h", |
| 17 "futimens_android.cc", | 17 "futimens_android.cc", |
| 18 "main.cc", | 18 "main.cc", |
| 19 "shared_impl.cc", |
| 20 "shared_impl.h", |
| 19 "util.cc", | 21 "util.cc", |
| 20 "util.h", | 22 "util.h", |
| 21 ] | 23 ] |
| 22 | 24 |
| 23 deps = [ | 25 deps = [ |
| 24 ":bindings", | 26 ":bindings", |
| 25 "//base", | 27 "//base", |
| 26 "//mojo/application", | 28 "//mojo/application", |
| 27 "//mojo/common", | 29 "//mojo/common", |
| 28 "//mojo/public/cpp/application", | 30 "//mojo/public/cpp/application", |
| 31 "//mojo/public/cpp/bindings:callback", |
| 29 "//mojo/public/cpp/system", | 32 "//mojo/public/cpp/system", |
| 30 ] | 33 ] |
| 31 } | 34 } |
| 32 | 35 |
| 33 mojom("bindings") { | 36 mojom("bindings") { |
| 34 sources = [ | 37 sources = [ |
| 35 "directory.mojom", | 38 "directory.mojom", |
| 36 "file.mojom", | 39 "file.mojom", |
| 37 "files.mojom", | 40 "files.mojom", |
| 38 "types.mojom", | 41 "types.mojom", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 51 deps = [ | 54 deps = [ |
| 52 ":bindings", | 55 ":bindings", |
| 53 "//base", | 56 "//base", |
| 54 "//mojo/application", | 57 "//mojo/application", |
| 55 "//mojo/application:test_support", | 58 "//mojo/application:test_support", |
| 56 "//mojo/public/cpp/bindings", | 59 "//mojo/public/cpp/bindings", |
| 57 ] | 60 ] |
| 58 | 61 |
| 59 data_deps = [ ":files" ] | 62 data_deps = [ ":files" ] |
| 60 } | 63 } |
| OLD | NEW |