| 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/renderer/renderer.gni") | 7 import("//content/renderer/renderer.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 | 9 |
| 10 source_set("renderer") { | 10 source_set("renderer") { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 "//content/public/common:mojo_bindings", | 34 "//content/public/common:mojo_bindings", |
| 35 "//device/battery:mojo_bindings", | 35 "//device/battery:mojo_bindings", |
| 36 "//gin", | 36 "//gin", |
| 37 "//gpu", | 37 "//gpu", |
| 38 "//gpu/command_buffer/client:gles2_interface", | 38 "//gpu/command_buffer/client:gles2_interface", |
| 39 "//jingle:jingle_glue", | 39 "//jingle:jingle_glue", |
| 40 "//media", | 40 "//media", |
| 41 "//media/blink", | 41 "//media/blink", |
| 42 "//mojo/bindings/js", | 42 "//mojo/bindings/js", |
| 43 "//mojo/environment:chromium", | 43 "//mojo/environment:chromium", |
| 44 "//mojo/public/js/bindings", | 44 "//mojo/public/js", |
| 45 "//mojo/public/interfaces/application", | 45 "//mojo/public/interfaces/application", |
| 46 "//net", | 46 "//net", |
| 47 "//skia", | 47 "//skia", |
| 48 "//storage/common", | 48 "//storage/common", |
| 49 "//third_party/icu", | 49 "//third_party/icu", |
| 50 "//third_party/libjingle", | 50 "//third_party/libjingle", |
| 51 "//third_party/npapi", | 51 "//third_party/npapi", |
| 52 "//third_party/WebKit/public:blink", | 52 "//third_party/WebKit/public:blink", |
| 53 "//third_party/widevine/cdm:version_h", | 53 "//third_party/widevine/cdm:version_h", |
| 54 "//ui/accessibility", | 54 "//ui/accessibility", |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 191 | 191 |
| 192 if (enable_browser_cdms) { | 192 if (enable_browser_cdms) { |
| 193 sources += [ | 193 sources += [ |
| 194 "media/crypto/proxy_media_keys.cc", | 194 "media/crypto/proxy_media_keys.cc", |
| 195 "media/crypto/proxy_media_keys.h", | 195 "media/crypto/proxy_media_keys.h", |
| 196 "media/crypto/renderer_cdm_manager.cc", | 196 "media/crypto/renderer_cdm_manager.cc", |
| 197 "media/crypto/renderer_cdm_manager.h", | 197 "media/crypto/renderer_cdm_manager.h", |
| 198 ] | 198 ] |
| 199 } | 199 } |
| 200 } | 200 } |
| OLD | NEW |