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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 ".", "//content") | 371 ".", "//content") |
372 if (!use_x11) { | 372 if (!use_x11) { |
373 sources -= [ | 373 sources -= [ |
374 "compositor/software_output_device_x11.cc", | 374 "compositor/software_output_device_x11.cc", |
375 "compositor/software_output_device_x11.h", | 375 "compositor/software_output_device_x11.h", |
376 ] | 376 ] |
377 } | 377 } |
378 deps += [ "//ui/compositor" ] | 378 deps += [ "//ui/compositor" ] |
379 } | 379 } |
380 | 380 |
381 if (enable_speech_input) { | 381 if (enable_web_speech) { |
382 deps += [ | 382 deps += [ |
383 "//third_party/flac", | 383 "//third_party/flac", |
384 "//third_party/speex", | 384 "//third_party/speex", |
385 ] | 385 ] |
386 } | 386 } |
387 | 387 |
388 if (is_linux) { | 388 if (is_linux) { |
389 if (use_dbus) { | 389 if (use_dbus) { |
390 sources -= [ | 390 sources -= [ |
391 "geolocation/empty_wifi_data_provider.cc", | 391 "geolocation/empty_wifi_data_provider.cc", |
392 ] | 392 ] |
393 deps += [ "//dbus" ] | 393 deps += [ "//dbus" ] |
394 } else { | 394 } else { |
395 # This will already have gotten removed for all non-Linux cases. | 395 # This will already have gotten removed for all non-Linux cases. |
396 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] | 396 sources -= [ "geolocation/wifi_data_provider_linux.cc" ] |
397 } | 397 } |
398 } | 398 } |
399 } | 399 } |
OLD | NEW |