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

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

Issue 1915193002: Simplify the organization of //mojo_file_utils. (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.cc » ('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.h", 12 "file_util.h",
12 "lib/file_util.cc",
13 ] 13 ]
14 14
15 public_deps = [ 15 public_deps = [
16 "//mojo/services/files/interfaces:interfaces", 16 "//mojo/services/files/interfaces:interfaces",
17 ] 17 ]
18 } 18 }
19 19
20 mojo_native_application("file_utils_apptests") { 20 mojo_native_application("file_utils_apptests") {
21 output_name = "file_utils_apptests" 21 output_name = "file_utils_apptests"
22 22
23 testonly = true 23 testonly = true
24 24
25 sources = [ 25 sources = [
26 "tests/file_util_test_base.cc", 26 "file_util_unittest.cc",
27 "tests/file_util_test_base.h",
28 "tests/file_util_unittest.cc",
29 ] 27 ]
30 28
31 deps = [ 29 deps = [
32 ":file_utils", 30 ":file_utils",
33 "//mojo/public/cpp/application:standalone", 31 "//mojo/public/cpp/application:standalone",
34 "//mojo/public/cpp/application:test_support_standalone", 32 "//mojo/public/cpp/application:test_support_standalone",
35 "//mojo/public/cpp/utility", 33 "//mojo/public/cpp/utility",
36 "//testing/gtest", 34 "//testing/gtest",
37 ] 35 ]
38 } 36 }
OLDNEW
« no previous file with comments | « no previous file | mojo/file_utils/file_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698