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("//content/renderer/renderer.gni") | 6 import("//content/renderer/renderer.gni") |
7 | 7 |
8 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
9 group("renderer") { | 9 group("renderer") { |
10 if (is_component_build) { | 10 if (is_component_build) { |
(...skipping 13 matching lines...) Expand all Loading... |
24 sources = rebase_path(content_renderer_gypi_values.public_renderer_sources, | 24 sources = rebase_path(content_renderer_gypi_values.public_renderer_sources, |
25 ".", | 25 ".", |
26 "//content") | 26 "//content") |
27 | 27 |
28 configs += [ "//content:content_implementation" ] | 28 configs += [ "//content:content_implementation" ] |
29 | 29 |
30 deps = [ | 30 deps = [ |
31 "//content/public/common:common_sources", | 31 "//content/public/common:common_sources", |
32 "//content/renderer", | 32 "//content/renderer", |
33 "//skia", | 33 "//skia", |
| 34 "//third_party/WebKit/public:blink_headers", |
34 "//third_party/libjingle", | 35 "//third_party/libjingle", |
35 "//third_party/WebKit/public:blink_headers", | |
36 "//third_party/widevine/cdm:version_h", | 36 "//third_party/widevine/cdm:version_h", |
37 "//ui/gfx", | 37 "//ui/gfx", |
38 "//v8", | 38 "//v8", |
39 ] | 39 ] |
40 | 40 |
41 allow_circular_includes_from = [ | 41 allow_circular_includes_from = [ |
42 # This target is a pair with content/renderer. They always go together and | 42 # This target is a pair with content/renderer. They always go together and |
43 # include headers from each other. | 43 # include headers from each other. |
44 "//content/renderer", | 44 "//content/renderer", |
45 ] | 45 ] |
46 | 46 |
47 if (enable_webrtc) { | 47 if (enable_webrtc) { |
48 sources += | 48 sources += |
49 rebase_path(content_renderer_gypi_values.public_renderer_webrtc_sources, | 49 rebase_path(content_renderer_gypi_values.public_renderer_webrtc_sources, |
50 ".", | 50 ".", |
51 "//content") | 51 "//content") |
52 deps += [ "//third_party/webrtc" ] | 52 deps += [ "//third_party/webrtc" ] |
53 } | 53 } |
54 | 54 |
55 if (enable_plugins) { | 55 if (enable_plugins) { |
56 sources += | 56 sources += |
57 rebase_path(content_renderer_gypi_values.public_renderer_plugin_sources, | 57 rebase_path(content_renderer_gypi_values.public_renderer_plugin_sources, |
58 ".", | 58 ".", |
59 "//content") | 59 "//content") |
60 } | 60 } |
61 } | 61 } |
OLD | NEW |