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

Side by Side Diff: components/filesystem/BUILD.gn

Issue 1147083002: mandoline: Fork the files service from the mojo repository. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: I think the problem was in the mandoline build.gn Created 5 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 | components/filesystem/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//third_party/mojo/src/mojo/public/mojo_application.gni")
6
7 mojo_native_application("filesystem") {
8 sources = [
9 "directory_impl.cc",
10 "directory_impl.h",
11 "file_impl.cc",
12 "file_impl.h",
13 "files_impl.cc",
14 "files_impl.h",
15 "futimens.h",
16 "futimens_android.cc",
17 "main.cc",
18 "shared_impl.cc",
19 "shared_impl.h",
20 "util.cc",
21 "util.h",
22 ]
23
24 deps = [
25 "//base",
26 "//components/filesystem/public/interfaces",
27 "//mojo/application/public/cpp",
28 "//mojo/common",
29 "//mojo/environment:chromium",
30 "//third_party/mojo/src/mojo/public/cpp/bindings",
31 "//third_party/mojo/src/mojo/public/cpp/system",
32 ]
33 }
34
35 mojo_native_application("apptests") {
36 output_name = "files_apptests"
37
38 testonly = true
39
40 sources = [
41 "directory_impl_unittest.cc",
42 "file_impl_unittest.cc",
43 "files_test_base.cc",
44 "files_test_base.h",
45 ]
46
47 deps = [
48 "//base",
49 "//components/filesystem/public/interfaces",
50 "//mojo/application/public/cpp:test_support",
51 "//third_party/mojo/src/mojo/public/cpp/bindings",
52 ]
53 }
OLDNEW
« no previous file with comments | « no previous file | components/filesystem/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698