| 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. |
| 11 visibility = [ "//content/*" ] | 11 visibility = [ "//content/*" ] |
| 12 | 12 |
| 13 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, | 13 sources = rebase_path(content_renderer_gypi_values.private_renderer_sources, |
| 14 ".", "//content") | 14 ".", "//content") |
| 15 | 15 |
| 16 configs += [ | 16 configs += [ |
| 17 "//content:content_implementation", | 17 "//content:content_implementation", |
| 18 ] | 18 ] |
| 19 | 19 |
| 20 deps = [ | 20 deps = [ |
| 21 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but | 21 # TODO(GYP) bug 376846 remove this. This should be inherited from //net but |
| 22 # those don't cross component boundaries. | 22 # those don't cross component boundaries. |
| 23 "//crypto:platform", | 23 "//crypto:platform", |
| 24 | 24 |
| 25 "//base/allocator", | 25 "//base/allocator", |
| 26 "//cc/blink", | 26 "//cc/blink", |
| 27 "//content:resources", | 27 "//content:resources", |
| 28 "//content/public/child", |
| 28 "//content/common:mojo_bindings", | 29 "//content/common:mojo_bindings", |
| 29 "//gin", | 30 "//gin", |
| 31 "//gpu", |
| 30 "//jingle:jingle_glue", | 32 "//jingle:jingle_glue", |
| 31 "//media", | 33 "//media", |
| 32 "//media/blink", | 34 "//media/blink", |
| 33 "//mojo/bindings/js", | 35 "//mojo/bindings/js", |
| 34 "//mojo/environment:chromium", | 36 "//mojo/environment:chromium", |
| 35 "//mojo/public/js/bindings", | 37 "//mojo/public/js/bindings", |
| 36 "//mojo/public/interfaces/application", | 38 "//mojo/public/interfaces/application", |
| 37 "//net", | 39 "//net", |
| 38 "//skia", | 40 "//skia", |
| 39 "//storage/common", | 41 "//storage/common", |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 "media/crypto/pepper_cdm_wrapper_impl.h", | 173 "media/crypto/pepper_cdm_wrapper_impl.h", |
| 172 "media/crypto/ppapi_decryptor.cc", | 174 "media/crypto/ppapi_decryptor.cc", |
| 173 "media/crypto/ppapi_decryptor.h", | 175 "media/crypto/ppapi_decryptor.h", |
| 174 ] | 176 ] |
| 175 } | 177 } |
| 176 | 178 |
| 177 if (printing_mode == 1) { | 179 if (printing_mode == 1) { |
| 178 deps += [ "//printing" ] | 180 deps += [ "//printing" ] |
| 179 } | 181 } |
| 180 } | 182 } |
| OLD | NEW |