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

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

Issue 1720603002: Revert of mojo: Get mojo:leveldb and mojo:filesystem compiled into content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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/file_system_app.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 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/mojo_application_manifest.gni") 6 import("//mojo/public/mojo_application_manifest.gni")
7 7
8 source_set("lib") { 8 source_set("lib") {
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 "file_system_app.cc",
15 "file_system_app.h",
14 "file_system_impl.cc", 16 "file_system_impl.cc",
15 "file_system_impl.h", 17 "file_system_impl.h",
16 "lock_table.cc", 18 "lock_table.cc",
17 "lock_table.h", 19 "lock_table.h",
18 "util.cc", 20 "util.cc",
19 "util.h", 21 "util.h",
20 ] 22 ]
21 23
22 deps = [ 24 deps = [
23 "//base", 25 "//base",
24 "//components/filesystem/public/interfaces", 26 "//components/filesystem/public/interfaces",
25 "//mojo/common", 27 "//mojo/common",
26 "//mojo/common:common_base", 28 "//mojo/common:common_base",
27 "//mojo/platform_handle", 29 "//mojo/platform_handle",
30 "//mojo/services/tracing/public/cpp",
28 "//mojo/shell/public/cpp", 31 "//mojo/shell/public/cpp",
29 "//url", 32 "//url",
30 ] 33 ]
31 } 34 }
32 35
33 mojo_native_application("filesystem") { 36 mojo_native_application("filesystem") {
34 sources = [ 37 sources = [
35 "file_system_app.cc",
36 "file_system_app.h",
37 "main.cc", 38 "main.cc",
38 ] 39 ]
39 40
40 deps = [ 41 deps = [
41 ":lib", 42 ":lib",
42 ":manifest", 43 ":manifest",
43 "//base", 44 "//base",
44 "//components/filesystem/public/interfaces",
45 "//mojo/common", 45 "//mojo/common",
46 "//mojo/environment:chromium", 46 "//mojo/environment:chromium",
47 "//mojo/platform_handle:for_shared_library", 47 "//mojo/platform_handle:for_shared_library",
48 "//mojo/public/cpp/bindings", 48 "//mojo/public/cpp/bindings",
49 "//mojo/public/cpp/system", 49 "//mojo/public/cpp/system",
50 "//mojo/services/tracing/public/cpp",
51 "//mojo/shell/public/cpp", 50 "//mojo/shell/public/cpp",
52 ] 51 ]
53 } 52 }
54 53
55 mojo_application_manifest("manifest") { 54 mojo_application_manifest("manifest") {
56 application_name = "filesystem" 55 application_name = "filesystem"
57 source = "manifest.json" 56 source = "manifest.json"
58 } 57 }
59 58
60 mojo_native_application("apptests") { 59 mojo_native_application("apptests") {
(...skipping 14 matching lines...) Expand all
75 "//mojo/common", 74 "//mojo/common",
76 "//mojo/platform_handle:for_shared_library", 75 "//mojo/platform_handle:for_shared_library",
77 "//mojo/public/cpp/bindings", 76 "//mojo/public/cpp/bindings",
78 "//mojo/shell/public/cpp:test_support", 77 "//mojo/shell/public/cpp:test_support",
79 ] 78 ]
80 79
81 data_deps = [ 80 data_deps = [
82 ":filesystem", 81 ":filesystem",
83 ] 82 ]
84 } 83 }
OLDNEW
« no previous file with comments | « no previous file | components/filesystem/file_system_app.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698