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

Side by Side Diff: components/keyed_service/core/BUILD.gn

Issue 1090373003: Allow cross dependencies between BCKSF and BSKSF (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove wrapper methods Created 5 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 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 component("core") { 5 component("core") {
6 output_name = "keyed_service_core" 6 output_name = "keyed_service_core"
7 sources = [ 7 sources = [
8 "dependency_graph.cc", 8 "dependency_graph.cc",
9 "dependency_graph.h", 9 "dependency_graph.h",
10 "dependency_manager.cc", 10 "dependency_manager.cc",
(...skipping 14 matching lines...) Expand all
25 "refcounted_keyed_service_factory.h", 25 "refcounted_keyed_service_factory.h",
26 "service_access_types.h", 26 "service_access_types.h",
27 ] 27 ]
28 28
29 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 29 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
30 30
31 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ] 31 defines = [ "KEYED_SERVICE_IMPLEMENTATION" ]
32 32
33 deps = [ 33 deps = [
34 "//base", 34 "//base",
35 "//base:prefs",
36 "//components/user_prefs",
35 ] 37 ]
36 } 38 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698