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

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

Issue 1844973002: Implement a system-level entry cache so that packages loaded from the system dir can be visible to … (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 8 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
11 deps = [ 11 deps = [
12 ":lib", 12 ":lib",
13 ] 13 ]
14 } 14 }
15 15
16 source_set("lib") { 16 source_set("lib") {
17 sources = [ 17 sources = [
18 "catalog.cc", 18 "catalog.cc",
19 "catalog.h", 19 "catalog.h",
20 "entry.cc", 20 "entry.cc",
21 "entry.h", 21 "entry.h",
22 "factory.cc", 22 "factory.cc",
23 "factory.h", 23 "factory.h",
24 "store.cc", 24 "store.cc",
25 "store.h", 25 "store.h",
26 "types.h",
26 ] 27 ]
27 28
28 deps = [ 29 deps = [
29 "//base", 30 "//base",
30 "//mojo/common:url_type_converters", 31 "//mojo/common:url_type_converters",
31 "//mojo/services/catalog/public/interfaces", 32 "//mojo/services/catalog/public/interfaces",
32 "//mojo/shell/public/cpp", 33 "//mojo/shell/public/cpp",
33 "//mojo/util:filename_util", 34 "//mojo/util:filename_util",
34 ] 35 ]
35 36
(...skipping 12 matching lines...) Expand all
48 sources = [ 49 sources = [
49 "entry_unittest.cc", 50 "entry_unittest.cc",
50 ] 51 ]
51 deps = [ 52 deps = [
52 ":lib", 53 ":lib",
53 "//base", 54 "//base",
54 "//mojo/shell/public/cpp", 55 "//mojo/shell/public/cpp",
55 "//testing/gtest", 56 "//testing/gtest",
56 ] 57 ]
57 } 58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698