OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['chromeos==1', { | 8 ['chromeos==1', { |
9 'use_libgps%': 1, | 9 'use_libgps%': 1, |
10 }, { # chromeos==0 | 10 }, { # chromeos==0 |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
415 'browser/geolocation/geolocation.cc', | 415 'browser/geolocation/geolocation.cc', |
416 'browser/geolocation/geolocation_dispatcher_host.cc', | 416 'browser/geolocation/geolocation_dispatcher_host.cc', |
417 'browser/geolocation/geolocation_dispatcher_host.h', | 417 'browser/geolocation/geolocation_dispatcher_host.h', |
418 'browser/geolocation/geolocation_observer.h', | 418 'browser/geolocation/geolocation_observer.h', |
419 'browser/geolocation/geolocation_provider.cc', | 419 'browser/geolocation/geolocation_provider.cc', |
420 'browser/geolocation/geolocation_provider.h', | 420 'browser/geolocation/geolocation_provider.h', |
421 'browser/geolocation/gps_location_provider_linux.cc', | 421 'browser/geolocation/gps_location_provider_linux.cc', |
422 'browser/geolocation/gps_location_provider_linux.h', | 422 'browser/geolocation/gps_location_provider_linux.h', |
423 'browser/geolocation/location_api_adapter_android.cc', | 423 'browser/geolocation/location_api_adapter_android.cc', |
424 'browser/geolocation/location_api_adapter_android.h', | 424 'browser/geolocation/location_api_adapter_android.h', |
425 'browser/geolocation/location_arbitrator.cc', | |
426 'browser/geolocation/location_arbitrator.h', | 425 'browser/geolocation/location_arbitrator.h', |
| 426 'browser/geolocation/location_arbitrator_impl.cc', |
| 427 'browser/geolocation/location_arbitrator_impl.h', |
427 'browser/geolocation/location_provider_android.cc', | 428 'browser/geolocation/location_provider_android.cc', |
428 'browser/geolocation/location_provider_android.h', | 429 'browser/geolocation/location_provider_android.h', |
429 'browser/geolocation/location_provider.cc', | 430 'browser/geolocation/location_provider.cc', |
430 'browser/geolocation/location_provider.h', | 431 'browser/geolocation/location_provider.h', |
431 'browser/geolocation/network_location_provider.cc', | 432 'browser/geolocation/network_location_provider.cc', |
432 'browser/geolocation/network_location_provider.h', | 433 'browser/geolocation/network_location_provider.h', |
433 'browser/geolocation/network_location_request.cc', | 434 'browser/geolocation/network_location_request.cc', |
434 'browser/geolocation/network_location_request.h', | 435 'browser/geolocation/network_location_request.h', |
435 'browser/geolocation/osx_wifi.h', | 436 'browser/geolocation/osx_wifi.h', |
436 'browser/geolocation/wifi_data_provider_common.cc', | 437 'browser/geolocation/wifi_data_provider_common.cc', |
(...skipping 708 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1145 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1146 # the USE_LIBGPS setting propagates to the "real" dependent target, |
1146 # we use all_dependent_settings here. | 1147 # we use all_dependent_settings here. |
1147 'all_dependent_settings': { | 1148 'all_dependent_settings': { |
1148 'defines': [ | 1149 'defines': [ |
1149 'USE_LIBGPS', | 1150 'USE_LIBGPS', |
1150 ], | 1151 ], |
1151 }, | 1152 }, |
1152 }], | 1153 }], |
1153 ], | 1154 ], |
1154 } | 1155 } |
OLD | NEW |