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

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

Issue 1775243002: Rename PackageManager->Catalog. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@42cpi
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 | « mojo/services/BUILD.gn ('k') | mojo/services/catalog/DEPS » ('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 mojo_native_application("package_manager") { 8 group("catalog") {
9 sources = [
10 "main.cc",
11 ]
12
13 deps = [ 9 deps = [
14 ":lib", 10 ":lib",
15 ":manifest",
16 "//base",
17 "//mojo/message_pump",
18 "//mojo/public/c/system:for_shared_library",
19 "//mojo/public/cpp/bindings:bindings",
20 "//mojo/shell/public/cpp",
21 ] 11 ]
22 } 12 }
23 13
24 mojo_application_manifest("manifest") {
25 application_name = "package_manager"
26 source = "manifest.json"
27 }
28
29 source_set("lib") { 14 source_set("lib") {
30 sources = [ 15 sources = [
16 "catalog.cc",
17 "catalog.h",
31 "loader.cc", 18 "loader.cc",
32 "loader.h", 19 "loader.h",
33 "package_manager.cc",
34 "package_manager.h",
35 ] 20 ]
36 21
37 deps = [ 22 deps = [
23 ":manifest",
38 "//base", 24 "//base",
39 "//mojo/common:url_type_converters", 25 "//mojo/common:url_type_converters",
40 "//mojo/services/package_manager/public/interfaces", 26 "//mojo/services/catalog/public/interfaces",
41 "//mojo/shell/public/cpp", 27 "//mojo/shell/public/cpp",
42 "//mojo/util:filename_util", 28 "//mojo/util:filename_util",
43 "//net", 29 "//net",
44 ] 30 ]
45 } 31 }
32
33 mojo_application_manifest("manifest") {
34 application_name = "catalog"
35 source = "manifest.json"
36 }
OLDNEW
« no previous file with comments | « mojo/services/BUILD.gn ('k') | mojo/services/catalog/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698