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 | 6 |
7 # See //content/BUILD.gn for how this works. | 7 # See //content/BUILD.gn for how this works. |
8 group("renderer") { | 8 group("renderer") { |
9 if (is_component_build) { | 9 if (is_component_build) { |
10 public_deps = [ | 10 public_deps = [ |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 "//content/public/common:common_sources", | 71 "//content/public/common:common_sources", |
72 "//content/renderer", | 72 "//content/renderer", |
73 "//gin", | 73 "//gin", |
74 "//media", | 74 "//media", |
75 "//media/gpu/ipc/client", | 75 "//media/gpu/ipc/client", |
76 "//net", | 76 "//net", |
77 "//ppapi/c", | 77 "//ppapi/c", |
78 "//skia", | 78 "//skia", |
79 "//third_party/WebKit/public:blink_headers", | 79 "//third_party/WebKit/public:blink_headers", |
80 "//third_party/libjingle", | 80 "//third_party/libjingle", |
81 "//third_party/widevine/cdm:version_h", | 81 "//third_party/widevine/cdm:headers", |
82 "//ui/base", | 82 "//ui/base", |
83 "//ui/base/ime", | 83 "//ui/base/ime", |
84 "//ui/gfx", | 84 "//ui/gfx", |
85 "//v8", | 85 "//v8", |
86 ] | 86 ] |
87 | 87 |
88 allow_circular_includes_from = [ | 88 allow_circular_includes_from = [ |
89 # This target is a pair with content/renderer. They always go together and | 89 # This target is a pair with content/renderer. They always go together and |
90 # include headers from each other. | 90 # include headers from each other. |
91 "//content/renderer", | 91 "//content/renderer", |
(...skipping 17 matching lines...) Expand all Loading... |
109 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 109 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
110 "//content/public/common:features", | 110 "//content/public/common:features", |
111 "//third_party/webrtc", | 111 "//third_party/webrtc", |
112 ] | 112 ] |
113 } | 113 } |
114 | 114 |
115 if (enable_plugins) { | 115 if (enable_plugins) { |
116 sources += [ "plugin_instance_throttler.h" ] | 116 sources += [ "plugin_instance_throttler.h" ] |
117 } | 117 } |
118 } | 118 } |
OLD | NEW |