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 15 matching lines...) Expand all Loading... |
26 | 26 |
27 "//base/allocator", | 27 "//base/allocator", |
28 "//cc", | 28 "//cc", |
29 "//cc/blink", | 29 "//cc/blink", |
30 "//content:resources", | 30 "//content:resources", |
31 "//content/common:mojo_bindings", | 31 "//content/common:mojo_bindings", |
32 "//content/public/child:child_sources", | 32 "//content/public/child:child_sources", |
33 "//content/public/common:common_sources", | 33 "//content/public/common:common_sources", |
34 "//content/public/common:mojo_bindings", | 34 "//content/public/common:mojo_bindings", |
35 "//device/battery:mojo_bindings", | 35 "//device/battery:mojo_bindings", |
| 36 "//device/vibration:mojo_bindings", |
36 "//gin", | 37 "//gin", |
37 "//gpu", | 38 "//gpu", |
38 "//gpu/command_buffer/client:gles2_interface", | 39 "//gpu/command_buffer/client:gles2_interface", |
39 "//jingle:jingle_glue", | 40 "//jingle:jingle_glue", |
40 "//media", | 41 "//media", |
41 "//media/blink", | 42 "//media/blink", |
42 "//mojo/edk/js", | 43 "//mojo/edk/js", |
43 "//mojo/environment:chromium", | 44 "//mojo/environment:chromium", |
44 "//mojo/public/js", | 45 "//mojo/public/js", |
45 "//mojo/public/interfaces/application", | 46 "//mojo/public/interfaces/application", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 | 184 |
184 if (enable_browser_cdms) { | 185 if (enable_browser_cdms) { |
185 sources += [ | 186 sources += [ |
186 "media/crypto/proxy_media_keys.cc", | 187 "media/crypto/proxy_media_keys.cc", |
187 "media/crypto/proxy_media_keys.h", | 188 "media/crypto/proxy_media_keys.h", |
188 "media/crypto/renderer_cdm_manager.cc", | 189 "media/crypto/renderer_cdm_manager.cc", |
189 "media/crypto/renderer_cdm_manager.h", | 190 "media/crypto/renderer_cdm_manager.h", |
190 ] | 191 ] |
191 } | 192 } |
192 } | 193 } |
OLD | NEW |