| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 declare_args() { | 8 declare_args() { |
| 9 # You can set the variable 'use_official_google_api_keys' to true | 9 # You can set the variable 'use_official_google_api_keys' to true |
| 10 # to use the Google-internal file containing official API keys | 10 # to use the Google-internal file containing official API keys |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 "gaia/oauth2_token_service_test_util.h", | 178 "gaia/oauth2_token_service_test_util.h", |
| 179 ] | 179 ] |
| 180 | 180 |
| 181 public_deps = [ | 181 public_deps = [ |
| 182 "//base", | 182 "//base", |
| 183 "//base/test:test_support", | 183 "//base/test:test_support", |
| 184 "//net", | 184 "//net", |
| 185 "//net:test_support", | 185 "//net:test_support", |
| 186 ] | 186 ] |
| 187 | 187 |
| 188 deps = [ |
| 189 ":google_apis", |
| 190 ] |
| 188 if (enable_extensions) { | 191 if (enable_extensions) { |
| 189 sources += [ | 192 sources += [ |
| 190 "drive/dummy_auth_service.cc", | 193 "drive/dummy_auth_service.cc", |
| 191 "drive/dummy_auth_service.h", | 194 "drive/dummy_auth_service.h", |
| 192 "drive/test_util.cc", | 195 "drive/test_util.cc", |
| 193 "drive/test_util.h", | 196 "drive/test_util.h", |
| 194 ] | 197 ] |
| 195 } | 198 } |
| 196 } | 199 } |
| 197 | 200 |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 "drive/drive_api_parser_unittest.cc", | 233 "drive/drive_api_parser_unittest.cc", |
| 231 "drive/drive_api_requests_unittest.cc", | 234 "drive/drive_api_requests_unittest.cc", |
| 232 "drive/drive_api_url_generator_unittest.cc", | 235 "drive/drive_api_url_generator_unittest.cc", |
| 233 "drive/request_sender_unittest.cc", | 236 "drive/request_sender_unittest.cc", |
| 234 "drive/request_util_unittest.cc", | 237 "drive/request_util_unittest.cc", |
| 235 "drive/time_util_unittest.cc", | 238 "drive/time_util_unittest.cc", |
| 236 ] | 239 ] |
| 237 } | 240 } |
| 238 } | 241 } |
| 239 } | 242 } |
| OLD | NEW |