| 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 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("browser") { | 10 source_set("browser") { |
| (...skipping 499 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 510 } | 510 } |
| 511 | 511 |
| 512 if (is_linux && use_dbus) { | 512 if (is_linux && use_dbus) { |
| 513 deps += [ "//dbus" ] | 513 deps += [ "//dbus" ] |
| 514 } | 514 } |
| 515 | 515 |
| 516 if (enable_browser_cdms) { | 516 if (enable_browser_cdms) { |
| 517 sources += [ | 517 sources += [ |
| 518 "media/cdm/browser_cdm_manager.cc", | 518 "media/cdm/browser_cdm_manager.cc", |
| 519 "media/cdm/browser_cdm_manager.h", | 519 "media/cdm/browser_cdm_manager.h", |
| 520 "media/media_web_contents_observer.cc", | |
| 521 "media/media_web_contents_observer.h", | |
| 522 ] | 520 ] |
| 523 } | 521 } |
| 524 | 522 |
| 525 if (is_linux) { | 523 if (is_linux) { |
| 526 deps += [ "//third_party/boringssl" ] | 524 deps += [ "//third_party/boringssl" ] |
| 527 } | 525 } |
| 528 | 526 |
| 529 if (enable_mojo_media != "none") { | 527 if (enable_mojo_media != "none") { |
| 530 configs += [ "//media/mojo/services:enable_mojo_media_config" ] | 528 configs += [ "//media/mojo/services:enable_mojo_media_config" ] |
| 531 } | 529 } |
| (...skipping 14 matching lines...) Expand all Loading... |
| 546 | 544 |
| 547 if (enable_webvr && is_android) { | 545 if (enable_webvr && is_android) { |
| 548 sources += [ | 546 sources += [ |
| 549 "vr/android/cardboard/cardboard_vr_device.cc", | 547 "vr/android/cardboard/cardboard_vr_device.cc", |
| 550 "vr/android/cardboard/cardboard_vr_device.h", | 548 "vr/android/cardboard/cardboard_vr_device.h", |
| 551 "vr/android/cardboard/cardboard_vr_device_provider.cc", | 549 "vr/android/cardboard/cardboard_vr_device_provider.cc", |
| 552 "vr/android/cardboard/cardboard_vr_device_provider.h", | 550 "vr/android/cardboard/cardboard_vr_device_provider.h", |
| 553 ] | 551 ] |
| 554 } | 552 } |
| 555 } | 553 } |
| OLD | NEW |