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

Side by Side Diff: content/browser/BUILD.gn

Issue 356963003: Introduce enable_web_speech to replace with input_speech (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build error Created 6 years, 5 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
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/content_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « chrome/chrome_tests_unit.gypi ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698