| 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 | 8 |
| 9 source_set("renderer") { | 9 source_set("renderer") { |
| 10 # Only targets in the content tree can depend directly on this target. | 10 # Only targets in the content tree can depend directly on this target. |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but | 22 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but |
| 23 # those don't cross component boundaries. | 23 # those don't cross component boundaries. |
| 24 "//crypto:platform", | 24 "//crypto:platform", |
| 25 | 25 |
| 26 "//base/allocator", | 26 "//base/allocator", |
| 27 "//content:resources", | 27 "//content:resources", |
| 28 "//content/common:mojo_bindings", | 28 "//content/common:mojo_bindings", |
| 29 "//gin", | 29 "//gin", |
| 30 "//mojo/environment:chromium", | 30 "//mojo/environment:chromium", |
| 31 "//mojo/public/js/bindings", | 31 "//mojo/public/js/bindings", |
| 32 "//mojo/public/interfaces/interface_provider", | 32 "//mojo/public/interfaces/service_provider", |
| 33 "//net", | 33 "//net", |
| 34 "//skia", | 34 "//skia", |
| 35 "//third_party/icu", | 35 "//third_party/icu", |
| 36 "//third_party/npapi", | 36 "//third_party/npapi", |
| 37 "//third_party/WebKit/public:blink_headers", | 37 "//third_party/WebKit/public:blink_headers", |
| 38 "//third_party/widevine/cdm:version_h", | 38 "//third_party/widevine/cdm:version_h", |
| 39 "//ui/accessibility", | 39 "//ui/accessibility", |
| 40 "//ui/events:dom4_keycode_converter", | 40 "//ui/events:dom4_keycode_converter", |
| 41 "//ui/native_theme", | 41 "//ui/native_theme", |
| 42 "//ui/surface", | 42 "//ui/surface", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 ".", "//content") | 169 ".", "//content") |
| 170 } | 170 } |
| 171 | 171 |
| 172 if (!enable_pepper_cdms) { | 172 if (!enable_pepper_cdms) { |
| 173 sources -= [ | 173 sources -= [ |
| 174 "renderer/media/crypto/ppapi_decryptor.cc", | 174 "renderer/media/crypto/ppapi_decryptor.cc", |
| 175 "renderer/media/crypto/ppapi_decryptor.h", | 175 "renderer/media/crypto/ppapi_decryptor.h", |
| 176 ] | 176 ] |
| 177 } | 177 } |
| 178 } | 178 } |
| OLD | NEW |