| 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 "//content:libjingle_stub_config", | 18 "//content:libjingle_stub_config", |
| 19 ] | 19 ] |
| 20 | 20 |
| 21 deps = [ | 21 deps = [ |
| 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 "//cc/blink", |
| 27 "//content:resources", | 28 "//content:resources", |
| 28 "//content/common:mojo_bindings", | 29 "//content/common:mojo_bindings", |
| 29 "//gin", | 30 "//gin", |
| 30 "//jingle:jingle_glue", | 31 "//jingle:jingle_glue", |
| 31 "//media", | 32 "//media", |
| 32 "//mojo/bindings/js", | 33 "//mojo/bindings/js", |
| 33 "//mojo/environment:chromium", | 34 "//mojo/environment:chromium", |
| 34 "//mojo/public/js/bindings", | 35 "//mojo/public/js/bindings", |
| 35 "//mojo/public/interfaces/application", | 36 "//mojo/public/interfaces/application", |
| 36 "//net", | 37 "//net", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 if (enable_plugins && enable_webrtc) { | 164 if (enable_plugins && enable_webrtc) { |
| 164 sources += rebase_path( | 165 sources += rebase_path( |
| 165 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, | 166 content_renderer_gypi_values.private_renderer_plugin_webrtc_sources, |
| 166 ".", "//content") | 167 ".", "//content") |
| 167 } | 168 } |
| 168 | 169 |
| 169 if (printing_mode == 1) { | 170 if (printing_mode == 1) { |
| 170 deps += [ "//printing" ] | 171 deps += [ "//printing" ] |
| 171 } | 172 } |
| 172 } | 173 } |
| OLD | NEW |