OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/rules.gni") # For generate_jni(). | 8 import("//build/config/android/rules.gni") # For generate_jni(). |
9 } | 9 } |
10 | 10 |
(...skipping 13 matching lines...) Expand all Loading... |
24 "geolocation_provider_impl.cc", | 24 "geolocation_provider_impl.cc", |
25 "geolocation_provider_impl.h", | 25 "geolocation_provider_impl.h", |
26 "geolocation_service_context.cc", | 26 "geolocation_service_context.cc", |
27 "geolocation_service_context.h", | 27 "geolocation_service_context.h", |
28 "geolocation_service_impl.cc", | 28 "geolocation_service_impl.cc", |
29 "geolocation_service_impl.h", | 29 "geolocation_service_impl.h", |
30 "geoposition.cc", | 30 "geoposition.cc", |
31 "geoposition.h", | 31 "geoposition.h", |
32 "location_api_adapter_android.cc", | 32 "location_api_adapter_android.cc", |
33 "location_api_adapter_android.h", | 33 "location_api_adapter_android.h", |
34 "location_arbitrator_impl.cc", | 34 "location_arbitrator.cc", |
35 "location_arbitrator_impl.h", | 35 "location_arbitrator.h", |
36 "location_provider.h", | 36 "location_provider.h", |
37 "location_provider_android.cc", | 37 "location_provider_android.cc", |
38 "location_provider_android.h", | 38 "location_provider_android.h", |
39 "location_provider_base.cc", | 39 "location_provider_base.cc", |
40 "location_provider_base.h", | 40 "location_provider_base.h", |
41 "network_location_provider.cc", | 41 "network_location_provider.cc", |
42 "network_location_provider.h", | 42 "network_location_provider.h", |
43 "network_location_request.cc", | 43 "network_location_request.cc", |
44 "network_location_request.h", | 44 "network_location_request.h", |
| 45 "rate_limiting_location_provider_proxy.cc", |
| 46 "rate_limiting_location_provider_proxy.h", |
45 "wifi_data.cc", | 47 "wifi_data.cc", |
46 "wifi_data.h", | 48 "wifi_data.h", |
47 "wifi_data_provider.cc", | 49 "wifi_data_provider.cc", |
48 "wifi_data_provider.h", | 50 "wifi_data_provider.h", |
49 "wifi_data_provider_chromeos.cc", | 51 "wifi_data_provider_chromeos.cc", |
50 "wifi_data_provider_chromeos.h", | 52 "wifi_data_provider_chromeos.h", |
51 "wifi_data_provider_common.cc", | 53 "wifi_data_provider_common.cc", |
52 "wifi_data_provider_common.h", | 54 "wifi_data_provider_common.h", |
53 "wifi_data_provider_common_win.cc", | 55 "wifi_data_provider_common_win.cc", |
54 "wifi_data_provider_common_win.h", | 56 "wifi_data_provider_common_win.h", |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "//testing/gmock", | 166 "//testing/gmock", |
165 "//testing/gtest", | 167 "//testing/gtest", |
166 ] | 168 ] |
167 } | 169 } |
168 | 170 |
169 source_set("unittests") { | 171 source_set("unittests") { |
170 testonly = true | 172 testonly = true |
171 | 173 |
172 sources = [ | 174 sources = [ |
173 "geolocation_provider_impl_unittest.cc", | 175 "geolocation_provider_impl_unittest.cc", |
174 "location_arbitrator_impl_unittest.cc", | 176 "location_arbitrator_unittest.cc", |
175 "network_location_provider_unittest.cc", | 177 "network_location_provider_unittest.cc", |
| 178 "rate_limiting_location_provider_proxy_unittest.cc", |
176 "wifi_data_provider_chromeos_unittest.cc", | 179 "wifi_data_provider_chromeos_unittest.cc", |
177 "wifi_data_provider_common_unittest.cc", | 180 "wifi_data_provider_common_unittest.cc", |
178 "wifi_data_provider_linux_unittest.cc", | 181 "wifi_data_provider_linux_unittest.cc", |
179 "wifi_data_provider_win_unittest.cc", | 182 "wifi_data_provider_win_unittest.cc", |
180 ] | 183 ] |
181 public_deps = [ | 184 public_deps = [ |
182 ":device_geolocation", | 185 ":device_geolocation", |
183 ] | 186 ] |
184 deps = [ | 187 deps = [ |
185 ":test_support", | 188 ":test_support", |
(...skipping 18 matching lines...) Expand all Loading... |
204 } | 207 } |
205 | 208 |
206 if (is_android) { | 209 if (is_android) { |
207 sources -= [ | 210 sources -= [ |
208 "network_location_provider_unittest.cc", | 211 "network_location_provider_unittest.cc", |
209 "wifi_data_provider_common_unittest.cc", | 212 "wifi_data_provider_common_unittest.cc", |
210 ] | 213 ] |
211 deps += [ ":geolocation_java_test_support" ] | 214 deps += [ ":geolocation_java_test_support" ] |
212 } | 215 } |
213 } | 216 } |
OLD | NEW |