OLD | NEW |
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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 declare_args() { | 7 declare_args() { |
8 # You can set the variable 'use_official_google_api_keys' to true | 8 # You can set the variable 'use_official_google_api_keys' to true |
9 # to use the Google-internal file containing official API keys | 9 # to use the Google-internal file containing official API keys |
10 # for Google Chrome even in a developer build. Setting this | 10 # for Google Chrome even in a developer build. Setting this |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 if (google_default_client_id != "") { | 70 if (google_default_client_id != "") { |
71 defines += [ "GOOGLE_DEFAULT_CLIENT_ID=$google_default_client_id" ] | 71 defines += [ "GOOGLE_DEFAULT_CLIENT_ID=$google_default_client_id" ] |
72 } | 72 } |
73 if (google_default_client_secret != "") { | 73 if (google_default_client_secret != "") { |
74 defines += [ "GOOGLE_DEFAULT_CLIENT_SECRET=$google_default_client_secret" ] | 74 defines += [ "GOOGLE_DEFAULT_CLIENT_SECRET=$google_default_client_secret" ] |
75 } | 75 } |
76 } | 76 } |
77 | 77 |
78 source_set("google_apis") { | 78 source_set("google_apis") { |
79 sources = [ | 79 sources = [ |
| 80 "gaia/account_tracker.cc", |
| 81 "gaia/account_tracker.h", |
80 "gaia/gaia_auth_consumer.cc", | 82 "gaia/gaia_auth_consumer.cc", |
81 "gaia/gaia_auth_consumer.h", | 83 "gaia/gaia_auth_consumer.h", |
82 "gaia/gaia_auth_fetcher.cc", | 84 "gaia/gaia_auth_fetcher.cc", |
83 "gaia/gaia_auth_fetcher.h", | 85 "gaia/gaia_auth_fetcher.h", |
84 "gaia/gaia_auth_util.cc", | 86 "gaia/gaia_auth_util.cc", |
85 "gaia/gaia_auth_util.h", | 87 "gaia/gaia_auth_util.h", |
86 "gaia/gaia_constants.cc", | 88 "gaia/gaia_constants.cc", |
87 "gaia/gaia_constants.h", | 89 "gaia/gaia_constants.h", |
88 "gaia/gaia_oauth_client.cc", | 90 "gaia/gaia_oauth_client.cc", |
89 "gaia/gaia_oauth_client.h", | 91 "gaia/gaia_oauth_client.h", |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
233 "drive/drive_api_url_generator_unittest.cc", | 235 "drive/drive_api_url_generator_unittest.cc", |
234 "drive/gdata_wapi_parser_unittest.cc", | 236 "drive/gdata_wapi_parser_unittest.cc", |
235 "drive/gdata_wapi_requests_unittest.cc", | 237 "drive/gdata_wapi_requests_unittest.cc", |
236 "drive/gdata_wapi_url_generator_unittest.cc", | 238 "drive/gdata_wapi_url_generator_unittest.cc", |
237 "drive/request_sender_unittest.cc", | 239 "drive/request_sender_unittest.cc", |
238 "drive/request_util_unittest.cc", | 240 "drive/request_util_unittest.cc", |
239 "drive/time_util_unittest.cc", | 241 "drive/time_util_unittest.cc", |
240 ] | 242 ] |
241 } | 243 } |
242 } | 244 } |
OLD | NEW |