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("//ppapi/features/features.gni") |
6 | 7 |
7 # See //content/BUILD.gn for how this works. | 8 # See //content/BUILD.gn for how this works. |
8 group("renderer") { | 9 group("renderer") { |
9 if (is_component_build) { | 10 if (is_component_build) { |
10 public_deps = [ | 11 public_deps = [ |
11 "//content", | 12 "//content", |
12 ] | 13 ] |
13 } else { | 14 } else { |
14 public_deps = [ | 15 public_deps = [ |
15 ":renderer_sources", | 16 ":renderer_sources", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 deps = [ | 69 deps = [ |
69 "//content/public/child:child_sources", | 70 "//content/public/child:child_sources", |
70 "//content/public/common:common_sources", | 71 "//content/public/common:common_sources", |
71 "//content/renderer", | 72 "//content/renderer", |
72 "//gin", | 73 "//gin", |
73 "//media", | 74 "//media", |
74 "//media/capture", | 75 "//media/capture", |
75 "//media/gpu/ipc/client", | 76 "//media/gpu/ipc/client", |
76 "//net", | 77 "//net", |
77 "//ppapi/c", | 78 "//ppapi/c", |
| 79 "//ppapi/features", |
78 "//skia", | 80 "//skia", |
79 "//third_party/WebKit/public:blink_headers", | 81 "//third_party/WebKit/public:blink_headers", |
80 "//third_party/libjingle", | 82 "//third_party/libjingle", |
81 "//third_party/widevine/cdm:headers", | 83 "//third_party/widevine/cdm:headers", |
82 "//ui/base", | 84 "//ui/base", |
83 "//ui/base/ime", | 85 "//ui/base/ime", |
84 "//ui/gfx", | 86 "//ui/gfx", |
85 "//v8", | 87 "//v8", |
86 ] | 88 ] |
87 | 89 |
(...skipping 20 matching lines...) Expand all Loading... |
108 deps += [ | 110 deps += [ |
109 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 111 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
110 "//content/public/common:features", | 112 "//content/public/common:features", |
111 ] | 113 ] |
112 } | 114 } |
113 | 115 |
114 if (enable_plugins) { | 116 if (enable_plugins) { |
115 sources += [ "plugin_instance_throttler.h" ] | 117 sources += [ "plugin_instance_throttler.h" ] |
116 } | 118 } |
117 } | 119 } |
OLD | NEW |