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

Side by Side Diff: components/keyed_service.gypi

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
« no previous file with comments | « no previous file | components/keyed_service/content/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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/keyed_service/core:core 8 # GN version: //components/keyed_service/core:core
9 'target_name': 'keyed_service_core', 9 'target_name': 'keyed_service_core',
10 'type': '<(component)', 10 'type': '<(component)',
11 'defines': [ 11 'defines': [
12 'KEYED_SERVICE_IMPLEMENTATION', 12 'KEYED_SERVICE_IMPLEMENTATION',
13 ], 13 ],
14 'include_dirs': [ 14 'include_dirs': [
15 '..', 15 '..',
16 ], 16 ],
17 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 17 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
18 'msvs_disabled_warnings': [ 4267, ], 18 'msvs_disabled_warnings': [ 4267, ],
19 'dependencies': [ 19 'dependencies': [
20 '../base/base.gyp:base', 20 '../base/base.gyp:base',
21 '../base/base.gyp:base_prefs',
22 'user_prefs',
21 ], 23 ],
22 'sources': [ 24 'sources': [
23 'keyed_service/core/dependency_graph.cc', 25 'keyed_service/core/dependency_graph.cc',
24 'keyed_service/core/dependency_graph.h', 26 'keyed_service/core/dependency_graph.h',
25 'keyed_service/core/dependency_manager.cc', 27 'keyed_service/core/dependency_manager.cc',
26 'keyed_service/core/dependency_manager.h', 28 'keyed_service/core/dependency_manager.h',
27 'keyed_service/core/dependency_node.h', 29 'keyed_service/core/dependency_node.h',
28 'keyed_service/core/keyed_service.cc', 30 'keyed_service/core/keyed_service.cc',
29 'keyed_service/core/keyed_service.h', 31 'keyed_service/core/keyed_service.h',
30 'keyed_service/core/keyed_service_base_factory.cc', 32 'keyed_service/core/keyed_service_base_factory.cc',
(...skipping 17 matching lines...) Expand all
48 { 50 {
49 # GN version: //components/keyed_service/content:content 51 # GN version: //components/keyed_service/content:content
50 'target_name': 'keyed_service_content', 52 'target_name': 'keyed_service_content',
51 'type': '<(component)', 53 'type': '<(component)',
52 'defines': [ 54 'defines': [
53 'KEYED_SERVICE_IMPLEMENTATION', 55 'KEYED_SERVICE_IMPLEMENTATION',
54 ], 56 ],
55 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 57 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
56 'msvs_disabled_warnings': [ 4267, ], 58 'msvs_disabled_warnings': [ 4267, ],
57 'dependencies': [ 59 'dependencies': [
58 'keyed_service_core',
59 '../base/base.gyp:base', 60 '../base/base.gyp:base',
60 '../base/base.gyp:base_prefs',
61 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 61 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
62 '../content/content.gyp:content_common', 62 '../content/content.gyp:content_common',
63 'user_prefs', 63 'keyed_service_core',
64 ], 64 ],
65 'include_dirs': [ 65 'include_dirs': [
66 '..', 66 '..',
67 ], 67 ],
68 'sources': [ 68 'sources': [
69 'keyed_service/content/browser_context_dependency_manager.cc', 69 'keyed_service/content/browser_context_dependency_manager.cc',
70 'keyed_service/content/browser_context_dependency_manager.h', 70 'keyed_service/content/browser_context_dependency_manager.h',
71 'keyed_service/content/browser_context_keyed_base_factory.cc', 71 'keyed_service/content/browser_context_keyed_base_factory.cc',
72 'keyed_service/content/browser_context_keyed_base_factory.h', 72 'keyed_service/content/browser_context_keyed_base_factory.h',
73 'keyed_service/content/browser_context_keyed_service_factory.cc', 73 'keyed_service/content/browser_context_keyed_service_factory.cc',
74 'keyed_service/content/browser_context_keyed_service_factory.h', 74 'keyed_service/content/browser_context_keyed_service_factory.h',
75 'keyed_service/content/browser_context_keyed_service_shutdown_notifi er_factory.cc', 75 'keyed_service/content/browser_context_keyed_service_shutdown_notifi er_factory.cc',
76 'keyed_service/content/browser_context_keyed_service_shutdown_notifi er_factory.h', 76 'keyed_service/content/browser_context_keyed_service_shutdown_notifi er_factory.h',
77 'keyed_service/content/refcounted_browser_context_keyed_service_fact ory.cc', 77 'keyed_service/content/refcounted_browser_context_keyed_service_fact ory.cc',
78 'keyed_service/content/refcounted_browser_context_keyed_service_fact ory.h', 78 'keyed_service/content/refcounted_browser_context_keyed_service_fact ory.h',
79 ], 79 ],
80 }], 80 }],
81 }], 81 }],
82 ['OS == "ios"', { 82 ['OS == "ios"', {
83 'targets': [ 83 'targets': [
84 { 84 {
85 'target_name': 'keyed_service_ios', 85 'target_name': 'keyed_service_ios',
86 'type': '<(component)', 86 'type': '<(component)',
87 'defines': [ 87 'defines': [
88 'KEYED_SERVICE_IMPLEMENTATION', 88 'KEYED_SERVICE_IMPLEMENTATION',
89 ], 89 ],
90 'dependencies': [ 90 'dependencies': [
91 '../base/base.gyp:base', 91 '../base/base.gyp:base',
92 '../base/base.gyp:base_prefs',
93 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 92 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
94 '../ios/web/ios_web.gyp:ios_web', 93 '../ios/web/ios_web.gyp:ios_web',
95 'keyed_service_core', 94 'keyed_service_core',
96 ], 95 ],
97 'include_dirs': [ 96 'include_dirs': [
98 '..', 97 '..',
99 ], 98 ],
100 'sources': [ 99 'sources': [
100 'keyed_service/ios/browser_state_context_converter.cc',
101 'keyed_service/ios/browser_state_context_converter.h',
101 'keyed_service/ios/browser_state_dependency_manager.cc', 102 'keyed_service/ios/browser_state_dependency_manager.cc',
102 'keyed_service/ios/browser_state_dependency_manager.h', 103 'keyed_service/ios/browser_state_dependency_manager.h',
103 'keyed_service/ios/browser_state_helper.cc',
104 'keyed_service/ios/browser_state_helper.h',
105 'keyed_service/ios/browser_state_keyed_service_factory.cc', 104 'keyed_service/ios/browser_state_keyed_service_factory.cc',
106 'keyed_service/ios/browser_state_keyed_service_factory.h', 105 'keyed_service/ios/browser_state_keyed_service_factory.h',
107 'keyed_service/ios/refcounted_browser_state_keyed_service_factory.cc ', 106 'keyed_service/ios/refcounted_browser_state_keyed_service_factory.cc ',
108 'keyed_service/ios/refcounted_browser_state_keyed_service_factory.h' , 107 'keyed_service/ios/refcounted_browser_state_keyed_service_factory.h' ,
109 ], 108 ],
110 }], 109 }],
111 }], 110 }],
112 ], 111 ],
113 } 112 }
OLDNEW
« no previous file with comments | « no previous file | components/keyed_service/content/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698