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 "wifi_data.cc", | 45 "wifi_data.cc", |
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 "//testing/gmock", | 164 "//testing/gmock", |
165 "//testing/gtest", | 165 "//testing/gtest", |
166 ] | 166 ] |
167 } | 167 } |
168 | 168 |
169 source_set("unittests") { | 169 source_set("unittests") { |
170 testonly = true | 170 testonly = true |
171 | 171 |
172 sources = [ | 172 sources = [ |
173 "geolocation_provider_impl_unittest.cc", | 173 "geolocation_provider_impl_unittest.cc", |
174 "location_arbitrator_impl_unittest.cc", | 174 "location_arbitrator_unittest.cc", |
175 "network_location_provider_unittest.cc", | 175 "network_location_provider_unittest.cc", |
176 "wifi_data_provider_chromeos_unittest.cc", | 176 "wifi_data_provider_chromeos_unittest.cc", |
177 "wifi_data_provider_common_unittest.cc", | 177 "wifi_data_provider_common_unittest.cc", |
178 "wifi_data_provider_linux_unittest.cc", | 178 "wifi_data_provider_linux_unittest.cc", |
179 "wifi_data_provider_win_unittest.cc", | 179 "wifi_data_provider_win_unittest.cc", |
180 ] | 180 ] |
181 public_deps = [ | 181 public_deps = [ |
182 ":device_geolocation", | 182 ":device_geolocation", |
183 ] | 183 ] |
184 deps = [ | 184 deps = [ |
(...skipping 19 matching lines...) Expand all Loading... |
204 } | 204 } |
205 | 205 |
206 if (is_android) { | 206 if (is_android) { |
207 sources -= [ | 207 sources -= [ |
208 "network_location_provider_unittest.cc", | 208 "network_location_provider_unittest.cc", |
209 "wifi_data_provider_common_unittest.cc", | 209 "wifi_data_provider_common_unittest.cc", |
210 ] | 210 ] |
211 deps += [ ":geolocation_java_test_support" ] | 211 deps += [ ":geolocation_java_test_support" ] |
212 } | 212 } |
213 } | 213 } |
OLD | NEW |