Add command lines that launch the Auth test with a non-gmail and a GAFYD account.
[chromium-blink-merge.git] / components / keyed_service.gypi
blobb30e65da3053cf90bdc4e7da65fd0e1dfdb336f3
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
3 # found in the LICENSE file.
6   'targets': [
7     {
8       # GN version: //components/keyed_service/core:core
9       'target_name': 'keyed_service_core',
10       'type': '<(component)',
11       'defines': [
12         'KEYED_SERVICE_IMPLEMENTATION',
13       ],
14       'include_dirs': [
15         '..',
16       ],
17       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
18       'msvs_disabled_warnings': [ 4267, ],
19       'dependencies': [
20         '../base/base.gyp:base',
21       ],
22       'sources': [
23         'keyed_service/core/dependency_graph.cc',
24         'keyed_service/core/dependency_graph.h',
25         'keyed_service/core/dependency_manager.cc',
26         'keyed_service/core/dependency_manager.h',
27         'keyed_service/core/dependency_node.h',
28         'keyed_service/core/keyed_service.cc',
29         'keyed_service/core/keyed_service.h',
30         'keyed_service/core/keyed_service_base_factory.cc',
31         'keyed_service/core/keyed_service_base_factory.h',
32         'keyed_service/core/keyed_service_export.h',
33         'keyed_service/core/refcounted_keyed_service.cc',
34         'keyed_service/core/refcounted_keyed_service.h',
35       ],
36     },
37   ],
38   'conditions': [
39     ['OS != "ios"', {
40       'targets': [
41         {
42           # GN version: //components/keyed_service/content:content
43           'target_name': 'keyed_service_content',
44           'type': '<(component)',
45           'defines': [
46             'KEYED_SERVICE_IMPLEMENTATION',
47           ],
48           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
49           'msvs_disabled_warnings': [ 4267, ],
50           'dependencies': [
51             'keyed_service_core',
52             '../base/base.gyp:base',
53             '../base/base.gyp:base_prefs',
54             '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
55             '../content/content.gyp:content_common',
56             'user_prefs',
57           ],
58           'include_dirs': [
59             '..',
60           ],
61           'sources': [
62             'keyed_service/content/browser_context_dependency_manager.cc',
63             'keyed_service/content/browser_context_dependency_manager.h',
64             'keyed_service/content/browser_context_keyed_base_factory.h',
65             'keyed_service/content/browser_context_keyed_base_factory.cc',
66             'keyed_service/content/browser_context_keyed_service_factory.cc',
67             'keyed_service/content/browser_context_keyed_service_factory.h',
68             'keyed_service/content/refcounted_browser_context_keyed_service_factory.cc',
69             'keyed_service/content/refcounted_browser_context_keyed_service_factory.h',
70         ],
71       }],
72     }],
73   ],