| 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 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 126 ] | 126 ] |
| 127 | 127 |
| 128 configs += [ | 128 configs += [ |
| 129 ":key_defines", | 129 ":key_defines", |
| 130 "//build/config/compiler:no_size_t_to_int_warning", | 130 "//build/config/compiler:no_size_t_to_int_warning", |
| 131 ] | 131 ] |
| 132 | 132 |
| 133 deps = [ | 133 deps = [ |
| 134 "//base", | 134 "//base", |
| 135 "//base/third_party/dynamic_annotations", | 135 "//base/third_party/dynamic_annotations", |
| 136 "//components/data_use_measurement/core", |
| 136 "//crypto", | 137 "//crypto", |
| 137 "//net", | 138 "//net", |
| 138 "//third_party/libxml", | 139 "//third_party/libxml", |
| 139 ] | 140 ] |
| 140 | 141 |
| 141 if (enable_extensions) { | 142 if (enable_extensions) { |
| 142 sources += [ | 143 sources += [ |
| 143 "drive/auth_service.cc", | 144 "drive/auth_service.cc", |
| 144 "drive/auth_service.h", | 145 "drive/auth_service.h", |
| 145 "drive/auth_service_interface.h", | 146 "drive/auth_service_interface.h", |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 "drive/base_requests_unittest.cc", | 251 "drive/base_requests_unittest.cc", |
| 251 "drive/drive_api_parser_unittest.cc", | 252 "drive/drive_api_parser_unittest.cc", |
| 252 "drive/drive_api_requests_unittest.cc", | 253 "drive/drive_api_requests_unittest.cc", |
| 253 "drive/drive_api_url_generator_unittest.cc", | 254 "drive/drive_api_url_generator_unittest.cc", |
| 254 "drive/request_sender_unittest.cc", | 255 "drive/request_sender_unittest.cc", |
| 255 "drive/request_util_unittest.cc", | 256 "drive/request_util_unittest.cc", |
| 256 "drive/time_util_unittest.cc", | 257 "drive/time_util_unittest.cc", |
| 257 ] | 258 ] |
| 258 } | 259 } |
| 259 } | 260 } |
| OLD | NEW |