| 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 20 matching lines...) Expand all Loading... |
| 31 "//content/public/common:common_sources", | 31 "//content/public/common:common_sources", |
| 32 "//content/public/common:mojo_bindings", | 32 "//content/public/common:mojo_bindings", |
| 33 "//device/battery:mojo_bindings", | 33 "//device/battery:mojo_bindings", |
| 34 "//device/vibration:mojo_bindings", | 34 "//device/vibration:mojo_bindings", |
| 35 "//gin", | 35 "//gin", |
| 36 "//gpu", | 36 "//gpu", |
| 37 "//gpu/command_buffer/client:gles2_interface", | 37 "//gpu/command_buffer/client:gles2_interface", |
| 38 "//jingle:jingle_glue", | 38 "//jingle:jingle_glue", |
| 39 "//media", | 39 "//media", |
| 40 "//media/blink", | 40 "//media/blink", |
| 41 "//mojo/edk/js", | |
| 42 "//mojo/environment:chromium", | 41 "//mojo/environment:chromium", |
| 43 "//mojo/public/js", | |
| 44 "//mojo/public/interfaces/application", | |
| 45 "//net", | 42 "//net", |
| 46 "//skia", | 43 "//skia", |
| 47 "//storage/common", | 44 "//storage/common", |
| 48 "//third_party/icu", | 45 "//third_party/icu", |
| 49 "//third_party/libjingle", | 46 "//third_party/libjingle", |
| 47 "//third_party/mojo/src/mojo/edk/js", |
| 48 "//third_party/mojo/src/mojo/public/js", |
| 49 "//third_party/mojo/src/mojo/public/interfaces/application", |
| 50 "//third_party/npapi", | 50 "//third_party/npapi", |
| 51 "//third_party/WebKit/public:blink", | 51 "//third_party/WebKit/public:blink", |
| 52 "//third_party/widevine/cdm:version_h", | 52 "//third_party/widevine/cdm:version_h", |
| 53 "//ui/accessibility", | 53 "//ui/accessibility", |
| 54 "//ui/base", | 54 "//ui/base", |
| 55 "//ui/events:events_base", | 55 "//ui/events:events_base", |
| 56 "//ui/events:dom4_keycode_converter", | 56 "//ui/events:dom4_keycode_converter", |
| 57 "//ui/gl", | 57 "//ui/gl", |
| 58 "//ui/native_theme", | 58 "//ui/native_theme", |
| 59 "//ui/surface", | 59 "//ui/surface", |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 | 181 |
| 182 if (enable_browser_cdms) { | 182 if (enable_browser_cdms) { |
| 183 sources += [ | 183 sources += [ |
| 184 "media/crypto/proxy_media_keys.cc", | 184 "media/crypto/proxy_media_keys.cc", |
| 185 "media/crypto/proxy_media_keys.h", | 185 "media/crypto/proxy_media_keys.h", |
| 186 "media/crypto/renderer_cdm_manager.cc", | 186 "media/crypto/renderer_cdm_manager.cc", |
| 187 "media/crypto/renderer_cdm_manager.h", | 187 "media/crypto/renderer_cdm_manager.h", |
| 188 ] | 188 ] |
| 189 } | 189 } |
| 190 } | 190 } |
| OLD | NEW |