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

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

Issue 1708253004: mojo: Get mojo:leveldb and mojo:filesystem compiled into content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Probable fix to the build flake. 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",
16 "file_system_impl.cc", 14 "file_system_impl.cc",
17 "file_system_impl.h", 15 "file_system_impl.h",
18 "lock_table.cc", 16 "lock_table.cc",
19 "lock_table.h", 17 "lock_table.h",
20 "util.cc", 18 "util.cc",
21 "util.h", 19 "util.h",
22 ] 20 ]
23 21
24 deps = [ 22 deps = [
25 "//base", 23 "//base",
26 "//components/filesystem/public/interfaces", 24 "//components/filesystem/public/interfaces",
27 "//mojo/common", 25 "//mojo/common",
28 "//mojo/common:common_base", 26 "//mojo/common:common_base",
29 "//mojo/platform_handle", 27 "//mojo/platform_handle",
30 "//mojo/services/tracing/public/cpp",
31 "//mojo/shell/public/cpp", 28 "//mojo/shell/public/cpp",
32 "//url", 29 "//url",
33 ] 30 ]
34 } 31 }
35 32
36 mojo_native_application("filesystem") { 33 mojo_native_application("filesystem") {
37 sources = [ 34 sources = [
35 "file_system_app.cc",
36 "file_system_app.h",
38 "main.cc", 37 "main.cc",
39 ] 38 ]
40 39
41 deps = [ 40 deps = [
42 ":lib", 41 ":lib",
43 ":manifest", 42 ":manifest",
44 "//base", 43 "//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",
50 "//mojo/shell/public/cpp", 51 "//mojo/shell/public/cpp",
51 ] 52 ]
52 } 53 }
53 54
54 mojo_application_manifest("manifest") { 55 mojo_application_manifest("manifest") {
55 application_name = "filesystem" 56 application_name = "filesystem"
56 source = "manifest.json" 57 source = "manifest.json"
57 } 58 }
58 59
59 mojo_native_application("apptests") { 60 mojo_native_application("apptests") {
(...skipping 14 matching lines...) Expand all
74 "//mojo/common", 75 "//mojo/common",
75 "//mojo/platform_handle:for_shared_library", 76 "//mojo/platform_handle:for_shared_library",
76 "//mojo/public/cpp/bindings", 77 "//mojo/public/cpp/bindings",
77 "//mojo/shell/public/cpp:test_support", 78 "//mojo/shell/public/cpp:test_support",
78 ] 79 ]
79 80
80 data_deps = [ 81 data_deps = [
81 ":filesystem", 82 ":filesystem",
82 ] 83 ]
83 } 84 }
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