| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//content/browser/browser.gni") | 8 import("//content/browser/browser.gni") |
| 9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
| 10 | 10 |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 } | 464 } |
| 465 | 465 |
| 466 if (!is_ios) { | 466 if (!is_ios) { |
| 467 sources += [ | 467 sources += [ |
| 468 "compositor/surface_utils.cc", | 468 "compositor/surface_utils.cc", |
| 469 "compositor/surface_utils.h", | 469 "compositor/surface_utils.h", |
| 470 ] | 470 ] |
| 471 } | 471 } |
| 472 | 472 |
| 473 if (enable_web_speech) { | 473 if (enable_web_speech) { |
| 474 deps += [ | 474 deps += [ "//third_party/flac" ] |
| 475 "//third_party/flac", | |
| 476 "//third_party/speex", | |
| 477 ] | |
| 478 } | 475 } |
| 479 | 476 |
| 480 if (is_linux && use_dbus) { | 477 if (is_linux && use_dbus) { |
| 481 deps += [ "//dbus" ] | 478 deps += [ "//dbus" ] |
| 482 } | 479 } |
| 483 | 480 |
| 484 if (enable_browser_cdms) { | 481 if (enable_browser_cdms) { |
| 485 sources += [ | 482 sources += [ |
| 486 "media/cdm/browser_cdm_manager.cc", | 483 "media/cdm/browser_cdm_manager.cc", |
| 487 "media/cdm/browser_cdm_manager.h", | 484 "media/cdm/browser_cdm_manager.h", |
| (...skipping 13 matching lines...) Expand all Loading... |
| 501 if (enable_webvr) { | 498 if (enable_webvr) { |
| 502 sources += [ | 499 sources += [ |
| 503 "vr/vr_device.cc", | 500 "vr/vr_device.cc", |
| 504 "vr/vr_device.h", | 501 "vr/vr_device.h", |
| 505 "vr/vr_device_manager.cc", | 502 "vr/vr_device_manager.cc", |
| 506 "vr/vr_device_manager.h", | 503 "vr/vr_device_manager.h", |
| 507 "vr/vr_device_provider.h", | 504 "vr/vr_device_provider.h", |
| 508 ] | 505 ] |
| 509 } | 506 } |
| 510 } | 507 } |
| OLD | NEW |