OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 'gaia/gaia_switches.cc', | 85 'gaia/gaia_switches.cc', |
86 'gaia/gaia_switches.h', | 86 'gaia/gaia_switches.h', |
87 'gaia/gaia_urls.cc', | 87 'gaia/gaia_urls.cc', |
88 'gaia/gaia_urls.h', | 88 'gaia/gaia_urls.h', |
89 'gaia/google_service_auth_error.cc', | 89 'gaia/google_service_auth_error.cc', |
90 'gaia/google_service_auth_error.h', | 90 'gaia/google_service_auth_error.h', |
91 'gaia/identity_provider.cc', | 91 'gaia/identity_provider.cc', |
92 'gaia/identity_provider.h', | 92 'gaia/identity_provider.h', |
93 'gaia/merge_session_helper.cc', | 93 'gaia/merge_session_helper.cc', |
94 'gaia/merge_session_helper.h', | 94 'gaia/merge_session_helper.h', |
95 'gaia/oauth_request_signer.cc', | |
96 'gaia/oauth_request_signer.h', | |
97 'gaia/oauth2_access_token_consumer.h', | 95 'gaia/oauth2_access_token_consumer.h', |
| 96 'gaia/oauth2_access_token_fetcher.cc', |
98 'gaia/oauth2_access_token_fetcher.h', | 97 'gaia/oauth2_access_token_fetcher.h', |
99 'gaia/oauth2_access_token_fetcher.cc', | |
100 'gaia/oauth2_access_token_fetcher_impl.cc', | 98 'gaia/oauth2_access_token_fetcher_impl.cc', |
101 'gaia/oauth2_access_token_fetcher_impl.h', | 99 'gaia/oauth2_access_token_fetcher_impl.h', |
102 'gaia/oauth2_api_call_flow.cc', | 100 'gaia/oauth2_api_call_flow.cc', |
103 'gaia/oauth2_api_call_flow.h', | 101 'gaia/oauth2_api_call_flow.h', |
104 'gaia/oauth2_mint_token_flow.cc', | 102 'gaia/oauth2_mint_token_flow.cc', |
105 'gaia/oauth2_mint_token_flow.h', | 103 'gaia/oauth2_mint_token_flow.h', |
106 'gaia/oauth2_token_service.cc', | 104 'gaia/oauth2_token_service.cc', |
107 'gaia/oauth2_token_service.h', | 105 'gaia/oauth2_token_service.h', |
108 'gaia/oauth2_token_service_request.cc', | 106 'gaia/oauth2_token_service_request.cc', |
109 'gaia/oauth2_token_service_request.h', | 107 'gaia/oauth2_token_service_request.h', |
| 108 'gaia/oauth_request_signer.cc', |
| 109 'gaia/oauth_request_signer.h', |
110 'gaia/ubertoken_fetcher.cc', | 110 'gaia/ubertoken_fetcher.cc', |
111 'gaia/ubertoken_fetcher.h', | 111 'gaia/ubertoken_fetcher.h', |
112 'google_api_keys.cc', | 112 'google_api_keys.cc', |
113 'google_api_keys.h', | 113 'google_api_keys.h', |
114 ], | 114 ], |
115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 115 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
116 'msvs_disabled_warnings': [4267, ], | 116 'msvs_disabled_warnings': [4267, ], |
117 }, | 117 }, |
118 { | 118 { |
119 'target_name': 'google_apis_unittests', | 119 'target_name': 'google_apis_unittests', |
120 'type': 'executable', | 120 'type': 'executable', |
121 'dependencies': [ | 121 'dependencies': [ |
122 '../base/base.gyp:run_all_unittests', | 122 '../base/base.gyp:run_all_unittests', |
123 '../testing/gmock.gyp:gmock', | 123 '../testing/gmock.gyp:gmock', |
124 '../testing/gtest.gyp:gtest', | 124 '../testing/gtest.gyp:gtest', |
125 'google_apis', | 125 'google_apis', |
126 'google_apis_test_support', | 126 'google_apis_test_support', |
127 ], | 127 ], |
128 'includes': [ | 128 'includes': [ |
129 'determine_use_official_keys.gypi', | 129 'determine_use_official_keys.gypi', |
130 ], | 130 ], |
131 'include_dirs': [ | 131 'include_dirs': [ |
132 '..', | 132 '..', |
133 ], | 133 ], |
134 'sources': [ | 134 'sources': [ |
135 'google_api_keys_unittest.cc', | |
136 'gaia/account_tracker_unittest.cc', | 135 'gaia/account_tracker_unittest.cc', |
137 'gaia/gaia_auth_fetcher_unittest.cc', | 136 'gaia/gaia_auth_fetcher_unittest.cc', |
138 'gaia/gaia_auth_util_unittest.cc', | 137 'gaia/gaia_auth_util_unittest.cc', |
139 'gaia/gaia_oauth_client_unittest.cc', | 138 'gaia/gaia_oauth_client_unittest.cc', |
140 'gaia/google_service_auth_error_unittest.cc', | 139 'gaia/google_service_auth_error_unittest.cc', |
141 'gaia/merge_session_helper_unittest.cc', | 140 'gaia/merge_session_helper_unittest.cc', |
142 'gaia/oauth_request_signer_unittest.cc', | |
143 'gaia/oauth2_access_token_fetcher_impl_unittest.cc', | 141 'gaia/oauth2_access_token_fetcher_impl_unittest.cc', |
144 'gaia/oauth2_api_call_flow_unittest.cc', | 142 'gaia/oauth2_api_call_flow_unittest.cc', |
145 'gaia/oauth2_mint_token_flow_unittest.cc', | 143 'gaia/oauth2_mint_token_flow_unittest.cc', |
146 'gaia/oauth2_token_service_request_unittest.cc', | 144 'gaia/oauth2_token_service_request_unittest.cc', |
147 'gaia/oauth2_token_service_unittest.cc', | 145 'gaia/oauth2_token_service_unittest.cc', |
| 146 'gaia/oauth_request_signer_unittest.cc', |
148 'gaia/ubertoken_fetcher_unittest.cc', | 147 'gaia/ubertoken_fetcher_unittest.cc', |
| 148 'google_api_keys_unittest.cc', |
149 ], | 149 ], |
150 'conditions': [ | 150 'conditions': [ |
151 ['enable_extensions==1', { | 151 ['enable_extensions==1', { |
152 'sources': [ | 152 'sources': [ |
153 'drive/base_requests_server_unittest.cc', | 153 'drive/base_requests_server_unittest.cc', |
154 'drive/base_requests_unittest.cc', | 154 'drive/base_requests_unittest.cc', |
155 'drive/drive_api_parser_unittest.cc', | 155 'drive/drive_api_parser_unittest.cc', |
156 'drive/drive_api_requests_unittest.cc', | 156 'drive/drive_api_requests_unittest.cc', |
157 'drive/drive_api_url_generator_unittest.cc', | 157 'drive/drive_api_url_generator_unittest.cc', |
158 'drive/request_sender_unittest.cc', | 158 'drive/request_sender_unittest.cc', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 'drive/dummy_auth_service.cc', | 195 'drive/dummy_auth_service.cc', |
196 'drive/dummy_auth_service.h', | 196 'drive/dummy_auth_service.h', |
197 'drive/test_util.cc', | 197 'drive/test_util.cc', |
198 'drive/test_util.h', | 198 'drive/test_util.h', |
199 ], | 199 ], |
200 }], | 200 }], |
201 ], | 201 ], |
202 }, | 202 }, |
203 ], | 203 ], |
204 } | 204 } |
OLD | NEW |