| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 "gaia/fake_gaia.h", | 175 "gaia/fake_gaia.h", |
| 176 "gaia/fake_identity_provider.cc", | 176 "gaia/fake_identity_provider.cc", |
| 177 "gaia/fake_identity_provider.h", | 177 "gaia/fake_identity_provider.h", |
| 178 "gaia/fake_oauth2_token_service.cc", | 178 "gaia/fake_oauth2_token_service.cc", |
| 179 "gaia/fake_oauth2_token_service.h", | 179 "gaia/fake_oauth2_token_service.h", |
| 180 "gaia/mock_url_fetcher_factory.h", | 180 "gaia/mock_url_fetcher_factory.h", |
| 181 "gaia/oauth2_token_service_test_util.cc", | 181 "gaia/oauth2_token_service_test_util.cc", |
| 182 "gaia/oauth2_token_service_test_util.h", | 182 "gaia/oauth2_token_service_test_util.h", |
| 183 ] | 183 ] |
| 184 | 184 |
| 185 deps = [ | 185 public_deps = [ |
| 186 "//base", | 186 "//base", |
| 187 "//base/test:test_support", | 187 "//base/test:test_support", |
| 188 "//net", | 188 "//net", |
| 189 "//net:test_support", | 189 "//net:test_support", |
| 190 ] | 190 ] |
| 191 forward_dependent_configs_from = deps | |
| 192 | 191 |
| 193 if (enable_extensions) { | 192 if (enable_extensions) { |
| 194 sources += [ | 193 sources += [ |
| 195 "drive/dummy_auth_service.cc", | 194 "drive/dummy_auth_service.cc", |
| 196 "drive/dummy_auth_service.h", | 195 "drive/dummy_auth_service.h", |
| 197 "drive/test_util.cc", | 196 "drive/test_util.cc", |
| 198 "drive/test_util.h", | 197 "drive/test_util.h", |
| 199 ] | 198 ] |
| 200 } | 199 } |
| 201 } | 200 } |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 "drive/drive_api_url_generator_unittest.cc", | 235 "drive/drive_api_url_generator_unittest.cc", |
| 237 "drive/gdata_wapi_parser_unittest.cc", | 236 "drive/gdata_wapi_parser_unittest.cc", |
| 238 "drive/gdata_wapi_requests_unittest.cc", | 237 "drive/gdata_wapi_requests_unittest.cc", |
| 239 "drive/gdata_wapi_url_generator_unittest.cc", | 238 "drive/gdata_wapi_url_generator_unittest.cc", |
| 240 "drive/request_sender_unittest.cc", | 239 "drive/request_sender_unittest.cc", |
| 241 "drive/request_util_unittest.cc", | 240 "drive/request_util_unittest.cc", |
| 242 "drive/time_util_unittest.cc", | 241 "drive/time_util_unittest.cc", |
| 243 ] | 242 ] |
| 244 } | 243 } |
| 245 } | 244 } |
| OLD | NEW |