1 # Copyright (c) 2012 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.
7 'chromium_code': 1, # Use higher warning level.
10 '../build/win_precompile.gypi',
14 # GN version: //google_apis
15 'target_name': 'google_apis',
16 'type': 'static_library',
18 'determine_use_official_keys.gypi',
21 '../base/base.gyp:base',
22 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
23 '../crypto/crypto.gyp:crypto',
25 '../third_party/libxml/libxml.gyp:libxml',
26 '../url/url.gyp:url_lib',
29 ['google_api_key!=""', {
30 'defines': ['GOOGLE_API_KEY="<(google_api_key)"'],
32 ['google_default_client_id!=""', {
34 'GOOGLE_DEFAULT_CLIENT_ID="<(google_default_client_id)"',
37 ['google_default_client_secret!=""', {
39 'GOOGLE_DEFAULT_CLIENT_SECRET="<(google_default_client_secret)"',
42 ['enable_extensions==1', {
44 # Note: sources list duplicated in GN build.
45 'drive/auth_service.cc',
46 'drive/auth_service.h',
47 'drive/auth_service_interface.h',
48 'drive/auth_service_observer.h',
49 'drive/base_requests.cc',
50 'drive/base_requests.h',
51 'drive/drive_api_error_codes.cc',
52 'drive/drive_api_error_codes.h',
53 'drive/drive_api_parser.cc',
54 'drive/drive_api_parser.h',
55 'drive/drive_api_requests.cc',
56 'drive/drive_api_requests.h',
57 'drive/drive_api_url_generator.cc',
58 'drive/drive_api_url_generator.h',
59 'drive/drive_common_callbacks.h',
60 'drive/request_sender.cc',
61 'drive/request_sender.h',
62 'drive/request_util.cc',
63 'drive/request_util.h',
72 # Note: sources list duplicated in GN build.
73 'gaia/account_tracker.cc',
74 'gaia/account_tracker.h',
75 'gaia/gaia_auth_consumer.cc',
76 'gaia/gaia_auth_consumer.h',
77 'gaia/gaia_auth_fetcher.cc',
78 'gaia/gaia_auth_fetcher.h',
79 'gaia/gaia_auth_util.cc',
80 'gaia/gaia_auth_util.h',
81 'gaia/gaia_constants.cc',
82 'gaia/gaia_constants.h',
83 'gaia/gaia_oauth_client.cc',
84 'gaia/gaia_oauth_client.h',
85 'gaia/gaia_switches.cc',
86 'gaia/gaia_switches.h',
89 'gaia/google_service_auth_error.cc',
90 'gaia/google_service_auth_error.h',
91 'gaia/identity_provider.cc',
92 'gaia/identity_provider.h',
93 'gaia/oauth2_access_token_consumer.h',
94 'gaia/oauth2_access_token_fetcher.cc',
95 'gaia/oauth2_access_token_fetcher.h',
96 'gaia/oauth2_access_token_fetcher_impl.cc',
97 'gaia/oauth2_access_token_fetcher_impl.h',
98 'gaia/oauth2_api_call_flow.cc',
99 'gaia/oauth2_api_call_flow.h',
100 'gaia/oauth2_mint_token_flow.cc',
101 'gaia/oauth2_mint_token_flow.h',
102 'gaia/oauth2_token_service.cc',
103 'gaia/oauth2_token_service.h',
104 'gaia/oauth2_token_service_request.cc',
105 'gaia/oauth2_token_service_request.h',
106 'gaia/oauth_request_signer.cc',
107 'gaia/oauth_request_signer.h',
108 'gaia/ubertoken_fetcher.cc',
109 'gaia/ubertoken_fetcher.h',
110 'google_api_keys.cc',
113 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
114 'msvs_disabled_warnings': [4267, ],
117 'target_name': 'google_apis_unittests',
118 'type': 'executable',
120 '../base/base.gyp:run_all_unittests',
121 '../testing/gmock.gyp:gmock',
122 '../testing/gtest.gyp:gtest',
124 'google_apis_test_support',
127 'determine_use_official_keys.gypi',
133 'gaia/account_tracker_unittest.cc',
134 'gaia/gaia_auth_fetcher_unittest.cc',
135 'gaia/gaia_auth_util_unittest.cc',
136 'gaia/gaia_oauth_client_unittest.cc',
137 'gaia/google_service_auth_error_unittest.cc',
138 'gaia/oauth2_access_token_fetcher_impl_unittest.cc',
139 'gaia/oauth2_api_call_flow_unittest.cc',
140 'gaia/oauth2_mint_token_flow_unittest.cc',
141 'gaia/oauth2_token_service_request_unittest.cc',
142 'gaia/oauth2_token_service_unittest.cc',
143 'gaia/oauth_request_signer_unittest.cc',
144 'gaia/ubertoken_fetcher_unittest.cc',
145 'google_api_keys_unittest.cc',
148 ['enable_extensions==1', {
150 'drive/base_requests_server_unittest.cc',
151 'drive/base_requests_unittest.cc',
152 'drive/drive_api_parser_unittest.cc',
153 'drive/drive_api_requests_unittest.cc',
154 'drive/drive_api_url_generator_unittest.cc',
155 'drive/request_sender_unittest.cc',
156 'drive/request_util_unittest.cc',
157 'drive/time_util_unittest.cc',
163 # GN version: //google_apis:test_support
164 'target_name': 'google_apis_test_support',
165 'type': 'static_library',
167 '../base/base.gyp:base',
168 '../base/base.gyp:test_support_base',
169 '../net/net.gyp:net',
170 '../net/net.gyp:net_test_support',
172 'export_dependent_settings': [
173 '../base/base.gyp:base',
174 '../base/base.gyp:test_support_base',
175 '../net/net.gyp:net',
176 '../net/net.gyp:net_test_support',
181 'gaia/fake_identity_provider.cc',
182 'gaia/fake_identity_provider.h',
183 'gaia/fake_oauth2_token_service.cc',
184 'gaia/fake_oauth2_token_service.h',
185 'gaia/mock_url_fetcher_factory.h',
186 'gaia/oauth2_token_service_test_util.cc',
187 'gaia/oauth2_token_service_test_util.h',
190 ['enable_extensions==1', {
192 'drive/dummy_auth_service.cc',
193 'drive/dummy_auth_service.h',
194 'drive/test_util.cc',