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

Side by Side Diff: components/filesystem/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 | « chrome/app/mash/BUILD.gn ('k') | components/font_service/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 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",
(...skipping 22 matching lines...) Expand all
33 33
34 mojo_native_application("filesystem") { 34 mojo_native_application("filesystem") {
35 sources = [ 35 sources = [
36 "file_system_app.cc", 36 "file_system_app.cc",
37 "file_system_app.h", 37 "file_system_app.h",
38 "main.cc", 38 "main.cc",
39 ] 39 ]
40 40
41 deps = [ 41 deps = [
42 ":lib", 42 ":lib",
43 ":manifest",
44 "//base", 43 "//base",
45 "//components/filesystem/public/interfaces", 44 "//components/filesystem/public/interfaces",
46 "//mojo/common", 45 "//mojo/common",
47 "//mojo/platform_handle:for_shared_library", 46 "//mojo/platform_handle:for_shared_library",
48 "//mojo/public/cpp/bindings", 47 "//mojo/public/cpp/bindings",
49 "//mojo/public/cpp/system", 48 "//mojo/public/cpp/system",
50 "//mojo/services/tracing/public/cpp", 49 "//mojo/services/tracing/public/cpp",
51 "//mojo/shell/public/cpp", 50 "//mojo/shell/public/cpp",
52 ] 51 ]
52
53 data_deps = [
54 ":manifest",
55 ]
53 } 56 }
54 57
55 mojo_application_manifest("manifest") { 58 mojo_application_manifest("manifest") {
56 application_name = "filesystem" 59 application_name = "filesystem"
57 source = "manifest.json" 60 source = "manifest.json"
58 } 61 }
59 62
60 mojo_native_application("apptests") { 63 mojo_native_application("apptests") {
61 output_name = "filesystem_apptests" 64 output_name = "filesystem_apptests"
62 65
63 testonly = true 66 testonly = true
64 67
65 sources = [ 68 sources = [
66 "directory_impl_unittest.cc", 69 "directory_impl_unittest.cc",
67 "file_impl_unittest.cc", 70 "file_impl_unittest.cc",
68 "files_test_base.cc", 71 "files_test_base.cc",
69 "files_test_base.h", 72 "files_test_base.h",
70 ] 73 ]
71 74
72 deps = [ 75 deps = [
73 ":apptest_manifest",
74 "//base", 76 "//base",
75 "//components/filesystem/public/interfaces", 77 "//components/filesystem/public/interfaces",
76 "//mojo/common", 78 "//mojo/common",
77 "//mojo/platform_handle:for_shared_library", 79 "//mojo/platform_handle:for_shared_library",
78 "//mojo/public/cpp/bindings", 80 "//mojo/public/cpp/bindings",
79 "//mojo/shell/public/cpp:test_support", 81 "//mojo/shell/public/cpp:test_support",
80 ] 82 ]
81 83
82 data_deps = [ 84 data_deps = [
85 ":apptest_manifest",
83 ":filesystem", 86 ":filesystem",
84 ] 87 ]
85 } 88 }
86 89
87 mojo_application_manifest("apptest_manifest") { 90 mojo_application_manifest("apptest_manifest") {
88 application_name = "filesystem_apptests" 91 application_name = "filesystem_apptests"
89 source = "apptest_manifest.json" 92 source = "apptest_manifest.json"
90 } 93 }
OLDNEW
« no previous file with comments | « chrome/app/mash/BUILD.gn ('k') | components/font_service/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698