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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 'browser/geolocation/geolocation.cc', | 411 'browser/geolocation/geolocation.cc', |
412 'browser/geolocation/geolocation_dispatcher_host.cc', | 412 'browser/geolocation/geolocation_dispatcher_host.cc', |
413 'browser/geolocation/geolocation_dispatcher_host.h', | 413 'browser/geolocation/geolocation_dispatcher_host.h', |
414 'browser/geolocation/geolocation_observer.h', | 414 'browser/geolocation/geolocation_observer.h', |
415 'browser/geolocation/geolocation_provider.cc', | 415 'browser/geolocation/geolocation_provider.cc', |
416 'browser/geolocation/geolocation_provider.h', | 416 'browser/geolocation/geolocation_provider.h', |
417 'browser/geolocation/gps_location_provider_linux.cc', | 417 'browser/geolocation/gps_location_provider_linux.cc', |
418 'browser/geolocation/gps_location_provider_linux.h', | 418 'browser/geolocation/gps_location_provider_linux.h', |
419 'browser/geolocation/location_api_adapter_android.cc', | 419 'browser/geolocation/location_api_adapter_android.cc', |
420 'browser/geolocation/location_api_adapter_android.h', | 420 'browser/geolocation/location_api_adapter_android.h', |
421 'browser/geolocation/location_arbitrator.cc', | |
422 'browser/geolocation/location_arbitrator.h', | 421 'browser/geolocation/location_arbitrator.h', |
| 422 'browser/geolocation/location_arbitrator_impl.cc', |
| 423 'browser/geolocation/location_arbitrator_impl.h', |
423 'browser/geolocation/location_provider_android.cc', | 424 'browser/geolocation/location_provider_android.cc', |
424 'browser/geolocation/location_provider_android.h', | 425 'browser/geolocation/location_provider_android.h', |
425 'browser/geolocation/location_provider.cc', | 426 'browser/geolocation/location_provider.cc', |
426 'browser/geolocation/location_provider.h', | 427 'browser/geolocation/location_provider.h', |
427 'browser/geolocation/network_location_provider.cc', | 428 'browser/geolocation/network_location_provider.cc', |
428 'browser/geolocation/network_location_provider.h', | 429 'browser/geolocation/network_location_provider.h', |
429 'browser/geolocation/network_location_request.cc', | 430 'browser/geolocation/network_location_request.cc', |
430 'browser/geolocation/network_location_request.h', | 431 'browser/geolocation/network_location_request.h', |
431 'browser/geolocation/osx_wifi.h', | 432 'browser/geolocation/osx_wifi.h', |
432 'browser/geolocation/wifi_data_provider_common.cc', | 433 'browser/geolocation/wifi_data_provider_common.cc', |
(...skipping 702 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1135 # the USE_LIBGPS setting propagates to the "real" dependent target, | 1136 # the USE_LIBGPS setting propagates to the "real" dependent target, |
1136 # we use all_dependent_settings here. | 1137 # we use all_dependent_settings here. |
1137 'all_dependent_settings': { | 1138 'all_dependent_settings': { |
1138 'defines': [ | 1139 'defines': [ |
1139 'USE_LIBGPS', | 1140 'USE_LIBGPS', |
1140 ], | 1141 ], |
1141 }, | 1142 }, |
1142 }], | 1143 }], |
1143 ], | 1144 ], |
1144 } | 1145 } |
OLD | NEW |