| 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.h", | |
| 35 "location_arbitrator_impl.cc", | 34 "location_arbitrator_impl.cc", |
| 36 "location_arbitrator_impl.h", | 35 "location_arbitrator_impl.h", |
| 37 "location_provider.h", | 36 "location_provider.h", |
| 38 "location_provider_android.cc", | 37 "location_provider_android.cc", |
| 39 "location_provider_android.h", | 38 "location_provider_android.h", |
| 40 "location_provider_base.cc", | 39 "location_provider_base.cc", |
| 41 "location_provider_base.h", | 40 "location_provider_base.h", |
| 42 "network_location_provider.cc", | 41 "network_location_provider.cc", |
| 43 "network_location_provider.h", | 42 "network_location_provider.h", |
| 44 "network_location_request.cc", | 43 "network_location_request.cc", |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 } | 147 } |
| 149 | 148 |
| 150 source_set("unittests") { | 149 source_set("unittests") { |
| 151 testonly = true | 150 testonly = true |
| 152 | 151 |
| 153 sources = [ | 152 sources = [ |
| 154 "fake_access_token_store.cc", | 153 "fake_access_token_store.cc", |
| 155 "fake_access_token_store.h", | 154 "fake_access_token_store.h", |
| 156 "geolocation_provider_impl_unittest.cc", | 155 "geolocation_provider_impl_unittest.cc", |
| 157 "location_arbitrator_impl_unittest.cc", | 156 "location_arbitrator_impl_unittest.cc", |
| 158 "mock_location_arbitrator.cc", | |
| 159 "mock_location_arbitrator.h", | |
| 160 "mock_location_provider.cc", | 157 "mock_location_provider.cc", |
| 161 "mock_location_provider.h", | 158 "mock_location_provider.h", |
| 162 "network_location_provider_unittest.cc", | 159 "network_location_provider_unittest.cc", |
| 163 "wifi_data_provider_chromeos_unittest.cc", | 160 "wifi_data_provider_chromeos_unittest.cc", |
| 164 "wifi_data_provider_common_unittest.cc", | 161 "wifi_data_provider_common_unittest.cc", |
| 165 "wifi_data_provider_linux_unittest.cc", | 162 "wifi_data_provider_linux_unittest.cc", |
| 166 "wifi_data_provider_win_unittest.cc", | 163 "wifi_data_provider_win_unittest.cc", |
| 167 ] | 164 ] |
| 168 public_deps = [ | 165 public_deps = [ |
| 169 ":device_geolocation", | 166 ":device_geolocation", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 190 } | 187 } |
| 191 | 188 |
| 192 if (is_android) { | 189 if (is_android) { |
| 193 sources -= [ | 190 sources -= [ |
| 194 "network_location_provider_unittest.cc", | 191 "network_location_provider_unittest.cc", |
| 195 "wifi_data_provider_common_unittest.cc", | 192 "wifi_data_provider_common_unittest.cc", |
| 196 ] | 193 ] |
| 197 deps += [ ":geolocation_java_test_support" ] | 194 deps += [ ":geolocation_java_test_support" ] |
| 198 } | 195 } |
| 199 } | 196 } |
| OLD | NEW |