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 13 matching lines...) Expand all Loading... |
24 } else { | 24 } else { |
25 link_target_type = "static_library" | 25 link_target_type = "static_library" |
26 } | 26 } |
27 target(link_target_type, "renderer_sources") { | 27 target(link_target_type, "renderer_sources") { |
28 # External code should depend on via ":renderer" above. | 28 # External code should depend on via ":renderer" above. |
29 visibility = [ "//content/*" ] | 29 visibility = [ "//content/*" ] |
30 | 30 |
31 sources = [ | 31 sources = [ |
32 "android_content_detection_prefixes.cc", | 32 "android_content_detection_prefixes.cc", |
33 "android_content_detection_prefixes.h", | 33 "android_content_detection_prefixes.h", |
| 34 "associated_resource_fetcher.h", |
34 "browser_plugin_delegate.cc", | 35 "browser_plugin_delegate.cc", |
35 "browser_plugin_delegate.h", | 36 "browser_plugin_delegate.h", |
36 "chrome_object_extensions_utils.cc", | 37 "chrome_object_extensions_utils.cc", |
37 "chrome_object_extensions_utils.h", | 38 "chrome_object_extensions_utils.h", |
38 "content_renderer_client.cc", | 39 "content_renderer_client.cc", |
39 "content_renderer_client.h", | 40 "content_renderer_client.h", |
40 "context_menu_client.h", | 41 "context_menu_client.h", |
41 "document_state.cc", | 42 "document_state.cc", |
42 "document_state.h", | 43 "document_state.h", |
43 "navigation_state.cc", | 44 "navigation_state.cc", |
44 "navigation_state.h", | 45 "navigation_state.h", |
45 "pepper_plugin_instance.h", | 46 "pepper_plugin_instance.h", |
46 "platform_event_observer.h", | 47 "platform_event_observer.h", |
| 48 "plugin_instance_throttler.h", |
47 "render_accessibility.h", | 49 "render_accessibility.h", |
48 "render_frame.h", | 50 "render_frame.h", |
49 "render_frame_observer.cc", | 51 "render_frame_observer.cc", |
50 "render_frame_observer.h", | 52 "render_frame_observer.h", |
51 "render_frame_observer_tracker.h", | 53 "render_frame_observer_tracker.h", |
52 "render_thread.cc", | 54 "render_thread.cc", |
53 "render_thread.h", | 55 "render_thread.h", |
54 "render_thread_observer.cc", | 56 "render_thread_observer.cc", |
55 "render_thread_observer.h", | 57 "render_thread_observer.h", |
56 "render_view.h", | 58 "render_view.h", |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 deps += [ | 114 deps += [ |
113 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 115 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
114 "//content/public/common:features", | 116 "//content/public/common:features", |
115 ] | 117 ] |
116 } | 118 } |
117 | 119 |
118 if (enable_plugins) { | 120 if (enable_plugins) { |
119 sources += [ "plugin_instance_throttler.h" ] | 121 sources += [ "plugin_instance_throttler.h" ] |
120 } | 122 } |
121 } | 123 } |
OLD | NEW |