| Index: content/browser/BUILD.gn
 | 
| diff --git a/content/browser/BUILD.gn b/content/browser/BUILD.gn
 | 
| index 88f7fd748a697a10a689980df81e9ebff55ba63e..8819aa32b49115e622911b4f2297831d6d8768be 100644
 | 
| --- a/content/browser/BUILD.gn
 | 
| +++ b/content/browser/BUILD.gn
 | 
| @@ -5,6 +5,7 @@
 | 
|  import("//build/config/features.gni")
 | 
|  import("//build/config/ui.gni")
 | 
|  import("//content/browser/browser.gni")
 | 
| +import("//media/media_options.gni")
 | 
|  
 | 
|  source_set("browser") {
 | 
|    # Only the public target should depend on this. All other targets (even
 | 
| @@ -408,4 +409,13 @@ source_set("browser") {
 | 
|    if (is_linux && use_dbus) {
 | 
|        deps += [ "//dbus" ]
 | 
|    }
 | 
| +
 | 
| +  if (enable_browser_cdms) {
 | 
| +    sources += [
 | 
| +      "media/cdm/browser_cdm_manager.cc",
 | 
| +      "media/cdm/browser_cdm_manager.h",
 | 
| +      "media/media_web_contents_observer.cc",
 | 
| +      "media/media_web_contents_observer.h",
 | 
| +    ]
 | 
| +  }
 | 
|  }
 | 
| 
 |