| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ] | 145 ] |
| 146 } | 146 } |
| 147 } | 147 } |
| 148 | 148 |
| 149 source_set("unittests") { | 149 source_set("unittests") { |
| 150 testonly = true | 150 testonly = true |
| 151 | 151 |
| 152 sources = [ | 152 sources = [ |
| 153 "fake_access_token_store.cc", | 153 "fake_access_token_store.cc", |
| 154 "fake_access_token_store.h", | 154 "fake_access_token_store.h", |
| 155 "fake_location_provider.cc", |
| 156 "fake_location_provider.h", |
| 155 "geolocation_provider_impl_unittest.cc", | 157 "geolocation_provider_impl_unittest.cc", |
| 156 "location_arbitrator_impl_unittest.cc", | 158 "location_arbitrator_impl_unittest.cc", |
| 157 "mock_location_provider.cc", | 159 "mock_location_provider.cc", |
| 158 "mock_location_provider.h", | 160 "mock_location_provider.h", |
| 159 "network_location_provider_unittest.cc", | 161 "network_location_provider_unittest.cc", |
| 160 "wifi_data_provider_chromeos_unittest.cc", | 162 "wifi_data_provider_chromeos_unittest.cc", |
| 161 "wifi_data_provider_common_unittest.cc", | 163 "wifi_data_provider_common_unittest.cc", |
| 162 "wifi_data_provider_linux_unittest.cc", | 164 "wifi_data_provider_linux_unittest.cc", |
| 163 "wifi_data_provider_win_unittest.cc", | 165 "wifi_data_provider_win_unittest.cc", |
| 164 ] | 166 ] |
| (...skipping 22 matching lines...) Expand all Loading... |
| 187 } | 189 } |
| 188 | 190 |
| 189 if (is_android) { | 191 if (is_android) { |
| 190 sources -= [ | 192 sources -= [ |
| 191 "network_location_provider_unittest.cc", | 193 "network_location_provider_unittest.cc", |
| 192 "wifi_data_provider_common_unittest.cc", | 194 "wifi_data_provider_common_unittest.cc", |
| 193 ] | 195 ] |
| 194 deps += [ ":geolocation_java_test_support" ] | 196 deps += [ ":geolocation_java_test_support" ] |
| 195 } | 197 } |
| 196 } | 198 } |
| OLD | NEW |