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

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

Issue 1737933002: mojo leveldb: Get profile and leveldb connected to DOMStorageContext. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gyp-ify all the tracing stuff. 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
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 "//mojo/shell/public/interfaces", 32 "//mojo/shell/public/interfaces",
30 "//url", 33 "//url",
31 ] 34 ]
32 } 35 }
33 36
34 mojo_native_application("filesystem") { 37 mojo_native_application("filesystem") {
35 sources = [ 38 sources = [
36 "file_system_app.cc",
37 "file_system_app.h",
38 "main.cc", 39 "main.cc",
39 ] 40 ]
40 41
41 deps = [ 42 deps = [
42 ":lib", 43 ":lib",
43 ":manifest", 44 ":manifest",
44 "//base", 45 "//base",
45 "//components/filesystem/public/interfaces", 46 "//components/filesystem/public/interfaces",
46 "//mojo/common", 47 "//mojo/common",
47 "//mojo/environment:chromium", 48 "//mojo/environment:chromium",
48 "//mojo/platform_handle:for_shared_library", 49 "//mojo/platform_handle:for_shared_library",
49 "//mojo/public/cpp/bindings", 50 "//mojo/public/cpp/bindings",
50 "//mojo/public/cpp/system", 51 "//mojo/public/cpp/system",
51 "//mojo/services/tracing/public/cpp",
52 "//mojo/shell/public/cpp", 52 "//mojo/shell/public/cpp",
53 ] 53 ]
54 } 54 }
55 55
56 mojo_application_manifest("manifest") { 56 mojo_application_manifest("manifest") {
57 application_name = "filesystem" 57 application_name = "filesystem"
58 source = "manifest.json" 58 source = "manifest.json"
59 } 59 }
60 60
61 mojo_native_application("apptests") { 61 mojo_native_application("apptests") {
(...skipping 20 matching lines...) Expand all
82 82
83 data_deps = [ 83 data_deps = [
84 ":filesystem", 84 ":filesystem",
85 ] 85 ]
86 } 86 }
87 87
88 mojo_application_manifest("apptest_manifest") { 88 mojo_application_manifest("apptest_manifest") {
89 application_name = "filesystem_apptests" 89 application_name = "filesystem_apptests"
90 source = "apptest_manifest.json" 90 source = "apptest_manifest.json"
91 } 91 }
OLDNEW
« no previous file with comments | « no previous file | components/filesystem/file_system_app.h » ('j') | components/filesystem/file_system_app.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698