Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(99)

Side by Side Diff: device/geolocation/BUILD.gn

Issue 2161223003: Adds GeolocationFeature for Blimp Geolocation project. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@engine_feature_prep
Patch Set: Makes UnexpectedMessage test work outside of debug Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
146 ] 146 ]
147 } 147 }
148 } 148 }
149 149
150 source_set("unittests") { 150 source_set("unittests") {
151 testonly = true 151 testonly = true
152 152
153 sources = [ 153 sources = [
154 "fake_access_token_store.cc", 154 "fake_access_token_store.cc",
155 "fake_access_token_store.h", 155 "fake_access_token_store.h",
156 "fake_location_provider.cc",
157 "fake_location_provider.h",
156 "geolocation_provider_impl_unittest.cc", 158 "geolocation_provider_impl_unittest.cc",
157 "location_arbitrator_impl_unittest.cc", 159 "location_arbitrator_impl_unittest.cc",
158 "mock_location_arbitrator.cc", 160 "mock_location_arbitrator.cc",
159 "mock_location_arbitrator.h", 161 "mock_location_arbitrator.h",
160 "mock_location_provider.cc", 162 "mock_location_provider.cc",
161 "mock_location_provider.h", 163 "mock_location_provider.h",
162 "network_location_provider_unittest.cc", 164 "network_location_provider_unittest.cc",
163 "wifi_data_provider_chromeos_unittest.cc", 165 "wifi_data_provider_chromeos_unittest.cc",
164 "wifi_data_provider_common_unittest.cc", 166 "wifi_data_provider_common_unittest.cc",
165 "wifi_data_provider_linux_unittest.cc", 167 "wifi_data_provider_linux_unittest.cc",
(...skipping 24 matching lines...) Expand all
190 } 192 }
191 193
192 if (is_android) { 194 if (is_android) {
193 sources -= [ 195 sources -= [
194 "network_location_provider_unittest.cc", 196 "network_location_provider_unittest.cc",
195 "wifi_data_provider_common_unittest.cc", 197 "wifi_data_provider_common_unittest.cc",
196 ] 198 ]
197 deps += [ ":geolocation_java_test_support" ] 199 deps += [ ":geolocation_java_test_support" ]
198 } 200 }
199 } 201 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698