| 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("//extensions/features/features.gni") | 6 import("//extensions/features/features.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 declare_args() { | 9 declare_args() { |
| 10 # You can set the variable 'use_official_google_api_keys' to true | 10 # You can set the variable 'use_official_google_api_keys' to true |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 "drive/base_requests.h", | 155 "drive/base_requests.h", |
| 156 "drive/drive_api_error_codes.cc", | 156 "drive/drive_api_error_codes.cc", |
| 157 "drive/drive_api_error_codes.h", | 157 "drive/drive_api_error_codes.h", |
| 158 "drive/drive_api_parser.cc", | 158 "drive/drive_api_parser.cc", |
| 159 "drive/drive_api_parser.h", | 159 "drive/drive_api_parser.h", |
| 160 "drive/drive_api_requests.cc", | 160 "drive/drive_api_requests.cc", |
| 161 "drive/drive_api_requests.h", | 161 "drive/drive_api_requests.h", |
| 162 "drive/drive_api_url_generator.cc", | 162 "drive/drive_api_url_generator.cc", |
| 163 "drive/drive_api_url_generator.h", | 163 "drive/drive_api_url_generator.h", |
| 164 "drive/drive_common_callbacks.h", | 164 "drive/drive_common_callbacks.h", |
| 165 "drive/drive_switches.cc", |
| 166 "drive/drive_switches.h", |
| 165 "drive/files_list_request_runner.cc", | 167 "drive/files_list_request_runner.cc", |
| 166 "drive/files_list_request_runner.h", | 168 "drive/files_list_request_runner.h", |
| 167 "drive/request_sender.cc", | 169 "drive/request_sender.cc", |
| 168 "drive/request_sender.h", | 170 "drive/request_sender.h", |
| 169 "drive/request_util.cc", | 171 "drive/request_util.cc", |
| 170 "drive/request_util.h", | 172 "drive/request_util.h", |
| 171 "drive/task_util.cc", | 173 "drive/task_util.cc", |
| 172 "drive/task_util.h", | 174 "drive/task_util.h", |
| 173 "drive/time_util.cc", | 175 "drive/time_util.cc", |
| 174 "drive/time_util.h", | 176 "drive/time_util.h", |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 } | 277 } |
| 276 | 278 |
| 277 if (is_mac || is_ios) { | 279 if (is_mac || is_ios) { |
| 278 set_sources_assignment_filter([]) | 280 set_sources_assignment_filter([]) |
| 279 sources += [ "google_api_keys_mac_unittest.mm" ] | 281 sources += [ "google_api_keys_mac_unittest.mm" ] |
| 280 set_sources_assignment_filter(sources_assignment_filter) | 282 set_sources_assignment_filter(sources_assignment_filter) |
| 281 | 283 |
| 282 deps += [ "//third_party/ocmock" ] | 284 deps += [ "//third_party/ocmock" ] |
| 283 } | 285 } |
| 284 } | 286 } |
| OLD | NEW |