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 the public target should depend on this. All other targets (even | 10 # Only the public target should depend on this. All other targets (even |
(...skipping 14 matching lines...) Expand all Loading... |
25 | 25 |
26 "//base/allocator", | 26 "//base/allocator", |
27 "//cc", | 27 "//cc", |
28 "//cc/blink", | 28 "//cc/blink", |
29 "//content:resources", | 29 "//content:resources", |
30 "//content/common:mojo_bindings", | 30 "//content/common:mojo_bindings", |
31 "//content/public/child:child_sources", | 31 "//content/public/child:child_sources", |
32 "//content/public/common:common_sources", | 32 "//content/public/common:common_sources", |
33 "//gin", | 33 "//gin", |
34 "//gpu", | 34 "//gpu", |
| 35 "//gpu/command_buffer/client:gles2_interface", |
35 "//jingle:jingle_glue", | 36 "//jingle:jingle_glue", |
36 "//media", | 37 "//media", |
37 "//media/blink", | 38 "//media/blink", |
38 "//mojo/bindings/js", | 39 "//mojo/bindings/js", |
39 "//mojo/environment:chromium", | 40 "//mojo/environment:chromium", |
40 "//mojo/public/js/bindings", | 41 "//mojo/public/js/bindings", |
41 "//mojo/public/interfaces/application", | 42 "//mojo/public/interfaces/application", |
42 "//net", | 43 "//net", |
43 "//skia", | 44 "//skia", |
44 "//storage/common", | 45 "//storage/common", |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 "media/crypto/pepper_cdm_wrapper_impl.h", | 180 "media/crypto/pepper_cdm_wrapper_impl.h", |
180 "media/crypto/ppapi_decryptor.cc", | 181 "media/crypto/ppapi_decryptor.cc", |
181 "media/crypto/ppapi_decryptor.h", | 182 "media/crypto/ppapi_decryptor.h", |
182 ] | 183 ] |
183 } | 184 } |
184 | 185 |
185 if (printing_mode == 1) { | 186 if (printing_mode == 1) { |
186 deps += [ "//printing" ] | 187 deps += [ "//printing" ] |
187 } | 188 } |
188 } | 189 } |
OLD | NEW |