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

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

Issue 2165523004: Force MimeHandlerView to always use BrowserPlugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing creis@'s comments Created 4 years, 2 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
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 "guest_mode.cc",
42 "guest_mode.h",
41 "navigation_state.cc", 43 "navigation_state.cc",
42 "navigation_state.h", 44 "navigation_state.h",
43 "pepper_plugin_instance.h", 45 "pepper_plugin_instance.h",
44 "platform_event_observer.h", 46 "platform_event_observer.h",
45 "render_accessibility.h", 47 "render_accessibility.h",
46 "render_frame.h", 48 "render_frame.h",
47 "render_frame_observer.cc", 49 "render_frame_observer.cc",
48 "render_frame_observer.h", 50 "render_frame_observer.h",
49 "render_frame_observer_tracker.h", 51 "render_frame_observer_tracker.h",
50 "render_thread.cc", 52 "render_thread.cc",
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 "//content/public/common:feature_h264_with_openh264_ffmpeg", 109 "//content/public/common:feature_h264_with_openh264_ffmpeg",
108 "//content/public/common:features", 110 "//content/public/common:features",
109 "//third_party/webrtc", 111 "//third_party/webrtc",
110 ] 112 ]
111 } 113 }
112 114
113 if (enable_plugins) { 115 if (enable_plugins) {
114 sources += [ "plugin_instance_throttler.h" ] 116 sources += [ "plugin_instance_throttler.h" ]
115 } 117 }
116 } 118 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698