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

Side by Side Diff: services/catalog/BUILD.gn

Issue 1942473002: Eliminate mojo:resource_provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 7 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 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 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 group("catalog") { 9 group("catalog") {
10 testonly = true 10 testonly = true
(...skipping 15 matching lines...) Expand all
26 "manifest_provider.h", 26 "manifest_provider.h",
27 "reader.cc", 27 "reader.cc",
28 "reader.h", 28 "reader.h",
29 "store.cc", 29 "store.cc",
30 "store.h", 30 "store.h",
31 "types.h", 31 "types.h",
32 ] 32 ]
33 33
34 deps = [ 34 deps = [
35 "//base", 35 "//base",
36 "//components/filesystem:lib",
37 "//components/filesystem/public/interfaces",
36 "//services/catalog/public/interfaces", 38 "//services/catalog/public/interfaces",
37 "//services/shell/public/cpp", 39 "//services/shell/public/cpp",
38 ] 40 ]
39 41
40 data_deps = [ 42 data_deps = [
41 ":manifest", 43 ":manifest",
42 ] 44 ]
43 } 45 }
44 46
45 mojo_application_manifest("manifest") { 47 mojo_application_manifest("manifest") {
46 application_name = "catalog" 48 application_name = "catalog"
47 source = "manifest.json" 49 source = "manifest.json"
48 } 50 }
49 51
50 source_set("unittests") { 52 source_set("unittests") {
51 testonly = true 53 testonly = true
52 sources = [ 54 sources = [
53 "entry_unittest.cc", 55 "entry_unittest.cc",
54 ] 56 ]
55 data = [ 57 data = [
56 "//services/catalog/data/", 58 "//services/catalog/data/",
57 ] 59 ]
58 deps = [ 60 deps = [
59 ":lib", 61 ":lib",
60 "//base", 62 "//base",
61 "//services/shell/public/cpp", 63 "//services/shell/public/cpp",
62 "//testing/gtest", 64 "//testing/gtest",
63 ] 65 ]
64 } 66 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698