| 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 18 matching lines...) Expand all Loading... |
| 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_impl.cc", |
| 35 "location_arbitrator_impl.h", | 35 "location_arbitrator_impl.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", | |
| 40 "location_provider_base.h", | |
| 41 "network_location_provider.cc", | 39 "network_location_provider.cc", |
| 42 "network_location_provider.h", | 40 "network_location_provider.h", |
| 43 "network_location_request.cc", | 41 "network_location_request.cc", |
| 44 "network_location_request.h", | 42 "network_location_request.h", |
| 45 "wifi_data.cc", | 43 "wifi_data.cc", |
| 46 "wifi_data.h", | 44 "wifi_data.h", |
| 47 "wifi_data_provider.cc", | 45 "wifi_data_provider.cc", |
| 48 "wifi_data_provider.h", | 46 "wifi_data_provider.h", |
| 49 "wifi_data_provider_chromeos.cc", | 47 "wifi_data_provider_chromeos.cc", |
| 50 "wifi_data_provider_chromeos.h", | 48 "wifi_data_provider_chromeos.h", |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 } | 202 } |
| 205 | 203 |
| 206 if (is_android) { | 204 if (is_android) { |
| 207 sources -= [ | 205 sources -= [ |
| 208 "network_location_provider_unittest.cc", | 206 "network_location_provider_unittest.cc", |
| 209 "wifi_data_provider_common_unittest.cc", | 207 "wifi_data_provider_common_unittest.cc", |
| 210 ] | 208 ] |
| 211 deps += [ ":geolocation_java_test_support" ] | 209 deps += [ ":geolocation_java_test_support" ] |
| 212 } | 210 } |
| 213 } | 211 } |
| OLD | NEW |