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

Side by Side Diff: components/leveldb/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: Keeping up with the ToT Created 4 years, 9 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/leveldb/leveldb.gyp » ('j') | components/leveldb/leveldb_app.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 "env_mojo.cc", 10 "env_mojo.cc",
11 "env_mojo.h", 11 "env_mojo.h",
12 "leveldb_app.cc",
13 "leveldb_app.h",
12 "leveldb_database_impl.cc", 14 "leveldb_database_impl.cc",
13 "leveldb_database_impl.h", 15 "leveldb_database_impl.h",
14 "leveldb_file_thread.cc", 16 "leveldb_file_thread.cc",
15 "leveldb_file_thread.h", 17 "leveldb_file_thread.h",
16 "leveldb_service_impl.cc", 18 "leveldb_service_impl.cc",
17 "leveldb_service_impl.h", 19 "leveldb_service_impl.h",
18 "util.cc", 20 "util.cc",
19 "util.h", 21 "util.h",
20 ] 22 ]
21 23
22 deps = [ 24 deps = [
23 "//components/filesystem/public/interfaces", 25 "//components/filesystem/public/interfaces",
24 "//components/leveldb/public/interfaces", 26 "//components/leveldb/public/interfaces",
25 "//mojo/common", 27 "//mojo/common",
26 "//mojo/message_pump", 28 "//mojo/message_pump",
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 "//third_party/leveldatabase", 32 "//third_party/leveldatabase",
30 ] 33 ]
31 } 34 }
32 35
33 mojo_native_application("leveldb") { 36 mojo_native_application("leveldb") {
34 sources = [ 37 sources = [
35 "leveldb_app.cc",
36 "leveldb_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 "//components/leveldb/public/interfaces", 44 "//components/leveldb/public/interfaces",
44 "//mojo/common", 45 "//mojo/common",
45 "//mojo/environment:chromium", 46 "//mojo/environment:chromium",
46 "//mojo/platform_handle:for_shared_library", 47 "//mojo/platform_handle:for_shared_library",
47 "//mojo/public/cpp/bindings", 48 "//mojo/public/cpp/bindings",
48 "//mojo/public/cpp/system", 49 "//mojo/public/cpp/system",
49 "//mojo/services/tracing/public/cpp",
50 "//mojo/shell/public/cpp", 50 "//mojo/shell/public/cpp",
51 ] 51 ]
52 } 52 }
53 53
54 mojo_application_manifest("manifest") { 54 mojo_application_manifest("manifest") {
55 application_name = "leveldb" 55 application_name = "leveldb"
56 source = "manifest.json" 56 source = "manifest.json"
57 } 57 }
58 58
59 mojo_native_application("apptests") { 59 mojo_native_application("apptests") {
(...skipping 19 matching lines...) Expand all
79 data_deps = [ 79 data_deps = [
80 ":leveldb", 80 ":leveldb",
81 "//components/filesystem:filesystem", 81 "//components/filesystem:filesystem",
82 ] 82 ]
83 } 83 }
84 84
85 mojo_application_manifest("apptest_manifest") { 85 mojo_application_manifest("apptest_manifest") {
86 application_name = "leveldb_apptests" 86 application_name = "leveldb_apptests"
87 source = "apptest_manifest.json" 87 source = "apptest_manifest.json"
88 } 88 }
OLDNEW
« no previous file with comments | « no previous file | components/leveldb/leveldb.gyp » ('j') | components/leveldb/leveldb_app.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698