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 11 matching lines...) Expand all Loading... |
22 if (is_component_build) { | 22 if (is_component_build) { |
23 link_target_type = "source_set" | 23 link_target_type = "source_set" |
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", | |
33 "android_content_detection_prefixes.h", | |
34 "associated_resource_fetcher.h", | 32 "associated_resource_fetcher.h", |
35 "browser_plugin_delegate.cc", | 33 "browser_plugin_delegate.cc", |
36 "browser_plugin_delegate.h", | 34 "browser_plugin_delegate.h", |
37 "chrome_object_extensions_utils.cc", | 35 "chrome_object_extensions_utils.cc", |
38 "chrome_object_extensions_utils.h", | 36 "chrome_object_extensions_utils.h", |
39 "content_renderer_client.cc", | 37 "content_renderer_client.cc", |
40 "content_renderer_client.h", | 38 "content_renderer_client.h", |
41 "context_menu_client.h", | 39 "context_menu_client.h", |
42 "document_state.cc", | 40 "document_state.cc", |
43 "document_state.h", | 41 "document_state.h", |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
114 deps += [ | 112 deps += [ |
115 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 113 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
116 "//content/public/common:features", | 114 "//content/public/common:features", |
117 ] | 115 ] |
118 } | 116 } |
119 | 117 |
120 if (enable_plugins) { | 118 if (enable_plugins) { |
121 sources += [ "plugin_instance_throttler.h" ] | 119 sources += [ "plugin_instance_throttler.h" ] |
122 } | 120 } |
123 } | 121 } |
OLD | NEW |