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 21 matching lines...) Expand all Loading... |
32 "//third_party/libjingle", | 32 "//third_party/libjingle", |
33 "//third_party/WebKit/public:blink_headers", | 33 "//third_party/WebKit/public:blink_headers", |
34 "//third_party/widevine/cdm:version_h", | 34 "//third_party/widevine/cdm:version_h", |
35 "//ui/gfx", | 35 "//ui/gfx", |
36 "//v8", | 36 "//v8", |
37 ] | 37 ] |
38 | 38 |
39 allow_circular_includes_from = [ | 39 allow_circular_includes_from = [ |
40 # This target is a pair with content/renderer. They always go together and | 40 # This target is a pair with content/renderer. They always go together and |
41 # include headers from each other. | 41 # include headers from each other. |
42 # TODO(brettw) enable this when this permits non-dependent targets. | 42 "//content/renderer", |
43 #"//content/renderer", | |
44 ] | 43 ] |
45 | 44 |
46 if (enable_webrtc) { | 45 if (enable_webrtc) { |
47 sources += rebase_path( | 46 sources += rebase_path( |
48 content_renderer_gypi_values.public_renderer_webrtc_sources, | 47 content_renderer_gypi_values.public_renderer_webrtc_sources, |
49 ".", "//content") | 48 ".", "//content") |
50 } | 49 } |
51 } | 50 } |
OLD | NEW |