| 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 | 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 24 matching lines...) Expand all Loading... |
| 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 "navigation_state.cc", | 41 "navigation_state.cc", |
| 42 "navigation_state.h", | 42 "navigation_state.h", |
| 43 "pepper_plugin_instance.h", | 43 "pepper_plugin_instance.h", |
| 44 "platform_event_observer.h", | 44 "platform_event_observer.h", |
| 45 "remote_proto_channel.h", |
| 45 "render_accessibility.h", | 46 "render_accessibility.h", |
| 46 "render_frame.h", | 47 "render_frame.h", |
| 47 "render_frame_observer.cc", | 48 "render_frame_observer.cc", |
| 48 "render_frame_observer.h", | 49 "render_frame_observer.h", |
| 49 "render_frame_observer_tracker.h", | 50 "render_frame_observer_tracker.h", |
| 50 "render_thread.cc", | 51 "render_thread.cc", |
| 51 "render_thread.h", | 52 "render_thread.h", |
| 52 "render_thread_observer.cc", | 53 "render_thread_observer.cc", |
| 53 "render_thread_observer.h", | 54 "render_thread_observer.h", |
| 54 "render_view.h", | 55 "render_view.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 107 deps += [ | 108 deps += [ |
| 108 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 109 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 109 "//content/public/common:features", | 110 "//content/public/common:features", |
| 110 ] | 111 ] |
| 111 } | 112 } |
| 112 | 113 |
| 113 if (enable_plugins) { | 114 if (enable_plugins) { |
| 114 sources += [ "plugin_instance_throttler.h" ] | 115 sources += [ "plugin_instance_throttler.h" ] |
| 115 } | 116 } |
| 116 } | 117 } |
| OLD | NEW |