Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Side by Side Diff: mojo/file_utils/BUILD.gn

Issue 1923573002: Convert //mojo/file_utils to use SynchronousInterfacePtr. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | mojo/file_utils/file_util.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 # file_utils is a helper library for utility functions relating to the Mojo 7 # file_utils is a helper library for utility functions relating to the Mojo
8 # files service. 8 # files service.
9 source_set("file_utils") { 9 source_set("file_utils") {
10 sources = [ 10 sources = [
11 "file_util.cc", 11 "file_util.cc",
12 "file_util.h", 12 "file_util.h",
13 ] 13 ]
14 14
15 public_deps = [ 15 public_deps = [
16 "//mojo/services/files/interfaces:interfaces", 16 "//mojo/services/files/interfaces",
17 "//mojo/services/files/interfaces:interfaces_sync",
17 ] 18 ]
18 } 19 }
19 20
20 mojo_native_application("file_utils_apptests") { 21 mojo_native_application("file_utils_apptests") {
21 output_name = "file_utils_apptests" 22 output_name = "file_utils_apptests"
22 23
23 testonly = true 24 testonly = true
24 25
25 sources = [ 26 sources = [
26 "file_util_unittest.cc", 27 "file_util_unittest.cc",
27 ] 28 ]
28 29
29 deps = [ 30 deps = [
30 ":file_utils", 31 ":file_utils",
31 "//mojo/public/cpp/application:standalone", 32 "//mojo/public/cpp/application:standalone",
32 "//mojo/public/cpp/application:test_support_standalone", 33 "//mojo/public/cpp/application:test_support_standalone",
33 "//mojo/public/cpp/utility", 34 "//mojo/public/cpp/utility",
34 "//testing/gtest", 35 "//testing/gtest",
35 ] 36 ]
36 } 37 }
OLDNEW
« no previous file with comments | « no previous file | mojo/file_utils/file_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698