| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "navigation_state.cc", | 42 "navigation_state.cc", |
| 43 "navigation_state.h", | 43 "navigation_state.h", |
| 44 "pepper_plugin_instance.h", | 44 "pepper_plugin_instance.h", |
| 45 "platform_event_observer.h", | 45 "platform_event_observer.h", |
| 46 "plugin_instance_throttler.h", | 46 "plugin_instance_throttler.h", |
| 47 "render_accessibility.h", | 47 "render_accessibility.h", |
| 48 "render_frame.h", | 48 "render_frame.h", |
| 49 "render_frame_observer.cc", | 49 "render_frame_observer.cc", |
| 50 "render_frame_observer.h", | 50 "render_frame_observer.h", |
| 51 "render_frame_observer_tracker.h", | 51 "render_frame_observer_tracker.h", |
| 52 "render_frame_visitor.h", |
| 52 "render_thread.cc", | 53 "render_thread.cc", |
| 53 "render_thread.h", | 54 "render_thread.h", |
| 54 "render_thread_observer.cc", | 55 "render_thread_observer.cc", |
| 55 "render_thread_observer.h", | 56 "render_thread_observer.h", |
| 56 "render_view.h", | 57 "render_view.h", |
| 57 "render_view_observer.cc", | 58 "render_view_observer.cc", |
| 58 "render_view_observer.h", | 59 "render_view_observer.h", |
| 59 "render_view_observer_tracker.h", | 60 "render_view_observer_tracker.h", |
| 60 "render_view_visitor.h", | 61 "render_view_visitor.h", |
| 61 "renderer_ppapi_host.h", | 62 "renderer_ppapi_host.h", |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 deps += [ | 114 deps += [ |
| 114 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 115 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 115 "//content/public/common:features", | 116 "//content/public/common:features", |
| 116 ] | 117 ] |
| 117 } | 118 } |
| 118 | 119 |
| 119 if (enable_plugins) { | 120 if (enable_plugins) { |
| 120 sources += [ "plugin_instance_throttler.h" ] | 121 sources += [ "plugin_instance_throttler.h" ] |
| 121 } | 122 } |
| 122 } | 123 } |
| OLD | NEW |