OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//content/browser/browser.gni") | 7 import("//content/browser/browser.gni") |
8 | 8 |
9 config("storage_config") { | 9 config("storage_config") { |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
393 if (enable_web_speech) { | 393 if (enable_web_speech) { |
394 deps += [ | 394 deps += [ |
395 "//third_party/flac", | 395 "//third_party/flac", |
396 "//third_party/speex", | 396 "//third_party/speex", |
397 ] | 397 ] |
398 } | 398 } |
399 | 399 |
400 if (is_linux) { | 400 if (is_linux) { |
401 if (use_dbus) { | 401 if (use_dbus) { |
402 sources -= [ | 402 sources -= [ |
| 403 "battery_status/battery_status_manager_default.cc", |
403 "geolocation/empty_wifi_data_provider.cc", | 404 "geolocation/empty_wifi_data_provider.cc", |
404 ] | 405 ] |
405 deps += [ "//dbus" ] | 406 deps += [ "//dbus" ] |
406 } else { | 407 } else { |
407 # This will already have gotten removed for all non-Linux cases. | 408 # This will already have gotten removed for all non-Linux cases. |
408 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 409 sources -= [ |
| 410 "battery_status/battery_status_manager_linux.cc", |
| 411 "geolocation/wifi_data_provider_linux.cc", |
| 412 ] |
409 } | 413 } |
410 } | 414 } |
411 } | 415 } |
OLD | NEW |