Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(793)

Side by Side Diff: content/public/renderer/BUILD.gn

Issue 2287263003: Fix build failure with "enable_webrtc = false". (Closed)
Patch Set: rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/renderer/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 "android_content_detection_prefixes.h", 31 "android_content_detection_prefixes.h",
32 "browser_plugin_delegate.cc", 32 "browser_plugin_delegate.cc",
33 "browser_plugin_delegate.h", 33 "browser_plugin_delegate.h",
34 "chrome_object_extensions_utils.cc", 34 "chrome_object_extensions_utils.cc",
35 "chrome_object_extensions_utils.h", 35 "chrome_object_extensions_utils.h",
36 "content_renderer_client.cc", 36 "content_renderer_client.cc",
37 "content_renderer_client.h", 37 "content_renderer_client.h",
38 "context_menu_client.h", 38 "context_menu_client.h",
39 "document_state.cc", 39 "document_state.cc",
40 "document_state.h", 40 "document_state.h",
41 "media_stream_audio_renderer.h",
42 "media_stream_audio_sink.cc",
43 "media_stream_audio_sink.h",
44 "media_stream_sink.h",
45 "media_stream_video_renderer.h",
46 "navigation_state.cc", 41 "navigation_state.cc",
47 "navigation_state.h", 42 "navigation_state.h",
48 "pepper_plugin_instance.h", 43 "pepper_plugin_instance.h",
49 "platform_event_observer.h", 44 "platform_event_observer.h",
50 "render_accessibility.h", 45 "render_accessibility.h",
51 "render_frame.h", 46 "render_frame.h",
52 "render_frame_observer.cc", 47 "render_frame_observer.cc",
53 "render_frame_observer.h", 48 "render_frame_observer.h",
54 "render_frame_observer_tracker.h", 49 "render_frame_observer_tracker.h",
55 "render_thread.cc", 50 "render_thread.cc",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 ] 84 ]
90 85
91 allow_circular_includes_from = [ 86 allow_circular_includes_from = [
92 # This target is a pair with content/renderer. They always go together and 87 # This target is a pair with content/renderer. They always go together and
93 # include headers from each other. 88 # include headers from each other.
94 "//content/renderer", 89 "//content/renderer",
95 ] 90 ]
96 91
97 if (enable_webrtc) { 92 if (enable_webrtc) {
98 sources += [ 93 sources += [
94 "media_stream_audio_renderer.h",
95 "media_stream_audio_sink.cc",
96 "media_stream_audio_sink.h",
99 "media_stream_renderer_factory.h", 97 "media_stream_renderer_factory.h",
98 "media_stream_sink.h",
100 "media_stream_utils.cc", 99 "media_stream_utils.cc",
101 "media_stream_utils.h", 100 "media_stream_utils.h",
101 "media_stream_video_renderer.h",
102 "media_stream_video_sink.cc", 102 "media_stream_video_sink.cc",
103 "media_stream_video_sink.h", 103 "media_stream_video_sink.h",
104 "webrtc_log_message_delegate.h", 104 "webrtc_log_message_delegate.h",
105 ] 105 ]
106 deps += [ 106 deps += [
107 "//content/public/common:feature_h264_with_openh264_ffmpeg", 107 "//content/public/common:feature_h264_with_openh264_ffmpeg",
108 "//content/public/common:features", 108 "//content/public/common:features",
109 "//third_party/webrtc", 109 "//third_party/webrtc",
110 ] 110 ]
111 } 111 }
112 112
113 if (enable_plugins) { 113 if (enable_plugins) {
114 sources += [ "plugin_instance_throttler.h" ] 114 sources += [ "plugin_instance_throttler.h" ]
115 } 115 }
116 } 116 }
OLDNEW
« no previous file with comments | « no previous file | content/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698