| 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("//media/media_options.gni") | 6 import("//media/media_options.gni") |
| 7 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
| 8 | 8 |
| 9 # See //content/BUILD.gn for how this works. | 9 # See //content/BUILD.gn for how this works. |
| 10 group("renderer") { | 10 group("renderer") { |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 "resource_fetcher.h", | 63 "resource_fetcher.h", |
| 64 "seccomp_sandbox_status_android.h", | 64 "seccomp_sandbox_status_android.h", |
| 65 "video_encode_accelerator.cc", | 65 "video_encode_accelerator.cc", |
| 66 "video_encode_accelerator.h", | 66 "video_encode_accelerator.h", |
| 67 "window_features_converter.cc", | 67 "window_features_converter.cc", |
| 68 "window_features_converter.h", | 68 "window_features_converter.h", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 configs += [ "//content:content_implementation" ] | 71 configs += [ "//content:content_implementation" ] |
| 72 | 72 |
| 73 public_deps = [ |
| 74 "//media", |
| 75 ] |
| 76 |
| 73 deps = [ | 77 deps = [ |
| 74 "//content/public/child:child_sources", | 78 "//content/public/child:child_sources", |
| 75 "//content/public/common:common_sources", | 79 "//content/public/common:common_sources", |
| 76 "//content/renderer", | 80 "//content/renderer", |
| 77 "//gin", | 81 "//gin", |
| 78 "//media", | |
| 79 "//media/capture", | 82 "//media/capture", |
| 80 "//media/gpu/ipc/client", | 83 "//media/gpu/ipc/client", |
| 81 "//net", | 84 "//net", |
| 82 "//ppapi/c", | 85 "//ppapi/c", |
| 83 "//ppapi/features", | 86 "//ppapi/features", |
| 84 "//skia", | 87 "//skia", |
| 85 "//third_party/WebKit/public:blink_headers", | 88 "//third_party/WebKit/public:blink_headers", |
| 86 "//third_party/webrtc_overrides", | 89 "//third_party/webrtc_overrides", |
| 87 "//third_party/widevine/cdm:headers", | 90 "//third_party/widevine/cdm:headers", |
| 88 "//ui/base", | 91 "//ui/base", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 114 deps += [ | 117 deps += [ |
| 115 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 118 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 116 "//content/public/common:features", | 119 "//content/public/common:features", |
| 117 ] | 120 ] |
| 118 } | 121 } |
| 119 | 122 |
| 120 if (enable_plugins) { | 123 if (enable_plugins) { |
| 121 sources += [ "plugin_instance_throttler.h" ] | 124 sources += [ "plugin_instance_throttler.h" ] |
| 122 } | 125 } |
| 123 } | 126 } |
| OLD | NEW |