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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 ] | 121 ] |
122 | 122 |
123 if (is_win) { | 123 if (is_win) { |
124 cflags = [ "/wd4267" ] # size_t -> int | 124 cflags = [ "/wd4267" ] # size_t -> int |
125 } | 125 } |
126 | 126 |
127 configs += [ ":key_defines" ] | 127 configs += [ ":key_defines" ] |
128 | 128 |
129 deps = [ | 129 deps = [ |
130 "//base", | 130 "//base", |
| 131 "//base/third_party/dynamic_annotations", |
131 "//crypto", | 132 "//crypto", |
132 "//net", | 133 "//net", |
133 "//third_party/libxml", | 134 "//third_party/libxml", |
134 ] | 135 ] |
135 | 136 |
136 if (enable_extensions) { | 137 if (enable_extensions) { |
137 sources += [ | 138 sources += [ |
138 "drive/auth_service.cc", | 139 "drive/auth_service.cc", |
139 "drive/auth_service.h", | 140 "drive/auth_service.h", |
140 "drive/auth_service_interface.h", | 141 "drive/auth_service_interface.h", |
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 "drive/drive_api_url_generator_unittest.cc", | 236 "drive/drive_api_url_generator_unittest.cc", |
236 "drive/gdata_wapi_parser_unittest.cc", | 237 "drive/gdata_wapi_parser_unittest.cc", |
237 "drive/gdata_wapi_requests_unittest.cc", | 238 "drive/gdata_wapi_requests_unittest.cc", |
238 "drive/gdata_wapi_url_generator_unittest.cc", | 239 "drive/gdata_wapi_url_generator_unittest.cc", |
239 "drive/request_sender_unittest.cc", | 240 "drive/request_sender_unittest.cc", |
240 "drive/request_util_unittest.cc", | 241 "drive/request_util_unittest.cc", |
241 "drive/time_util_unittest.cc", | 242 "drive/time_util_unittest.cc", |
242 ] | 243 ] |
243 } | 244 } |
244 } | 245 } |
OLD | NEW |