| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 "drive/auth_service_observer.h", | 147 "drive/auth_service_observer.h", |
| 148 "drive/base_requests.cc", | 148 "drive/base_requests.cc", |
| 149 "drive/base_requests.h", | 149 "drive/base_requests.h", |
| 150 "drive/drive_api_parser.cc", | 150 "drive/drive_api_parser.cc", |
| 151 "drive/drive_api_parser.h", | 151 "drive/drive_api_parser.h", |
| 152 "drive/drive_api_requests.cc", | 152 "drive/drive_api_requests.cc", |
| 153 "drive/drive_api_requests.h", | 153 "drive/drive_api_requests.h", |
| 154 "drive/drive_api_url_generator.cc", | 154 "drive/drive_api_url_generator.cc", |
| 155 "drive/drive_api_url_generator.h", | 155 "drive/drive_api_url_generator.h", |
| 156 "drive/drive_common_callbacks.h", | 156 "drive/drive_common_callbacks.h", |
| 157 "drive/drive_entry_kinds.cc", |
| 157 "drive/drive_entry_kinds.h", | 158 "drive/drive_entry_kinds.h", |
| 158 "drive/gdata_errorcode.cc", | 159 "drive/gdata_errorcode.cc", |
| 159 "drive/gdata_errorcode.h", | 160 "drive/gdata_errorcode.h", |
| 160 "drive/gdata_wapi_requests.cc", | 161 "drive/gdata_wapi_requests.cc", |
| 161 "drive/gdata_wapi_requests.h", | 162 "drive/gdata_wapi_requests.h", |
| 162 "drive/gdata_wapi_parser.cc", | 163 "drive/gdata_wapi_parser.cc", |
| 163 "drive/gdata_wapi_parser.h", | 164 "drive/gdata_wapi_parser.h", |
| 164 "drive/gdata_wapi_url_generator.cc", | 165 "drive/gdata_wapi_url_generator.cc", |
| 165 "drive/gdata_wapi_url_generator.h", | 166 "drive/gdata_wapi_url_generator.h", |
| 166 "drive/request_sender.cc", | 167 "drive/request_sender.cc", |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "//testing/gtest", | 235 "//testing/gtest", |
| 235 ] | 236 ] |
| 236 | 237 |
| 237 if (enable_extensions) { | 238 if (enable_extensions) { |
| 238 sources += [ | 239 sources += [ |
| 239 "drive/base_requests_server_unittest.cc", | 240 "drive/base_requests_server_unittest.cc", |
| 240 "drive/base_requests_unittest.cc", | 241 "drive/base_requests_unittest.cc", |
| 241 "drive/drive_api_parser_unittest.cc", | 242 "drive/drive_api_parser_unittest.cc", |
| 242 "drive/drive_api_requests_unittest.cc", | 243 "drive/drive_api_requests_unittest.cc", |
| 243 "drive/drive_api_url_generator_unittest.cc", | 244 "drive/drive_api_url_generator_unittest.cc", |
| 245 "drive/drive_entry_kinds_unittest.cc", |
| 244 "drive/gdata_wapi_parser_unittest.cc", | 246 "drive/gdata_wapi_parser_unittest.cc", |
| 245 "drive/gdata_wapi_requests_unittest.cc", | 247 "drive/gdata_wapi_requests_unittest.cc", |
| 246 "drive/gdata_wapi_url_generator_unittest.cc", | 248 "drive/gdata_wapi_url_generator_unittest.cc", |
| 247 "drive/request_sender_unittest.cc", | 249 "drive/request_sender_unittest.cc", |
| 248 "drive/request_util_unittest.cc", | 250 "drive/request_util_unittest.cc", |
| 249 "drive/time_util_unittest.cc", | 251 "drive/time_util_unittest.cc", |
| 250 ] | 252 ] |
| 251 } | 253 } |
| 252 } | 254 } |
| OLD | NEW |