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

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

Issue 1783533003: Moves mojo_application_manifest to data_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « components/font_service/BUILD.gn ('k') | components/mus/BUILD.gn » ('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 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",
(...skipping 21 matching lines...) Expand all
32 32
33 mojo_native_application("leveldb") { 33 mojo_native_application("leveldb") {
34 sources = [ 34 sources = [
35 "leveldb_app.cc", 35 "leveldb_app.cc",
36 "leveldb_app.h", 36 "leveldb_app.h",
37 "main.cc", 37 "main.cc",
38 ] 38 ]
39 39
40 deps = [ 40 deps = [
41 ":lib", 41 ":lib",
42 ":manifest",
43 "//components/leveldb/public/interfaces", 42 "//components/leveldb/public/interfaces",
44 "//mojo/common", 43 "//mojo/common",
45 "//mojo/platform_handle:for_shared_library", 44 "//mojo/platform_handle:for_shared_library",
46 "//mojo/public/cpp/bindings", 45 "//mojo/public/cpp/bindings",
47 "//mojo/public/cpp/system", 46 "//mojo/public/cpp/system",
48 "//mojo/services/tracing/public/cpp", 47 "//mojo/services/tracing/public/cpp",
49 "//mojo/shell/public/cpp", 48 "//mojo/shell/public/cpp",
50 ] 49 ]
50
51 data_deps = [
52 ":manifest",
53 ]
51 } 54 }
52 55
53 mojo_application_manifest("manifest") { 56 mojo_application_manifest("manifest") {
54 application_name = "leveldb" 57 application_name = "leveldb"
55 source = "manifest.json" 58 source = "manifest.json"
56 } 59 }
57 60
58 mojo_native_application("apptests") { 61 mojo_native_application("apptests") {
59 output_name = "leveldb_apptests" 62 output_name = "leveldb_apptests"
60 63
61 testonly = true 64 testonly = true
62 65
63 sources = [ 66 sources = [
64 "leveldb_apptest.cc", 67 "leveldb_apptest.cc",
65 ] 68 ]
66 69
67 deps = [ 70 deps = [
68 ":apptest_manifest",
69 "//base", 71 "//base",
70 "//components/filesystem/public/interfaces", 72 "//components/filesystem/public/interfaces",
71 "//components/leveldb/public/interfaces", 73 "//components/leveldb/public/interfaces",
72 "//mojo/common", 74 "//mojo/common",
73 "//mojo/platform_handle:for_shared_library", 75 "//mojo/platform_handle:for_shared_library",
74 "//mojo/public/cpp/bindings", 76 "//mojo/public/cpp/bindings",
75 "//mojo/shell/public/cpp:test_support", 77 "//mojo/shell/public/cpp:test_support",
76 ] 78 ]
77 79
78 data_deps = [ 80 data_deps = [
81 ":apptest_manifest",
79 ":leveldb", 82 ":leveldb",
80 "//components/filesystem:filesystem", 83 "//components/filesystem:filesystem",
81 ] 84 ]
82 } 85 }
83 86
84 mojo_application_manifest("apptest_manifest") { 87 mojo_application_manifest("apptest_manifest") {
85 application_name = "leveldb_apptests" 88 application_name = "leveldb_apptests"
86 source = "apptest_manifest.json" 89 source = "apptest_manifest.json"
87 } 90 }
OLDNEW
« no previous file with comments | « components/font_service/BUILD.gn ('k') | components/mus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698