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 12 matching lines...) Expand all Loading... |
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 "//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 "//device/battery:mojo_bindings", |
33 "//gin", | 34 "//gin", |
34 "//gpu", | 35 "//gpu", |
35 "//gpu/command_buffer/client:gles2_interface", | 36 "//gpu/command_buffer/client:gles2_interface", |
36 "//jingle:jingle_glue", | 37 "//jingle:jingle_glue", |
37 "//media", | 38 "//media", |
38 "//media/blink", | 39 "//media/blink", |
39 "//mojo/bindings/js", | 40 "//mojo/bindings/js", |
40 "//mojo/environment:chromium", | 41 "//mojo/environment:chromium", |
41 "//mojo/public/js/bindings", | 42 "//mojo/public/js/bindings", |
42 "//mojo/public/interfaces/application", | 43 "//mojo/public/interfaces/application", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 "media/crypto/pepper_cdm_wrapper_impl.h", | 181 "media/crypto/pepper_cdm_wrapper_impl.h", |
181 "media/crypto/ppapi_decryptor.cc", | 182 "media/crypto/ppapi_decryptor.cc", |
182 "media/crypto/ppapi_decryptor.h", | 183 "media/crypto/ppapi_decryptor.h", |
183 ] | 184 ] |
184 } | 185 } |
185 | 186 |
186 if (printing_mode == 1) { | 187 if (printing_mode == 1) { |
187 deps += [ "//printing" ] | 188 deps += [ "//printing" ] |
188 } | 189 } |
189 } | 190 } |
OLD | NEW |