blob: de15ce12916afffde78f11f82bdf6dcf9ac04035 [file] [log] [blame]
[email protected]4db51ec2014-05-29 21:08:321# Copyright 2014 The Chromium Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
Tim Brown07e062e82017-06-26 19:38:035import("//build/buildflag_header.gni")
[email protected]4db51ec2014-05-29 21:08:326import("//build/config/features.gni")
7import("//build/config/ui.gni")
qyearsleydb0a34872017-03-14 03:24:318import("//gpu/vulkan/features.gni")
cjhopman2fd48fd2014-09-24 00:52:569import("//media/media_options.gni")
brettw4b461082016-11-19 18:55:1610import("//ppapi/features/features.gni")
Brett Wilson65f951c2016-11-03 22:06:1211import("//printing/features/features.gni")
brettw2cf0a692016-11-11 23:14:1212import("//third_party/WebKit/public/public_features.gni")
ochangdd89a1e2016-06-08 16:39:0113import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
[email protected]4db51ec2014-05-29 21:08:3214
15source_set("browser") {
Brett Wilson8f1323042014-09-11 16:58:5616 # Only the public target should depend on this. All other targets (even
17 # internal content ones) should depend on the public one.
brettwb78fc9e2016-03-25 21:02:5118 visibility = [
19 ":for_content_tests", # See top of //content/BUILD.gn for why.
jamce6dd2112017-02-15 19:31:4220 "//content/app:*",
brettwb78fc9e2016-03-25 21:02:5121 "//content/public/browser:browser_sources",
22 ]
[email protected]4db51ec2014-05-29 21:08:3223
ben3f5f9992015-11-19 10:38:3024 configs += [
25 "//build/config:precompiled_headers",
jamb3c1195df2016-03-21 20:41:2926 "//content:content_implementation",
jamb3c1195df2016-03-21 20:41:2927 "//v8:external_startup_data",
ben3f5f9992015-11-19 10:38:3028 ]
[email protected]743530f2014-06-12 19:38:5029 defines = []
30 libs = []
31 ldflags = []
[email protected]97865022014-06-13 23:18:0432
[email protected]4db51ec2014-05-29 21:08:3233 deps = [
34 "//base",
[email protected]22fe91d2014-08-12 17:07:1235 "//base:base_static",
brettwc15ed732016-03-21 23:14:2936 "//base/third_party/dynamic_annotations",
jamb3c1195df2016-03-21 20:41:2937 "//cc",
loyso3dd20892016-11-22 07:11:0138 "//cc/animation",
enne34f6084c2017-02-02 22:39:0839 "//cc/paint",
penghuangd81c1a62016-11-02 20:06:0640 "//components/discardable_memory/common",
41 "//components/discardable_memory/service",
jamb3c1195df2016-03-21 20:41:2942 "//components/filesystem:lib",
43 "//components/leveldb:lib",
mek9b28f422016-05-13 21:46:2344 "//components/link_header_util",
dalecurtis4a9839a2017-05-04 23:40:4745 "//components/metrics",
xunjielia5925442017-05-08 20:01:4446 "//components/metrics:single_sample_metrics",
mmenke68a50212017-06-12 20:20:3147 "//components/network_session_configurator/browser",
Jian Lie1603262017-07-08 00:15:0048 "//components/offline_pages/core/request_header",
49 "//components/offline_pages/features:features",
nzolghadrd87a308d2016-12-07 15:45:5650 "//components/rappor",
brettwc15ed732016-03-21 23:14:2951 "//components/tracing",
52 "//components/tracing:startup_tracing",
rsleevi24f64dc22015-08-07 21:39:2153 "//components/url_formatter",
altimin56bb594b2016-11-09 19:45:1754 "//components/variations",
danakj8d87b632017-06-27 20:34:3555 "//components/viz/common",
kylecharcb5882d2017-06-05 13:41:3456 "//components/viz/host",
Fady Samuel279f5f02017-06-14 23:23:0057 "//components/viz/service",
[email protected]d28b3cb82014-05-31 04:46:1858 "//content:resources",
jamb3c1195df2016-03-21 20:41:2959 "//content/app/resources",
60 "//content/app/strings",
jkarlin34ee23cf2015-03-26 13:58:5061 "//content/browser/background_sync:background_sync_proto",
jsbell279efb42015-03-31 17:02:4662 "//content/browser/cache_storage:cache_storage_proto",
alexclarke79a55e42017-05-11 11:38:2063 "//content/browser/devtools:devtools_resources",
dgozmandc4d41722016-11-15 22:40:5664 "//content/browser/devtools:protocol_sources",
meke722a7c2016-12-29 19:05:0365 "//content/browser/dom_storage:local_storage_proto",
peter05cb4db2015-03-13 14:33:3866 "//content/browser/notifications:notification_proto",
jinho.bang5c1f7a2932016-11-18 05:29:1467 "//content/browser/payments:payment_app_proto",
jkarlind678ae4b2015-01-27 15:04:5368 "//content/browser/service_worker:service_worker_proto",
[email protected]b506cdf2014-06-09 17:13:2169 "//content/browser/speech/proto",
brettwb78fc9e2016-03-25 21:02:5170 "//content/common",
thakis18e426412017-03-15 12:06:3771 "//content/common:features",
chiniforooshan614d70a2017-03-17 01:19:3372 "//content/common:mojo_bindings",
Matt Menkeb83ae722017-08-05 01:04:4973 "//content/network:network_sources",
Brett Wilson8f1323042014-09-11 16:58:5674 "//content/public/common:common_sources",
[email protected]4db51ec2014-05-29 21:08:3275 "//crypto",
jamb3c1195df2016-03-21 20:41:2976 "//device/bluetooth",
bajonesb9bb4c42016-07-07 00:10:5177 "//device/gamepad",
lethalantidote893681c2016-09-13 19:36:3178 "//device/geolocation",
mcasas8720394f2016-08-03 22:42:3879 "//device/geolocation/public/interfaces",
leon.han552e9de2017-02-09 14:37:3080 "//device/screen_orientation/public/interfaces",
mthiesse668cd6d22017-01-31 01:57:3281 "//device/vr",
Ken Rockotfe0424e72017-05-13 02:29:0882 "//device/vr:mojo_bindings",
mthiesse4cb289142017-04-25 23:57:3383 "//device/vr/features",
[email protected]44a5a362014-05-30 20:01:5184 "//google_apis",
brettwc15ed732016-03-21 23:14:2985 "//gpu",
86 "//gpu/command_buffer/client:gles2_implementation",
jbroman84ba6842016-04-28 00:34:5087 "//gpu/command_buffer/client:gles2_interface",
sadrul6a769422016-12-08 04:54:3288 "//gpu/ipc/host",
qyearsleydb0a34872017-03-14 03:24:3189 "//gpu/vulkan:features",
brettwc15ed732016-03-21 23:14:2990 "//media",
Xiaohan Wang3a2df1e2017-07-24 18:34:4491 "//media:media_features",
mcasase40d7522016-06-21 16:11:4092 "//media/capture",
mcasasbf362942016-11-29 03:44:1393 "//media/capture/mojo:image_capture",
jbroman79c079be2016-04-20 00:17:2794 "//media/gpu/ipc/client",
brettwc15ed732016-03-21 23:14:2995 "//media/midi",
sammc64324c3a2017-01-05 00:40:1596 "//media/midi:mojo",
xhwangdb24d602017-05-20 06:32:2497 "//media/mojo:features",
bendd157e1a2016-07-22 03:15:5798 "//media/mojo/interfaces",
Xiaohan Wang3fcfc152017-07-06 00:51:5599 "//media/mojo/interfaces:constants",
maxmorin2781f5ff2017-04-04 08:29:41100 "//media/mojo/services",
rockotb814a582015-06-05 00:30:52101 "//mojo/common",
amistrycafcdff2016-06-17 03:33:48102 "//mojo/edk/system",
rockot85dce0862015-11-13 01:33:59103 "//mojo/public/cpp/bindings",
jamb3c1195df2016-03-21 20:41:29104 "//mojo/public/js",
[email protected]4db51ec2014-05-29 21:08:32105 "//net",
rohitrao1860223c2015-05-16 01:07:14106 "//net:extras",
pfeldman10628762016-09-08 07:59:26107 "//net:http_server",
brettwc5fcdd02016-10-12 07:25:12108 "//ppapi/features",
Brett Wilson65f951c2016-11-03 22:06:12109 "//printing/features",
jcivellidad0cef2017-02-16 18:38:59110 "//services/catalog:constants",
111 "//services/catalog/public/cpp",
benaabad0b2016-11-16 23:54:17112 "//services/catalog/public/interfaces:constants",
gogeraldd8c5af342017-06-14 02:22:36113 "//services/data_decoder/public/cpp",
rockote0437032017-03-25 02:49:00114 "//services/data_decoder/public/interfaces",
blundell372d47d282016-11-01 01:34:30115 "//services/device:lib",
Yuzhu Shen28029732017-07-14 21:20:37116 "//services/device/public/cpp:device_features",
leon.han02ed4aeb2017-05-23 06:33:33117 "//services/device/public/interfaces",
Yuzhu Shen28029732017-07-14 21:20:37118 "//services/device/public/interfaces:generic_sensor",
ben768c8dc2016-08-12 00:26:50119 "//services/file:lib",
ben768c8dc2016-08-12 00:26:50120 "//services/file/public/interfaces",
Mounir Lamourifd9dcefa2017-07-06 10:26:55121 "//services/metrics/public/cpp:metrics_cpp",
Marijn Kruisselbrink9c36621a2017-08-12 03:36:22122 "//services/network/public/cpp",
123 "//services/network/public/interfaces",
chiniforooshan6e4c5072017-03-17 07:56:56124 "//services/resource_coordinator:lib",
oysteine8c8d3b702017-05-18 15:18:17125 "//services/resource_coordinator/public/cpp:resource_coordinator_cpp",
rockot734fb662016-10-15 16:41:30126 "//services/service_manager",
rockot60d92c22017-03-21 06:35:23127 "//services/service_manager/embedder",
rockot734fb662016-10-15 16:41:30128 "//services/service_manager/public/cpp",
129 "//services/service_manager/public/interfaces",
130 "//services/service_manager/runner/common",
131 "//services/service_manager/runner/host:lib",
xianglu6dd8f462017-01-25 04:30:41132 "//services/shape_detection:lib",
133 "//services/shape_detection/public/interfaces",
sadrul6c5aed8c2017-01-11 23:11:44134 "//services/ui/gpu/interfaces",
sadrul85cc5d82016-12-20 03:37:41135 "//services/ui/public/cpp/gpu",
chfremer70b40e5122017-05-23 15:13:57136 "//services/video_capture/public/cpp",
137 "//services/video_capture/public/interfaces:constants",
Christian Fremereyb43741a2017-07-06 00:46:46138 "//services/video_capture/public/uma",
[email protected]4db51ec2014-05-29 21:08:32139 "//skia",
140 "//sql",
jamb3c1195df2016-03-21 20:41:29141 "//storage/browser",
142 "//storage/common",
Kinuko Yasuda74702f92017-07-31 03:27:53143 "//third_party/WebKit/common:blink_common",
fsamuel9cf7bdf2015-11-20 02:19:32144 "//third_party/WebKit/public:blink_headers",
brettw2cf0a692016-11-11 23:14:12145 "//third_party/WebKit/public:features",
juncai30a0e932016-05-11 00:09:51146 "//third_party/WebKit/public:mojo_bindings",
jamb3c1195df2016-03-21 20:41:29147 "//third_party/WebKit/public:resources",
Becca Hughes68e47c32017-08-07 11:15:57148 "//third_party/WebKit/public:scaled_resources",
jbroman79c079be2016-04-20 00:17:27149 "//third_party/angle:angle_common",
alexclarke79a55e42017-05-11 11:38:20150 "//third_party/brotli:dec",
jamb3c1195df2016-03-21 20:41:29151 "//third_party/icu",
jamb3c1195df2016-03-21 20:41:29152 "//third_party/libyuv",
[email protected]4db51ec2014-05-29 21:08:32153 "//third_party/re2",
[email protected]4db51ec2014-05-29 21:08:32154 "//third_party/zlib",
Thiago Farinad8a8a072017-05-19 18:41:48155 "//third_party/zlib/google:compression_utils",
156 "//third_party/zlib/google:zip",
[email protected]4db51ec2014-05-29 21:08:32157 "//ui/accessibility",
158 "//ui/accessibility:ax_gen",
[email protected]52140d882014-05-30 19:22:40159 "//ui/base",
spang1c36fac2015-02-05 19:55:12160 "//ui/base/ime",
robliao8d63729c2016-03-29 17:49:47161 "//ui/display",
dcastagna0a50f642016-08-10 20:12:22162 "//ui/display/types",
[email protected]4db51ec2014-05-29 21:08:32163 "//ui/events",
164 "//ui/events:gesture_detection",
jamb3c1195df2016-03-21 20:41:29165 "//ui/events/blink",
alexis.menardb12ba342017-04-15 09:01:19166 "//ui/events/devices",
[email protected]4db51ec2014-05-29 21:08:32167 "//ui/gfx",
chrishtrbdbe3182017-03-15 15:15:43168 "//ui/gfx/animation",
[email protected]4db51ec2014-05-29 21:08:32169 "//ui/gfx/geometry",
ben7a77e852016-05-26 05:50:44170 "//ui/gfx/geometry/mojo",
Brett Wilsone7487942014-09-09 23:37:29171 "//ui/gl",
sugoi842efc692017-03-14 18:10:39172 "//ui/gl:gl_features",
mfomitchev598a7692017-04-11 00:30:31173 "//ui/latency",
Brett Wilsone7487942014-09-09 23:37:29174 "//ui/native_theme",
[email protected]4db51ec2014-05-29 21:08:32175 "//ui/resources",
brettwc15ed732016-03-21 23:14:29176 "//ui/shell_dialogs",
[email protected]d28b3cb82014-05-31 04:46:18177 "//ui/snapshot",
jamb3c1195df2016-03-21 20:41:29178 "//ui/touch_selection",
scottmg1b075322017-01-16 17:22:10179 "//v8:v8_version",
[email protected]4db51ec2014-05-29 21:08:32180 ]
181
jam447407fb2016-05-06 17:57:40182 public_deps = [
Tim Brown07e062e82017-06-26 19:38:03183 ":accessibility_flags",
rockot38e46dd2017-03-24 16:55:13184 "//ipc",
miu54dca6c2016-11-17 10:59:38185 "//media/mojo/interfaces:remoting",
kylecharc9d0c8082017-05-09 17:06:18186 "//third_party/WebKit/public:offscreen_canvas_mojo_bindings",
jam447407fb2016-05-06 17:57:40187 "//third_party/leveldatabase",
188 ]
189
brettwb167c7332016-09-07 22:52:46190 sources = [
Andrey Lushnikov370cbea62017-08-12 04:51:54191 "$target_gen_dir/devtools/protocol/browser.cc",
192 "$target_gen_dir/devtools/protocol/browser.h",
dgozmanb4f43e42016-12-13 06:12:40193 "$target_gen_dir/devtools/protocol/dom.cc",
194 "$target_gen_dir/devtools/protocol/dom.h",
195 "$target_gen_dir/devtools/protocol/emulation.cc",
196 "$target_gen_dir/devtools/protocol/emulation.h",
dgozmandc4d41722016-11-15 22:40:56197 "$target_gen_dir/devtools/protocol/forward.h",
dgozman111fdd032016-12-18 00:49:26198 "$target_gen_dir/devtools/protocol/input.cc",
199 "$target_gen_dir/devtools/protocol/input.h",
dgozmanb4f43e42016-12-13 06:12:40200 "$target_gen_dir/devtools/protocol/inspector.cc",
201 "$target_gen_dir/devtools/protocol/inspector.h",
dgozmandc4d41722016-11-15 22:40:56202 "$target_gen_dir/devtools/protocol/io.cc",
203 "$target_gen_dir/devtools/protocol/io.h",
dgozmanabbad67b2016-11-22 02:37:02204 "$target_gen_dir/devtools/protocol/memory.cc",
205 "$target_gen_dir/devtools/protocol/memory.h",
dgozmanb4f43e42016-12-13 06:12:40206 "$target_gen_dir/devtools/protocol/network.cc",
207 "$target_gen_dir/devtools/protocol/network.h",
208 "$target_gen_dir/devtools/protocol/page.cc",
209 "$target_gen_dir/devtools/protocol/page.h",
dgozmandc4d41722016-11-15 22:40:56210 "$target_gen_dir/devtools/protocol/protocol.cc",
211 "$target_gen_dir/devtools/protocol/protocol.h",
horo6f9e15e2017-01-27 03:07:40212 "$target_gen_dir/devtools/protocol/runtime.cc",
213 "$target_gen_dir/devtools/protocol/runtime.h",
dgozmanb4f43e42016-12-13 06:12:40214 "$target_gen_dir/devtools/protocol/schema.cc",
215 "$target_gen_dir/devtools/protocol/schema.h",
dgozman581dd5b72016-12-14 01:15:13216 "$target_gen_dir/devtools/protocol/security.cc",
217 "$target_gen_dir/devtools/protocol/security.h",
dgozmanb31e7732016-12-16 04:08:39218 "$target_gen_dir/devtools/protocol/service_worker.cc",
219 "$target_gen_dir/devtools/protocol/service_worker.h",
dgozmand5a5b2c2016-12-14 20:37:24220 "$target_gen_dir/devtools/protocol/storage.cc",
221 "$target_gen_dir/devtools/protocol/storage.h",
dgozmanabbad67b2016-11-22 02:37:02222 "$target_gen_dir/devtools/protocol/system_info.cc",
223 "$target_gen_dir/devtools/protocol/system_info.h",
dgozmanb35728c52016-12-16 05:31:43224 "$target_gen_dir/devtools/protocol/target.cc",
225 "$target_gen_dir/devtools/protocol/target.h",
dgozmanabbad67b2016-11-22 02:37:02226 "$target_gen_dir/devtools/protocol/tethering.cc",
227 "$target_gen_dir/devtools/protocol/tethering.h",
dgozmandc4d41722016-11-15 22:40:56228 "$target_gen_dir/devtools/protocol/tracing.cc",
229 "$target_gen_dir/devtools/protocol/tracing.h",
bend32292b2016-10-07 00:21:58230 "../common/service_manager/child_connection.cc",
231 "../common/service_manager/child_connection.h",
brettwb167c7332016-09-07 22:52:46232 "../zygote/zygote_linux.cc",
233 "../zygote/zygote_linux.h",
tfarina175c5da2017-05-05 23:06:01234 "../zygote/zygote_main.h",
brettwb167c7332016-09-07 22:52:46235 "../zygote/zygote_main_linux.cc",
brettwb167c7332016-09-07 22:52:46236 "accessibility/accessibility_tree_formatter.cc",
237 "accessibility/accessibility_tree_formatter.h",
238 "accessibility/accessibility_tree_formatter_blink.cc",
239 "accessibility/accessibility_tree_formatter_blink.h",
240 "accessibility/accessibility_tree_formatter_mac.mm",
241 "accessibility/accessibility_tree_formatter_stub.cc",
242 "accessibility/accessibility_tree_formatter_utils_win.cc",
243 "accessibility/accessibility_tree_formatter_utils_win.h",
244 "accessibility/accessibility_tree_formatter_win.cc",
245 "accessibility/accessibility_ui.cc",
246 "accessibility/accessibility_ui.h",
nektar9de71d42016-10-21 21:57:00247 "accessibility/ax_platform_position.cc",
248 "accessibility/ax_platform_position.h",
brettwb167c7332016-09-07 22:52:46249 "accessibility/browser_accessibility.cc",
250 "accessibility/browser_accessibility.h",
251 "accessibility/browser_accessibility_cocoa.h",
252 "accessibility/browser_accessibility_cocoa.mm",
dougt6b5b4cd2017-05-10 06:03:54253 "accessibility/browser_accessibility_com_win.cc",
254 "accessibility/browser_accessibility_com_win.h",
brettwb167c7332016-09-07 22:52:46255 "accessibility/browser_accessibility_event.cc",
256 "accessibility/browser_accessibility_event.h",
257 "accessibility/browser_accessibility_event_win.cc",
258 "accessibility/browser_accessibility_event_win.h",
259 "accessibility/browser_accessibility_mac.h",
260 "accessibility/browser_accessibility_mac.mm",
261 "accessibility/browser_accessibility_manager.cc",
262 "accessibility/browser_accessibility_manager.h",
263 "accessibility/browser_accessibility_manager_mac.h",
264 "accessibility/browser_accessibility_manager_mac.mm",
265 "accessibility/browser_accessibility_manager_win.cc",
266 "accessibility/browser_accessibility_manager_win.h",
267 "accessibility/browser_accessibility_state_impl.cc",
268 "accessibility/browser_accessibility_state_impl.h",
269 "accessibility/browser_accessibility_state_impl_mac.mm",
270 "accessibility/browser_accessibility_state_impl_win.cc",
271 "accessibility/browser_accessibility_win.cc",
272 "accessibility/browser_accessibility_win.h",
273 "accessibility/one_shot_accessibility_tree_search.cc",
274 "accessibility/one_shot_accessibility_tree_search.h",
Jinsuk Kimc6c1d15d2017-06-13 08:19:26275 "accessibility/web_contents_accessibility.h",
Gabriel Charettec8cca992017-08-10 18:21:49276 "after_startup_task_utils.cc",
277 "after_startup_task_utils.h",
[email protected]6746292f2017-06-07 17:45:23278 "android/android_overlay_provider_impl.cc",
279 "android/android_overlay_provider_impl.h",
darin2d145fe2017-02-16 15:22:35280 "android/app_web_message_port.cc",
281 "android/app_web_message_port.h",
brettwb167c7332016-09-07 22:52:46282 "android/background_sync_network_observer_android.cc",
283 "android/background_sync_network_observer_android.h",
brettwb167c7332016-09-07 22:52:46284 "android/browser_startup_controller.cc",
285 "android/browser_startup_controller.h",
chongz8bdf20922017-03-16 20:44:04286 "android/content_feature_list.cc",
287 "android/content_feature_list.h",
brettwb167c7332016-09-07 22:52:46288 "android/content_protocol_handler_impl.cc",
289 "android/content_protocol_handler_impl.h",
290 "android/content_startup_flags.cc",
291 "android/content_startup_flags.h",
292 "android/content_video_view.cc",
293 "android/content_video_view.h",
294 "android/devtools_auth.cc",
liberatoa8da3b52017-05-02 20:23:51295 "android/dialog_overlay_impl.cc",
296 "android/dialog_overlay_impl.h",
jcivelli27d06a62017-03-22 01:40:37297 "android/gpu_process_callback.cc",
sammcf5f1b0f2016-09-20 23:05:11298 "android/java_interfaces_impl.cc",
299 "android/java_interfaces_impl.h",
boliu61687ec52017-03-29 20:09:34300 "android/launcher_thread.cc",
301 "android/launcher_thread.h",
tguilbertf08485bf2016-09-21 04:11:41302 "android/scoped_surface_request_manager.cc",
303 "android/scoped_surface_request_manager.h",
darin2d145fe2017-02-16 15:22:35304 "android/string_message_codec.cc",
305 "android/string_message_codec.h",
rlandaye4a6ec82017-07-26 01:03:20306 "android/text_suggestion_host_android.cc",
307 "android/text_suggestion_host_android.h",
308 "android/text_suggestion_host_mojo_impl_android.cc",
309 "android/text_suggestion_host_mojo_impl_android.h",
brettwb167c7332016-09-07 22:52:46310 "android/url_request_content_job.cc",
311 "android/url_request_content_job.h",
312 "appcache/appcache.cc",
313 "appcache/appcache.h",
314 "appcache/appcache_backend_impl.cc",
315 "appcache/appcache_backend_impl.h",
316 "appcache/appcache_database.cc",
317 "appcache/appcache_database.h",
318 "appcache/appcache_disk_cache.cc",
319 "appcache/appcache_disk_cache.h",
320 "appcache/appcache_dispatcher_host.cc",
321 "appcache/appcache_dispatcher_host.h",
322 "appcache/appcache_entry.h",
323 "appcache/appcache_executable_handler.h",
324 "appcache/appcache_frontend_proxy.cc",
325 "appcache/appcache_frontend_proxy.h",
326 "appcache/appcache_group.cc",
327 "appcache/appcache_group.h",
328 "appcache/appcache_histograms.cc",
329 "appcache/appcache_histograms.h",
330 "appcache/appcache_host.cc",
331 "appcache/appcache_host.h",
332 "appcache/appcache_interceptor.cc",
333 "appcache/appcache_interceptor.h",
334 "appcache/appcache_internals_ui.cc",
335 "appcache/appcache_internals_ui.h",
ananta46f3e942017-05-09 04:56:30336 "appcache/appcache_job.cc",
337 "appcache/appcache_job.h",
brettwb167c7332016-09-07 22:52:46338 "appcache/appcache_manifest_parser.cc",
339 "appcache/appcache_manifest_parser.h",
ananta292a9172016-12-07 01:29:27340 "appcache/appcache_navigation_handle.cc",
341 "appcache/appcache_navigation_handle.h",
342 "appcache/appcache_navigation_handle_core.cc",
343 "appcache/appcache_navigation_handle_core.h",
brettwb167c7332016-09-07 22:52:46344 "appcache/appcache_policy.h",
345 "appcache/appcache_quota_client.cc",
346 "appcache/appcache_quota_client.h",
ananta4e8a5292017-05-04 03:07:15347 "appcache/appcache_request.cc",
348 "appcache/appcache_request.h",
brettwb167c7332016-09-07 22:52:46349 "appcache/appcache_request_handler.cc",
350 "appcache/appcache_request_handler.h",
351 "appcache/appcache_response.cc",
352 "appcache/appcache_response.h",
353 "appcache/appcache_service_impl.cc",
354 "appcache/appcache_service_impl.h",
355 "appcache/appcache_storage.cc",
356 "appcache/appcache_storage.h",
357 "appcache/appcache_storage_impl.cc",
358 "appcache/appcache_storage_impl.h",
anantae60d1d42017-06-20 04:16:27359 "appcache/appcache_subresource_url_factory.cc",
360 "appcache/appcache_subresource_url_factory.h",
brettwb167c7332016-09-07 22:52:46361 "appcache/appcache_update_job.cc",
362 "appcache/appcache_update_job.h",
Anantanarayanan Iyengard42af8f2017-08-01 23:09:36363 "appcache/appcache_update_request_base.cc",
364 "appcache/appcache_update_request_base.h",
ananta609d9772017-07-21 02:12:53365 "appcache/appcache_update_url_fetcher.cc",
366 "appcache/appcache_update_url_fetcher.h",
Anantanarayanan Iyengard42af8f2017-08-01 23:09:36367 "appcache/appcache_update_url_loader_request.cc",
368 "appcache/appcache_update_url_loader_request.h",
369 "appcache/appcache_update_url_request.cc",
370 "appcache/appcache_update_url_request.h",
ananta46f3e942017-05-09 04:56:30371 "appcache/appcache_url_loader_job.cc",
372 "appcache/appcache_url_loader_job.h",
ananta4e8a5292017-05-04 03:07:15373 "appcache/appcache_url_loader_request.cc",
374 "appcache/appcache_url_loader_request.h",
375 "appcache/appcache_url_request.cc",
376 "appcache/appcache_url_request.h",
brettwb167c7332016-09-07 22:52:46377 "appcache/appcache_url_request_job.cc",
378 "appcache/appcache_url_request_job.h",
379 "appcache/appcache_working_set.cc",
380 "appcache/appcache_working_set.h",
381 "appcache/chrome_appcache_service.cc",
382 "appcache/chrome_appcache_service.h",
harkness7b36c432017-02-15 20:05:36383 "background_fetch/background_fetch_context.cc",
384 "background_fetch/background_fetch_context.h",
peterbbecee162017-04-14 17:09:55385 "background_fetch/background_fetch_cross_origin_filter.cc",
386 "background_fetch/background_fetch_cross_origin_filter.h",
harkness7b36c432017-02-15 20:05:36387 "background_fetch/background_fetch_data_manager.cc",
388 "background_fetch/background_fetch_data_manager.h",
Dan Elphick5e7e2952017-07-18 14:25:08389 "background_fetch/background_fetch_delegate_proxy.cc",
390 "background_fetch/background_fetch_delegate_proxy.h",
peteref0797702017-03-19 04:06:40391 "background_fetch/background_fetch_event_dispatcher.cc",
392 "background_fetch/background_fetch_event_dispatcher.h",
harknessa247d9bf2017-02-28 17:01:53393 "background_fetch/background_fetch_job_controller.cc",
394 "background_fetch/background_fetch_job_controller.h",
peter6965a1a12017-03-27 08:59:27395 "background_fetch/background_fetch_registration_id.cc",
396 "background_fetch/background_fetch_registration_id.h",
harknessa247d9bf2017-02-28 17:01:53397 "background_fetch/background_fetch_request_info.cc",
398 "background_fetch/background_fetch_request_info.h",
peter3226ce82017-03-16 18:06:28399 "background_fetch/background_fetch_service_impl.cc",
400 "background_fetch/background_fetch_service_impl.h",
brettwb167c7332016-09-07 22:52:46401 "background_sync/background_sync_context.cc",
402 "background_sync/background_sync_context.h",
403 "background_sync/background_sync_manager.cc",
404 "background_sync/background_sync_manager.h",
405 "background_sync/background_sync_metrics.cc",
406 "background_sync/background_sync_metrics.h",
407 "background_sync/background_sync_network_observer.cc",
408 "background_sync/background_sync_network_observer.h",
409 "background_sync/background_sync_registration.cc",
410 "background_sync/background_sync_registration.h",
411 "background_sync/background_sync_registration_options.cc",
412 "background_sync/background_sync_registration_options.h",
413 "background_sync/background_sync_service_impl.cc",
414 "background_sync/background_sync_service_impl.h",
415 "background_sync/background_sync_status.h",
416 "bad_message.cc",
417 "bad_message.h",
418 "blob_storage/blob_dispatcher_host.cc",
419 "blob_storage/blob_dispatcher_host.h",
jamd654ee52017-05-09 22:00:52420 "blob_storage/blob_internals_url_loader.cc",
421 "blob_storage/blob_internals_url_loader.h",
Marijn Kruisselbrink760986882017-07-11 17:06:51422 "blob_storage/blob_registry_wrapper.cc",
423 "blob_storage/blob_registry_wrapper.h",
jam9354af82017-06-03 21:59:41424 "blob_storage/blob_url_loader_factory.cc",
425 "blob_storage/blob_url_loader_factory.h",
brettwb167c7332016-09-07 22:52:46426 "blob_storage/chrome_blob_storage_context.cc",
427 "blob_storage/chrome_blob_storage_context.h",
juncaif70c51172017-02-10 23:49:17428 "bluetooth/bluetooth_allowed_devices.cc",
429 "bluetooth/bluetooth_allowed_devices.h",
brettwb167c7332016-09-07 22:52:46430 "bluetooth/bluetooth_allowed_devices_map.cc",
431 "bluetooth/bluetooth_allowed_devices_map.h",
beaufort.francois01135bf2016-11-23 14:37:36432 "bluetooth/bluetooth_blocklist.cc",
433 "bluetooth/bluetooth_blocklist.h",
brettwb167c7332016-09-07 22:52:46434 "bluetooth/bluetooth_device_chooser_controller.cc",
435 "bluetooth/bluetooth_device_chooser_controller.h",
436 "bluetooth/bluetooth_metrics.cc",
437 "bluetooth/bluetooth_metrics.h",
brettwb167c7332016-09-07 22:52:46438 "bluetooth/frame_connected_bluetooth_devices.cc",
439 "bluetooth/frame_connected_bluetooth_devices.h",
440 "bluetooth/web_bluetooth_service_impl.cc",
441 "bluetooth/web_bluetooth_service_impl.h",
442 "bootstrap_sandbox_manager_mac.cc",
443 "bootstrap_sandbox_manager_mac.h",
444 "broadcast_channel/broadcast_channel_provider.cc",
445 "broadcast_channel/broadcast_channel_provider.h",
446 "browser_child_process_host_impl.cc",
447 "browser_child_process_host_impl.h",
448 "browser_context.cc",
449 "browser_ipc_logging.cc",
450 "browser_main.cc",
451 "browser_main.h",
452 "browser_main_loop.cc",
453 "browser_main_loop.h",
454 "browser_main_runner.cc",
455 "browser_plugin/browser_plugin_embedder.cc",
456 "browser_plugin/browser_plugin_embedder.h",
457 "browser_plugin/browser_plugin_guest.cc",
458 "browser_plugin/browser_plugin_guest.h",
459 "browser_plugin/browser_plugin_message_filter.cc",
460 "browser_plugin/browser_plugin_message_filter.h",
461 "browser_plugin/browser_plugin_popup_menu_helper_mac.h",
462 "browser_plugin/browser_plugin_popup_menu_helper_mac.mm",
463 "browser_process_sub_thread.cc",
464 "browser_process_sub_thread.h",
465 "browser_shutdown_profile_dumper.cc",
466 "browser_shutdown_profile_dumper.h",
467 "browser_thread_impl.cc",
468 "browser_thread_impl.h",
469 "browser_url_handler_impl.cc",
470 "browser_url_handler_impl.h",
msrameka3c7cfd2017-02-03 13:34:13471 "browsing_data/browsing_data_filter_builder_impl.cc",
472 "browsing_data/browsing_data_filter_builder_impl.h",
msrameke169ccb2017-04-26 05:21:41473 "browsing_data/browsing_data_remover_impl.cc",
474 "browsing_data/browsing_data_remover_impl.h",
brettwb167c7332016-09-07 22:52:46475 "browsing_data/clear_site_data_throttle.cc",
476 "browsing_data/clear_site_data_throttle.h",
msramekee2be6e2017-03-27 19:28:01477 "browsing_data/conditional_cache_deletion_helper.cc",
478 "browsing_data/conditional_cache_deletion_helper.h",
479 "browsing_data/storage_partition_http_cache_data_remover.cc",
480 "browsing_data/storage_partition_http_cache_data_remover.h",
brettwb167c7332016-09-07 22:52:46481 "browsing_instance.cc",
482 "browsing_instance.h",
483 "byte_stream.cc",
484 "byte_stream.h",
485 "cache_storage/cache_storage.cc",
486 "cache_storage/cache_storage.h",
487 "cache_storage/cache_storage_blob_to_disk_cache.cc",
488 "cache_storage/cache_storage_blob_to_disk_cache.h",
489 "cache_storage/cache_storage_cache.cc",
490 "cache_storage/cache_storage_cache.h",
491 "cache_storage/cache_storage_cache_handle.cc",
492 "cache_storage/cache_storage_cache_handle.h",
cmumfordffb8a162016-12-22 15:26:50493 "cache_storage/cache_storage_cache_observer.h",
brettwb167c7332016-09-07 22:52:46494 "cache_storage/cache_storage_context_impl.cc",
495 "cache_storage/cache_storage_context_impl.h",
496 "cache_storage/cache_storage_dispatcher_host.cc",
497 "cache_storage/cache_storage_dispatcher_host.h",
498 "cache_storage/cache_storage_histogram_macros.h",
cmumfordffb8a162016-12-22 15:26:50499 "cache_storage/cache_storage_index.cc",
500 "cache_storage/cache_storage_index.h",
brettwb167c7332016-09-07 22:52:46501 "cache_storage/cache_storage_manager.cc",
502 "cache_storage/cache_storage_manager.h",
503 "cache_storage/cache_storage_operation.cc",
504 "cache_storage/cache_storage_operation.h",
505 "cache_storage/cache_storage_quota_client.cc",
506 "cache_storage/cache_storage_quota_client.h",
507 "cache_storage/cache_storage_scheduler.cc",
508 "cache_storage/cache_storage_scheduler.h",
509 "cache_storage/cache_storage_scheduler_client.h",
brettwb167c7332016-09-07 22:52:46510 "child_process_launcher.cc",
511 "child_process_launcher.h",
jcivelli828cd7f2017-01-18 19:50:46512 "child_process_launcher_helper.cc",
513 "child_process_launcher_helper.h",
514 "child_process_launcher_helper_android.cc",
515 "child_process_launcher_helper_linux.cc",
516 "child_process_launcher_helper_mac.cc",
517 "child_process_launcher_helper_posix.cc",
518 "child_process_launcher_helper_posix.h",
519 "child_process_launcher_helper_win.cc",
brettwb167c7332016-09-07 22:52:46520 "child_process_security_policy_impl.cc",
521 "child_process_security_policy_impl.h",
522 "cocoa/system_hotkey_helper_mac.h",
523 "cocoa/system_hotkey_helper_mac.mm",
524 "cocoa/system_hotkey_map.h",
525 "cocoa/system_hotkey_map.mm",
[email protected]743530f2014-06-12 19:38:50526
brettwb167c7332016-09-07 22:52:46527 # NOTE: These files are here instead of in compositor_browser_sources
528 # because the latter is not built on Android, whereas these files are
529 # needed on all platforms.
530 "compositor/surface_utils.cc",
531 "compositor/surface_utils.h",
brettwb167c7332016-09-07 22:52:46532 "devtools/browser_devtools_agent_host.cc",
533 "devtools/browser_devtools_agent_host.h",
534 "devtools/devtools_agent_host_impl.cc",
535 "devtools/devtools_agent_host_impl.h",
536 "devtools/devtools_frame_trace_recorder.cc",
537 "devtools/devtools_frame_trace_recorder.h",
pfeldman10628762016-09-08 07:59:26538 "devtools/devtools_http_handler.cc",
539 "devtools/devtools_http_handler.h",
brettwb167c7332016-09-07 22:52:46540 "devtools/devtools_io_context.cc",
541 "devtools/devtools_io_context.h",
542 "devtools/devtools_manager.cc",
543 "devtools/devtools_manager.h",
dgozmand77188632016-11-16 01:34:39544 "devtools/devtools_session.cc",
545 "devtools/devtools_session.h",
alexclarke6f5b30532017-06-02 14:32:30546 "devtools/devtools_url_interceptor_request_job.cc",
547 "devtools/devtools_url_interceptor_request_job.h",
548 "devtools/devtools_url_request_interceptor.cc",
549 "devtools/devtools_url_request_interceptor.h",
brettwb167c7332016-09-07 22:52:46550 "devtools/forwarding_agent_host.cc",
551 "devtools/forwarding_agent_host.h",
Andrey Lushnikov370cbea62017-08-12 04:51:54552 "devtools/protocol/browser_handler.cc",
553 "devtools/protocol/browser_handler.h",
dgozman39d9d9a2016-12-28 18:56:30554 "devtools/protocol/devtools_domain_handler.cc",
555 "devtools/protocol/devtools_domain_handler.h",
brettwb167c7332016-09-07 22:52:46556 "devtools/protocol/dom_handler.cc",
557 "devtools/protocol/dom_handler.h",
558 "devtools/protocol/emulation_handler.cc",
559 "devtools/protocol/emulation_handler.h",
560 "devtools/protocol/input_handler.cc",
561 "devtools/protocol/input_handler.h",
562 "devtools/protocol/inspector_handler.cc",
563 "devtools/protocol/inspector_handler.h",
564 "devtools/protocol/io_handler.cc",
565 "devtools/protocol/io_handler.h",
566 "devtools/protocol/memory_handler.cc",
567 "devtools/protocol/memory_handler.h",
Blaisebcad00c2017-07-25 00:19:49568 "devtools/protocol/native_input_event_builder.h",
569 "devtools/protocol/native_input_event_builder_mac.mm",
brettwb167c7332016-09-07 22:52:46570 "devtools/protocol/network_handler.cc",
571 "devtools/protocol/network_handler.h",
572 "devtools/protocol/page_handler.cc",
573 "devtools/protocol/page_handler.h",
574 "devtools/protocol/schema_handler.cc",
575 "devtools/protocol/schema_handler.h",
576 "devtools/protocol/security_handler.cc",
577 "devtools/protocol/security_handler.h",
578 "devtools/protocol/service_worker_handler.cc",
579 "devtools/protocol/service_worker_handler.h",
580 "devtools/protocol/storage_handler.cc",
581 "devtools/protocol/storage_handler.h",
582 "devtools/protocol/system_info_handler.cc",
583 "devtools/protocol/system_info_handler.h",
dgozman9f204162017-07-14 00:55:31584 "devtools/protocol/target_auto_attacher.cc",
585 "devtools/protocol/target_auto_attacher.h",
dgozmanc2cea7d2016-09-28 03:27:55586 "devtools/protocol/target_handler.cc",
587 "devtools/protocol/target_handler.h",
brettwb167c7332016-09-07 22:52:46588 "devtools/protocol/tethering_handler.cc",
589 "devtools/protocol/tethering_handler.h",
590 "devtools/protocol/tracing_handler.cc",
591 "devtools/protocol/tracing_handler.h",
dgozmandc4d41722016-11-15 22:40:56592 "devtools/protocol_string.cc",
593 "devtools/protocol_string.h",
brettwb167c7332016-09-07 22:52:46594 "devtools/render_frame_devtools_agent_host.cc",
595 "devtools/render_frame_devtools_agent_host.h",
596 "devtools/service_worker_devtools_agent_host.cc",
597 "devtools/service_worker_devtools_agent_host.h",
598 "devtools/service_worker_devtools_manager.cc",
599 "devtools/service_worker_devtools_manager.h",
600 "devtools/shared_worker_devtools_agent_host.cc",
601 "devtools/shared_worker_devtools_agent_host.h",
602 "devtools/shared_worker_devtools_manager.cc",
603 "devtools/shared_worker_devtools_manager.h",
604 "devtools/worker_devtools_agent_host.cc",
605 "devtools/worker_devtools_agent_host.h",
Scott Violet8af2ef72017-08-02 21:59:26606 "discardable_shared_memory_manager.cc",
brettwb167c7332016-09-07 22:52:46607 "dom_storage/dom_storage_area.cc",
608 "dom_storage/dom_storage_area.h",
609 "dom_storage/dom_storage_context_impl.cc",
610 "dom_storage/dom_storage_context_impl.h",
611 "dom_storage/dom_storage_context_wrapper.cc",
612 "dom_storage/dom_storage_context_wrapper.h",
613 "dom_storage/dom_storage_database.cc",
614 "dom_storage/dom_storage_database.h",
615 "dom_storage/dom_storage_database_adapter.h",
616 "dom_storage/dom_storage_host.cc",
617 "dom_storage/dom_storage_host.h",
618 "dom_storage/dom_storage_message_filter.cc",
619 "dom_storage/dom_storage_message_filter.h",
620 "dom_storage/dom_storage_namespace.cc",
621 "dom_storage/dom_storage_namespace.h",
622 "dom_storage/dom_storage_session.cc",
623 "dom_storage/dom_storage_session.h",
624 "dom_storage/dom_storage_task_runner.cc",
625 "dom_storage/dom_storage_task_runner.h",
mek876c5c62016-12-22 17:40:46626 "dom_storage/local_storage_context_mojo.cc",
627 "dom_storage/local_storage_context_mojo.h",
brettwb167c7332016-09-07 22:52:46628 "dom_storage/local_storage_database_adapter.cc",
629 "dom_storage/local_storage_database_adapter.h",
630 "dom_storage/session_storage_database.cc",
631 "dom_storage/session_storage_database.h",
632 "dom_storage/session_storage_database_adapter.cc",
633 "dom_storage/session_storage_database_adapter.h",
634 "dom_storage/session_storage_namespace_impl.cc",
635 "dom_storage/session_storage_namespace_impl.h",
636 "download/base_file.cc",
637 "download/base_file.h",
brettwb167c7332016-09-07 22:52:46638 "download/base_file_posix.cc",
639 "download/base_file_win.cc",
640 "download/download_create_info.cc",
641 "download/download_create_info.h",
642 "download/download_destination_observer.h",
643 "download/download_file.h",
644 "download/download_file_factory.cc",
645 "download/download_file_factory.h",
646 "download/download_file_impl.cc",
647 "download/download_file_impl.h",
648 "download/download_interrupt_reasons_impl.cc",
649 "download/download_interrupt_reasons_impl.h",
650 "download/download_item_factory.h",
651 "download/download_item_impl.cc",
652 "download/download_item_impl.h",
653 "download/download_item_impl_delegate.cc",
654 "download/download_item_impl_delegate.h",
xingliuf61d39f2017-01-27 22:46:46655 "download/download_job.cc",
656 "download/download_job.h",
xingliu468824d2017-02-28 02:59:25657 "download/download_job_factory.cc",
658 "download/download_job_factory.h",
659 "download/download_job_impl.cc",
660 "download/download_job_impl.h",
brettwb167c7332016-09-07 22:52:46661 "download/download_manager_impl.cc",
662 "download/download_manager_impl.h",
663 "download/download_net_log_parameters.cc",
664 "download/download_net_log_parameters.h",
665 "download/download_request_core.cc",
666 "download/download_request_core.h",
667 "download/download_request_handle.cc",
668 "download/download_request_handle.h",
669 "download/download_resource_handler.cc",
670 "download/download_resource_handler.h",
Min Qin0bc518252017-08-12 00:53:18671 "download/download_response_handler.cc",
672 "download/download_response_handler.h",
brettwb167c7332016-09-07 22:52:46673 "download/download_stats.cc",
674 "download/download_stats.h",
siggi2b05ad102017-07-21 18:57:56675 "download/download_task_runner.cc",
676 "download/download_task_runner.h",
Min Qin5c5ebc22017-08-09 16:30:24677 "download/download_utils.cc",
678 "download/download_utils.h",
xingliu468824d2017-02-28 02:59:25679 "download/download_worker.cc",
680 "download/download_worker.h",
brettwb167c7332016-09-07 22:52:46681 "download/drag_download_file.cc",
682 "download/drag_download_file.h",
683 "download/drag_download_util.cc",
684 "download/drag_download_util.h",
petewil2abcf042017-04-10 21:45:00685 "download/mhtml_extra_parts_impl.cc",
686 "download/mhtml_extra_parts_impl.h",
brettwb167c7332016-09-07 22:52:46687 "download/mhtml_generation_manager.cc",
688 "download/mhtml_generation_manager.h",
xingliu468824d2017-02-28 02:59:25689 "download/parallel_download_job.cc",
690 "download/parallel_download_job.h",
qinmin41a4abf2017-03-02 06:21:31691 "download/parallel_download_utils.cc",
692 "download/parallel_download_utils.h",
brettwb167c7332016-09-07 22:52:46693 "download/rate_estimator.cc",
694 "download/rate_estimator.h",
695 "download/save_file.cc",
696 "download/save_file.h",
697 "download/save_file_manager.cc",
698 "download/save_file_manager.h",
699 "download/save_file_resource_handler.cc",
700 "download/save_file_resource_handler.h",
701 "download/save_item.cc",
702 "download/save_item.h",
703 "download/save_package.cc",
704 "download/save_package.h",
Min Qin5b8d6932017-06-08 23:36:25705 "download/save_package_download_job.cc",
706 "download/save_package_download_job.h",
brettwb167c7332016-09-07 22:52:46707 "download/save_types.cc",
708 "download/save_types.h",
709 "download/url_downloader.cc",
710 "download/url_downloader.h",
chiniforooshan614d70a2017-03-17 01:19:33711 "field_trial_recorder.cc",
712 "field_trial_recorder.h",
brettwb167c7332016-09-07 22:52:46713 "fileapi/browser_file_system_helper.cc",
714 "fileapi/browser_file_system_helper.h",
715 "fileapi/fileapi_message_filter.cc",
716 "fileapi/fileapi_message_filter.h",
717 "fileapi/upload_file_system_file_element_reader.cc",
718 "fileapi/upload_file_system_file_element_reader.h",
719 "find_request_manager.cc",
720 "find_request_manager.h",
721 "font_list_async.cc",
arthursonzognic5a2f122016-12-21 08:47:16722 "frame_host/ancestor_throttle.cc",
723 "frame_host/ancestor_throttle.h",
brettwb167c7332016-09-07 22:52:46724 "frame_host/cross_process_frame_connector.cc",
725 "frame_host/cross_process_frame_connector.h",
meacerba52f56202017-04-22 00:08:08726 "frame_host/data_url_navigation_throttle.cc",
727 "frame_host/data_url_navigation_throttle.h",
brettwb167c7332016-09-07 22:52:46728 "frame_host/debug_urls.cc",
729 "frame_host/debug_urls.h",
arthursonzogni7cc34c52017-03-18 09:00:53730 "frame_host/form_submission_throttle.cc",
731 "frame_host/form_submission_throttle.h",
brettwb167c7332016-09-07 22:52:46732 "frame_host/frame_navigation_entry.cc",
733 "frame_host/frame_navigation_entry.h",
734 "frame_host/frame_tree.cc",
735 "frame_host/frame_tree.h",
736 "frame_host/frame_tree_node.cc",
737 "frame_host/frame_tree_node.h",
738 "frame_host/frame_tree_node_blame_context.cc",
739 "frame_host/frame_tree_node_blame_context.h",
dtapuska9d46ef7d2017-05-26 19:06:06740 "frame_host/input/legacy_ipc_frame_input_handler.cc",
741 "frame_host/input/legacy_ipc_frame_input_handler.h",
brettwb167c7332016-09-07 22:52:46742 "frame_host/interstitial_page_impl.cc",
743 "frame_host/interstitial_page_impl.h",
744 "frame_host/interstitial_page_navigator_impl.cc",
745 "frame_host/interstitial_page_navigator_impl.h",
carloskd9d97942017-02-16 08:58:09746 "frame_host/mixed_content_navigation_throttle.cc",
747 "frame_host/mixed_content_navigation_throttle.h",
brettwb167c7332016-09-07 22:52:46748 "frame_host/navigation_controller_android.cc",
749 "frame_host/navigation_controller_android.h",
750 "frame_host/navigation_controller_delegate.h",
751 "frame_host/navigation_controller_impl.cc",
752 "frame_host/navigation_controller_impl.h",
753 "frame_host/navigation_entry_impl.cc",
754 "frame_host/navigation_entry_impl.h",
755 "frame_host/navigation_entry_screenshot_manager.cc",
756 "frame_host/navigation_entry_screenshot_manager.h",
757 "frame_host/navigation_handle_impl.cc",
758 "frame_host/navigation_handle_impl.h",
759 "frame_host/navigation_request.cc",
760 "frame_host/navigation_request.h",
761 "frame_host/navigation_request_info.cc",
762 "frame_host/navigation_request_info.h",
763 "frame_host/navigator.cc",
764 "frame_host/navigator.h",
765 "frame_host/navigator_delegate.cc",
766 "frame_host/navigator_delegate.h",
767 "frame_host/navigator_impl.cc",
768 "frame_host/navigator_impl.h",
769 "frame_host/popup_menu_helper_mac.h",
770 "frame_host/popup_menu_helper_mac.mm",
771 "frame_host/render_frame_host_delegate.cc",
772 "frame_host/render_frame_host_delegate.h",
773 "frame_host/render_frame_host_factory.cc",
774 "frame_host/render_frame_host_factory.h",
775 "frame_host/render_frame_host_impl.cc",
776 "frame_host/render_frame_host_impl.h",
777 "frame_host/render_frame_host_manager.cc",
778 "frame_host/render_frame_host_manager.h",
779 "frame_host/render_frame_message_filter.cc",
780 "frame_host/render_frame_message_filter.h",
781 "frame_host/render_frame_proxy_host.cc",
782 "frame_host/render_frame_proxy_host.h",
783 "frame_host/render_widget_host_view_child_frame.cc",
784 "frame_host/render_widget_host_view_child_frame.h",
785 "frame_host/render_widget_host_view_guest.cc",
786 "frame_host/render_widget_host_view_guest.h",
Conley Owens47f4fbf12017-08-02 01:56:52787 "geolocation/geolocation_service_impl.cc",
788 "geolocation/geolocation_service_impl.h",
brettwb167c7332016-09-07 22:52:46789 "gpu/browser_gpu_channel_host_factory.cc",
790 "gpu/browser_gpu_channel_host_factory.h",
791 "gpu/browser_gpu_memory_buffer_manager.cc",
792 "gpu/browser_gpu_memory_buffer_manager.h",
793 "gpu/compositor_util.cc",
794 "gpu/compositor_util.h",
sadrul53546592016-12-17 01:44:21795 "gpu/gpu_client.cc",
796 "gpu/gpu_client.h",
brettwb167c7332016-09-07 22:52:46797 "gpu/gpu_data_manager_impl.cc",
798 "gpu/gpu_data_manager_impl.h",
799 "gpu/gpu_data_manager_impl_private.cc",
800 "gpu/gpu_data_manager_impl_private.h",
michaelpg67362b52017-02-15 06:18:27801 "gpu/gpu_feature_checker_impl.cc",
802 "gpu/gpu_feature_checker_impl.h",
brettwb167c7332016-09-07 22:52:46803 "gpu/gpu_internals_ui.cc",
804 "gpu/gpu_internals_ui.h",
tapted4091f2f2017-02-07 00:47:19805 "gpu/gpu_main_thread_factory.cc",
806 "gpu/gpu_main_thread_factory.h",
brettwb167c7332016-09-07 22:52:46807 "gpu/gpu_process_host.cc",
808 "gpu/gpu_process_host.h",
sadrul75d671b2016-12-13 06:14:39809 "gpu/shader_cache_factory.cc",
810 "gpu/shader_cache_factory.h",
brettwb167c7332016-09-07 22:52:46811 "histogram_controller.cc",
812 "histogram_controller.h",
813 "histogram_internals_request_job.cc",
814 "histogram_internals_request_job.h",
jam17d386e2017-05-10 16:40:04815 "histogram_internals_url_loader.cc",
816 "histogram_internals_url_loader.h",
brettwb167c7332016-09-07 22:52:46817 "histogram_message_filter.cc",
818 "histogram_message_filter.h",
819 "histogram_subscriber.h",
820 "histogram_synchronizer.cc",
821 "histogram_synchronizer.h",
mcasas18de5022017-03-10 22:45:50822 "image_capture/image_capture_impl.cc",
823 "image_capture/image_capture_impl.h",
reillyg39fb4662016-11-22 20:27:17824 "indexed_db/cursor_impl.cc",
825 "indexed_db/cursor_impl.h",
reillyg963ec6df2016-11-05 01:10:58826 "indexed_db/database_impl.cc",
827 "indexed_db/database_impl.h",
brettwb167c7332016-09-07 22:52:46828 "indexed_db/indexed_db.h",
829 "indexed_db/indexed_db_active_blob_registry.cc",
830 "indexed_db/indexed_db_active_blob_registry.h",
831 "indexed_db/indexed_db_backing_store.cc",
832 "indexed_db/indexed_db_backing_store.h",
833 "indexed_db/indexed_db_blob_info.cc",
834 "indexed_db/indexed_db_blob_info.h",
835 "indexed_db/indexed_db_callbacks.cc",
836 "indexed_db/indexed_db_callbacks.h",
837 "indexed_db/indexed_db_class_factory.cc",
838 "indexed_db/indexed_db_class_factory.h",
839 "indexed_db/indexed_db_connection.cc",
840 "indexed_db/indexed_db_connection.h",
841 "indexed_db/indexed_db_context_impl.cc",
842 "indexed_db/indexed_db_context_impl.h",
843 "indexed_db/indexed_db_cursor.cc",
844 "indexed_db/indexed_db_cursor.h",
jbroman3ee0c8ab2017-04-20 14:25:03845 "indexed_db/indexed_db_data_format_version.cc",
846 "indexed_db/indexed_db_data_format_version.h",
brettwb167c7332016-09-07 22:52:46847 "indexed_db/indexed_db_data_loss_info.h",
848 "indexed_db/indexed_db_database.cc",
849 "indexed_db/indexed_db_database.h",
850 "indexed_db/indexed_db_database_callbacks.cc",
851 "indexed_db/indexed_db_database_callbacks.h",
852 "indexed_db/indexed_db_database_error.cc",
853 "indexed_db/indexed_db_database_error.h",
854 "indexed_db/indexed_db_dispatcher_host.cc",
855 "indexed_db/indexed_db_dispatcher_host.h",
856 "indexed_db/indexed_db_factory.h",
857 "indexed_db/indexed_db_factory_impl.cc",
858 "indexed_db/indexed_db_factory_impl.h",
859 "indexed_db/indexed_db_index_writer.cc",
860 "indexed_db/indexed_db_index_writer.h",
861 "indexed_db/indexed_db_internals_ui.cc",
862 "indexed_db/indexed_db_internals_ui.h",
863 "indexed_db/indexed_db_leveldb_coding.cc",
864 "indexed_db/indexed_db_leveldb_coding.h",
brettwb167c7332016-09-07 22:52:46865 "indexed_db/indexed_db_observer.cc",
866 "indexed_db/indexed_db_observer.h",
brettwb167c7332016-09-07 22:52:46867 "indexed_db/indexed_db_pending_connection.cc",
868 "indexed_db/indexed_db_pending_connection.h",
869 "indexed_db/indexed_db_quota_client.cc",
870 "indexed_db/indexed_db_quota_client.h",
871 "indexed_db/indexed_db_return_value.h",
wychen589d05e2017-03-31 00:06:36872 "indexed_db/indexed_db_tracing.h",
brettwb167c7332016-09-07 22:52:46873 "indexed_db/indexed_db_transaction.cc",
874 "indexed_db/indexed_db_transaction.h",
875 "indexed_db/indexed_db_transaction_coordinator.cc",
876 "indexed_db/indexed_db_transaction_coordinator.h",
877 "indexed_db/indexed_db_value.cc",
878 "indexed_db/indexed_db_value.h",
879 "indexed_db/leveldb/leveldb_comparator.h",
880 "indexed_db/leveldb/leveldb_database.cc",
881 "indexed_db/leveldb/leveldb_database.h",
882 "indexed_db/leveldb/leveldb_env.cc",
883 "indexed_db/leveldb/leveldb_env.h",
884 "indexed_db/leveldb/leveldb_factory.h",
dmurphec764052017-03-27 23:12:47885 "indexed_db/leveldb/leveldb_iterator.cc",
brettwb167c7332016-09-07 22:52:46886 "indexed_db/leveldb/leveldb_iterator.h",
887 "indexed_db/leveldb/leveldb_iterator_impl.cc",
888 "indexed_db/leveldb/leveldb_iterator_impl.h",
889 "indexed_db/leveldb/leveldb_transaction.cc",
890 "indexed_db/leveldb/leveldb_transaction.h",
891 "indexed_db/leveldb/leveldb_write_batch.cc",
892 "indexed_db/leveldb/leveldb_write_batch.h",
wychen589d05e2017-03-31 00:06:36893 "indexed_db/list_set.h",
mgiuca35f4c7152017-03-14 08:30:30894 "installedapp/installed_app_provider_impl_default.cc",
895 "installedapp/installed_app_provider_impl_default.h",
alexmos4bc26322017-07-01 00:57:14896 "isolated_origin_util.cc",
897 "isolated_origin_util.h",
zijiehe60167782017-04-28 22:31:02898 "keyboard_lock/keyboard_lock_service_impl.cc",
899 "keyboard_lock/keyboard_lock_service_impl.h",
brettwb167c7332016-09-07 22:52:46900 "leveldb_wrapper_impl.cc",
901 "leveldb_wrapper_impl.h",
902 "loader/async_resource_handler.cc",
903 "loader/async_resource_handler.h",
brettwb167c7332016-09-07 22:52:46904 "loader/detachable_resource_handler.cc",
905 "loader/detachable_resource_handler.h",
tzik47a9f9b2016-12-01 04:16:24906 "loader/downloaded_temp_file_impl.cc",
907 "loader/downloaded_temp_file_impl.h",
brettwb167c7332016-09-07 22:52:46908 "loader/global_routing_id.h",
909 "loader/intercepting_resource_handler.cc",
910 "loader/intercepting_resource_handler.h",
911 "loader/layered_resource_handler.cc",
912 "loader/layered_resource_handler.h",
913 "loader/loader_delegate.h",
914 "loader/loader_io_thread_notifier.cc",
915 "loader/loader_io_thread_notifier.h",
916 "loader/mime_sniffing_resource_handler.cc",
917 "loader/mime_sniffing_resource_handler.h",
918 "loader/mojo_async_resource_handler.cc",
919 "loader/mojo_async_resource_handler.h",
920 "loader/navigation_resource_handler.cc",
921 "loader/navigation_resource_handler.h",
922 "loader/navigation_resource_throttle.cc",
923 "loader/navigation_resource_throttle.h",
924 "loader/navigation_url_loader.cc",
925 "loader/navigation_url_loader.h",
926 "loader/navigation_url_loader_delegate.h",
927 "loader/navigation_url_loader_factory.h",
928 "loader/navigation_url_loader_impl.cc",
929 "loader/navigation_url_loader_impl.h",
930 "loader/navigation_url_loader_impl_core.cc",
931 "loader/navigation_url_loader_impl_core.h",
scottmg69985212017-04-12 16:47:28932 "loader/navigation_url_loader_network_service.cc",
933 "loader/navigation_url_loader_network_service.h",
brettwb167c7332016-09-07 22:52:46934 "loader/netlog_observer.cc",
935 "loader/netlog_observer.h",
mmenke87f5c77a2017-01-31 16:11:26936 "loader/null_resource_controller.cc",
937 "loader/null_resource_controller.h",
brettwb167c7332016-09-07 22:52:46938 "loader/redirect_to_file_resource_handler.cc",
939 "loader/redirect_to_file_resource_handler.h",
940 "loader/resource_buffer.cc",
941 "loader/resource_buffer.h",
tyoshino3b3ee8e92016-12-07 16:04:07942 "loader/resource_controller.h",
brettwb167c7332016-09-07 22:52:46943 "loader/resource_dispatcher_host_impl.cc",
944 "loader/resource_dispatcher_host_impl.h",
945 "loader/resource_handler.cc",
946 "loader/resource_handler.h",
947 "loader/resource_hints_impl.cc",
948 "loader/resource_loader.cc",
949 "loader/resource_loader.h",
950 "loader/resource_loader_delegate.h",
951 "loader/resource_message_delegate.cc",
952 "loader/resource_message_delegate.h",
953 "loader/resource_message_filter.cc",
954 "loader/resource_message_filter.h",
955 "loader/resource_request_info_impl.cc",
956 "loader/resource_request_info_impl.h",
horo227286f72016-11-29 11:10:33957 "loader/resource_requester_info.cc",
958 "loader/resource_requester_info.h",
brettwb167c7332016-09-07 22:52:46959 "loader/resource_scheduler.cc",
960 "loader/resource_scheduler.h",
961 "loader/resource_scheduler_filter.cc",
962 "loader/resource_scheduler_filter.h",
963 "loader/stream_resource_handler.cc",
964 "loader/stream_resource_handler.h",
965 "loader/stream_writer.cc",
966 "loader/stream_writer.h",
967 "loader/sync_resource_handler.cc",
968 "loader/sync_resource_handler.h",
969 "loader/temporary_file_stream.cc",
970 "loader/temporary_file_stream.h",
971 "loader/throttling_resource_handler.cc",
972 "loader/throttling_resource_handler.h",
973 "loader/upload_data_stream_builder.cc",
974 "loader/upload_data_stream_builder.h",
tzika6914612016-12-15 12:48:59975 "loader/upload_progress_tracker.cc",
976 "loader/upload_progress_tracker.h",
brettwb167c7332016-09-07 22:52:46977 "loader/url_loader_factory_impl.cc",
978 "loader/url_loader_factory_impl.h",
anantae60d1d42017-06-20 04:16:27979 "loader/url_loader_request_handler.cc",
kinuko69732972017-05-29 08:50:07980 "loader/url_loader_request_handler.h",
ke.he91eabe22017-05-19 04:02:11981 "loader/wake_lock_resource_throttle.cc",
982 "loader/wake_lock_resource_throttle.h",
brettwb167c7332016-09-07 22:52:46983 "loader_delegate_impl.cc",
984 "loader_delegate_impl.h",
985 "mach_broker_mac.h",
986 "mach_broker_mac.mm",
jinho.bang84cadc82017-06-14 16:59:34987 "manifest/manifest_icon_downloader.cc",
988 "manifest/manifest_icon_selector.cc",
brettwb167c7332016-09-07 22:52:46989 "manifest/manifest_manager_host.cc",
990 "manifest/manifest_manager_host.h",
brettwb167c7332016-09-07 22:52:46991 "media/android/browser_media_player_manager.cc",
992 "media/android/browser_media_player_manager.h",
brettwb167c7332016-09-07 22:52:46993 "media/android/browser_surface_view_manager.cc",
994 "media/android/browser_surface_view_manager.h",
995 "media/android/media_player_renderer.cc",
996 "media/android/media_player_renderer.h",
997 "media/android/media_resource_getter_impl.cc",
998 "media/android/media_resource_getter_impl.h",
brettwb167c7332016-09-07 22:52:46999 "media/android/media_web_contents_observer_android.cc",
1000 "media/android/media_web_contents_observer_android.h",
brettwb167c7332016-09-07 22:52:461001 "media/audible_metrics.cc",
1002 "media/audible_metrics.h",
1003 "media/audio_stream_monitor.cc",
1004 "media/audio_stream_monitor.h",
1005 "media/capture/audio_mirroring_manager.cc",
1006 "media/capture/audio_mirroring_manager.h",
brettwb167c7332016-09-07 22:52:461007 "media/capture/desktop_capture_device_uma_types.cc",
1008 "media/capture/desktop_capture_device_uma_types.h",
brettwb167c7332016-09-07 22:52:461009 "media/capture/web_contents_audio_input_stream.cc",
1010 "media/capture/web_contents_audio_input_stream.h",
1011 "media/capture/web_contents_audio_muter.cc",
1012 "media/capture/web_contents_audio_muter.h",
1013 "media/capture/web_contents_tracker.cc",
1014 "media/capture/web_contents_tracker.h",
xhwang5ba56be2016-12-13 07:13:031015 "media/cdm_registry_impl.cc",
1016 "media/cdm_registry_impl.h",
guidoudf036b32016-10-31 14:51:141017 "media/media_devices_permission_checker.cc",
1018 "media/media_devices_permission_checker.h",
guidou8a440b842017-01-30 13:58:431019 "media/media_devices_util.cc",
1020 "media/media_devices_util.h",
xhwangaa0bf6d2016-12-03 01:19:151021 "media/media_interface_proxy.cc",
1022 "media/media_interface_proxy.h",
brettwb167c7332016-09-07 22:52:461023 "media/media_internals.cc",
1024 "media/media_internals.h",
1025 "media/media_internals_handler.cc",
1026 "media/media_internals_handler.h",
1027 "media/media_internals_proxy.cc",
1028 "media/media_internals_proxy.h",
1029 "media/media_internals_ui.cc",
1030 "media/media_internals_ui.h",
1031 "media/media_web_contents_observer.cc",
1032 "media/media_web_contents_observer.h",
1033 "media/midi_host.cc",
1034 "media/midi_host.h",
zqzhanga2147f82016-10-18 22:53:261035 "media/session/audio_focus_delegate.h",
1036 "media/session/audio_focus_delegate_android.cc",
1037 "media/session/audio_focus_delegate_android.h",
1038 "media/session/audio_focus_delegate_default.cc",
brettwb167c7332016-09-07 22:52:461039 "media/session/audio_focus_manager.cc",
1040 "media/session/audio_focus_manager.h",
zqzhangd84e72872016-10-07 19:22:031041 "media/session/media_metadata_sanitizer.cc",
1042 "media/session/media_metadata_sanitizer.h",
zqzhang1adf3cb2016-11-01 11:26:451043 "media/session/media_session_android.cc",
1044 "media/session/media_session_android.h",
brettwb167c7332016-09-07 22:52:461045 "media/session/media_session_controller.cc",
1046 "media/session/media_session_controller.h",
1047 "media/session/media_session_controllers_manager.cc",
1048 "media/session/media_session_controllers_manager.h",
zqzhang1adf3cb2016-11-01 11:26:451049 "media/session/media_session_impl.cc",
1050 "media/session/media_session_impl.h",
zqzhanga2147f82016-10-18 22:53:261051 "media/session/media_session_player_observer.h",
zqzhangd84e72872016-10-07 19:22:031052 "media/session/media_session_service_impl.cc",
1053 "media/session/media_session_service_impl.h",
brettwb167c7332016-09-07 22:52:461054 "media/session/media_session_uma_helper.cc",
1055 "media/session/media_session_uma_helper.h",
slana0da4302016-11-07 17:37:011056 "media/url_provision_fetcher.cc",
1057 "media/url_provision_fetcher.h",
bashi810232f52017-03-03 04:38:021058 "memory/memory_condition_observer.cc",
1059 "memory/memory_condition_observer.h",
bashic5106fd2017-05-12 09:38:321060 "memory/memory_coordinator_default_policy.cc",
1061 "memory/memory_coordinator_default_policy.h",
bashi529cb14c2016-10-17 21:53:571062 "memory/memory_coordinator_impl.cc",
1063 "memory/memory_coordinator_impl.h",
bashia6264042016-09-15 04:49:511064 "memory/memory_monitor.cc",
1065 "memory/memory_monitor.h",
bashi66264142016-09-27 06:26:401066 "memory/memory_monitor_android.cc",
1067 "memory/memory_monitor_android.h",
bashia6264042016-09-15 04:49:511068 "memory/memory_monitor_win.cc",
1069 "memory/memory_monitor_win.h",
Scott Haseley7a02fce2017-08-01 21:55:011070 "memory/swap_metrics_delegate_uma.cc",
1071 "memory/swap_metrics_delegate_uma.h",
1072 "memory/swap_metrics_driver_impl.cc",
1073 "memory/swap_metrics_driver_impl.h",
1074 "memory/swap_metrics_driver_impl_linux.cc",
1075 "memory/swap_metrics_driver_impl_linux.h",
1076 "memory/swap_metrics_driver_impl_mac.cc",
1077 "memory/swap_metrics_driver_impl_mac.h",
1078 "memory/swap_metrics_driver_impl_win.cc",
brettwb167c7332016-09-07 22:52:461079 "message_port_provider.cc",
brettwb167c7332016-09-07 22:52:461080 "mime_registry_impl.cc",
1081 "mime_registry_impl.h",
brettwb167c7332016-09-07 22:52:461082 "net/browser_online_state_observer.cc",
1083 "net/browser_online_state_observer.h",
1084 "net/network_errors_listing_ui.cc",
1085 "net/network_errors_listing_ui.h",
tbansal15973c32017-05-10 18:40:441086 "net/network_quality_observer_impl.cc",
1087 "net/network_quality_observer_impl.h",
brettwb167c7332016-09-07 22:52:461088 "net/quota_policy_cookie_store.cc",
1089 "net/quota_policy_cookie_store.h",
juliatuttle95fe3cc52017-06-30 23:05:311090 "net/reporting_service_proxy.cc",
1091 "net/reporting_service_proxy.h",
brettwb167c7332016-09-07 22:52:461092 "net/view_blob_internals_job_factory.cc",
1093 "net/view_blob_internals_job_factory.h",
1094 "net/view_http_cache_job_factory.cc",
1095 "net/view_http_cache_job_factory.h",
1096 "notification_service_impl.cc",
1097 "notification_service_impl.h",
1098 "notifications/blink_notification_service_impl.cc",
1099 "notifications/blink_notification_service_impl.h",
1100 "notifications/notification_database.cc",
1101 "notifications/notification_database.h",
1102 "notifications/notification_database_data_conversions.cc",
1103 "notifications/notification_database_data_conversions.h",
1104 "notifications/notification_event_dispatcher_impl.cc",
1105 "notifications/notification_event_dispatcher_impl.h",
1106 "notifications/notification_id_generator.cc",
1107 "notifications/notification_id_generator.h",
1108 "notifications/notification_message_filter.cc",
1109 "notifications/notification_message_filter.h",
brettwb167c7332016-09-07 22:52:461110 "notifications/platform_notification_context_impl.cc",
1111 "notifications/platform_notification_context_impl.h",
1112 "notifications/type_converters.cc",
1113 "notifications/type_converters.h",
jinho.bang745d987b2016-12-14 19:06:541114 "payments/payment_app_context_impl.cc",
1115 "payments/payment_app_context_impl.h",
jinho.bangab430572016-12-16 14:33:581116 "payments/payment_app_database.cc",
1117 "payments/payment_app_database.h",
gogerald70b9dcb2017-07-05 05:28:491118 "payments/payment_app_info_fetcher.cc",
1119 "payments/payment_app_info_fetcher.h",
jinho.bangac34b3a32017-01-05 12:51:211120 "payments/payment_app_provider_impl.cc",
1121 "payments/payment_app_provider_impl.h",
gogeraldd8c5af342017-06-14 02:22:361122 "payments/payment_instrument_icon_fetcher.cc",
1123 "payments/payment_instrument_icon_fetcher.h",
jinho.bangbbb00c32017-03-30 15:09:091124 "payments/payment_manager.cc",
1125 "payments/payment_manager.h",
brettwb167c7332016-09-07 22:52:461126 "permissions/permission_service_context.cc",
1127 "permissions/permission_service_context.h",
1128 "permissions/permission_service_impl.cc",
1129 "permissions/permission_service_impl.h",
brettwb167c7332016-09-07 22:52:461130 "presentation/presentation_service_impl.cc",
1131 "presentation/presentation_service_impl.h",
brettwb167c7332016-09-07 22:52:461132 "profiler_controller_impl.cc",
1133 "profiler_controller_impl.h",
1134 "profiler_message_filter.cc",
1135 "profiler_message_filter.h",
awdf5f7440c2017-01-09 12:38:561136 "push_messaging/push_messaging_context.cc",
1137 "push_messaging/push_messaging_context.h",
ke.he5f426e322017-02-22 12:37:121138 "push_messaging/push_messaging_manager.cc",
1139 "push_messaging/push_messaging_manager.h",
brettwb167c7332016-09-07 22:52:461140 "push_messaging/push_messaging_router.cc",
1141 "push_messaging/push_messaging_router.h",
1142 "quota_dispatcher_host.cc",
1143 "quota_dispatcher_host.h",
brettwb167c7332016-09-07 22:52:461144 "renderer_host/clipboard_message_filter.cc",
1145 "renderer_host/clipboard_message_filter.h",
1146 "renderer_host/clipboard_message_filter_mac.mm",
Ken Buchanan520f29c2017-07-13 23:29:511147 "renderer_host/cursor_manager.cc",
1148 "renderer_host/cursor_manager.h",
brettwb167c7332016-09-07 22:52:461149 "renderer_host/database_message_filter.cc",
1150 "renderer_host/database_message_filter.h",
brettwb167c7332016-09-07 22:52:461151 "renderer_host/dip_util.cc",
1152 "renderer_host/dip_util.h",
1153 "renderer_host/dwrite_font_proxy_message_filter_win.cc",
1154 "renderer_host/dwrite_font_proxy_message_filter_win.h",
1155 "renderer_host/event_with_latency_info.h",
1156 "renderer_host/file_utilities_message_filter.cc",
1157 "renderer_host/file_utilities_message_filter.h",
1158 "renderer_host/font_utils_linux.cc",
1159 "renderer_host/font_utils_linux.h",
1160 "renderer_host/frame_metadata_util.cc",
1161 "renderer_host/frame_metadata_util.h",
samans2040988b2017-04-11 23:58:351162 "renderer_host/frame_sink_provider_impl.cc",
1163 "renderer_host/frame_sink_provider_impl.h",
brettwb167c7332016-09-07 22:52:461164 "renderer_host/input/gesture_event_queue.cc",
1165 "renderer_host/input/gesture_event_queue.h",
alexis.menardb12ba342017-04-15 09:01:191166 "renderer_host/input/input_device_change_observer.cc",
1167 "renderer_host/input/input_device_change_observer.h",
Hayley Ferrbb5c0152017-07-27 22:57:191168 "renderer_host/input/input_disposition_handler.h",
brettwb167c7332016-09-07 22:52:461169 "renderer_host/input/input_router.h",
1170 "renderer_host/input/input_router_client.h",
1171 "renderer_host/input/input_router_config_helper.cc",
1172 "renderer_host/input/input_router_config_helper.h",
Dave Tapuska8a112332017-07-24 17:23:181173 "renderer_host/input/input_router_impl.cc",
1174 "renderer_host/input/input_router_impl.h",
Dave Tapuskac268151b82017-06-12 13:59:211175 "renderer_host/input/legacy_input_router_impl.cc",
1176 "renderer_host/input/legacy_input_router_impl.h",
Dave Tapuskab336b922017-07-06 19:24:051177 "renderer_host/input/legacy_ipc_widget_input_handler.cc",
1178 "renderer_host/input/legacy_ipc_widget_input_handler.h",
dtapuska73607ca2017-01-27 17:20:191179 "renderer_host/input/legacy_touch_event_queue.cc",
1180 "renderer_host/input/legacy_touch_event_queue.h",
brettwb167c7332016-09-07 22:52:461181 "renderer_host/input/motion_event_web.cc",
1182 "renderer_host/input/motion_event_web.h",
1183 "renderer_host/input/mouse_wheel_event_queue.cc",
1184 "renderer_host/input/mouse_wheel_event_queue.h",
sahel09de0d012017-06-07 16:09:441185 "renderer_host/input/mouse_wheel_phase_handler.cc",
1186 "renderer_host/input/mouse_wheel_phase_handler.h",
brettwb167c7332016-09-07 22:52:461187 "renderer_host/input/mouse_wheel_rails_filter_mac.cc",
1188 "renderer_host/input/mouse_wheel_rails_filter_mac.h",
dtapuska53f9f4ee2017-02-27 01:14:261189 "renderer_host/input/passthrough_touch_event_queue.cc",
1190 "renderer_host/input/passthrough_touch_event_queue.h",
brettwb167c7332016-09-07 22:52:461191 "renderer_host/input/render_widget_host_latency_tracker.cc",
1192 "renderer_host/input/render_widget_host_latency_tracker.h",
1193 "renderer_host/input/stylus_text_selector.cc",
1194 "renderer_host/input/stylus_text_selector.h",
1195 "renderer_host/input/synthetic_gesture.cc",
1196 "renderer_host/input/synthetic_gesture.h",
1197 "renderer_host/input/synthetic_gesture_controller.cc",
1198 "renderer_host/input/synthetic_gesture_controller.h",
1199 "renderer_host/input/synthetic_gesture_target.h",
1200 "renderer_host/input/synthetic_gesture_target_aura.cc",
1201 "renderer_host/input/synthetic_gesture_target_aura.h",
1202 "renderer_host/input/synthetic_gesture_target_base.cc",
1203 "renderer_host/input/synthetic_gesture_target_base.h",
1204 "renderer_host/input/synthetic_gesture_target_mac.h",
1205 "renderer_host/input/synthetic_gesture_target_mac.mm",
lanwei1060f1f2016-11-28 23:00:311206 "renderer_host/input/synthetic_mouse_driver.cc",
1207 "renderer_host/input/synthetic_mouse_driver.h",
lanweid7de40d12017-01-26 22:52:191208 "renderer_host/input/synthetic_pen_driver.cc",
1209 "renderer_host/input/synthetic_pen_driver.h",
brettwb167c7332016-09-07 22:52:461210 "renderer_host/input/synthetic_pinch_gesture.cc",
1211 "renderer_host/input/synthetic_pinch_gesture.h",
brettwb167c7332016-09-07 22:52:461212 "renderer_host/input/synthetic_pointer_action.cc",
1213 "renderer_host/input/synthetic_pointer_action.h",
lanwei1060f1f2016-11-28 23:00:311214 "renderer_host/input/synthetic_pointer_driver.cc",
1215 "renderer_host/input/synthetic_pointer_driver.h",
brettwb167c7332016-09-07 22:52:461216 "renderer_host/input/synthetic_smooth_drag_gesture.cc",
1217 "renderer_host/input/synthetic_smooth_drag_gesture.h",
1218 "renderer_host/input/synthetic_smooth_move_gesture.cc",
1219 "renderer_host/input/synthetic_smooth_move_gesture.h",
1220 "renderer_host/input/synthetic_smooth_scroll_gesture.cc",
1221 "renderer_host/input/synthetic_smooth_scroll_gesture.h",
1222 "renderer_host/input/synthetic_tap_gesture.cc",
1223 "renderer_host/input/synthetic_tap_gesture.h",
lanwei1060f1f2016-11-28 23:00:311224 "renderer_host/input/synthetic_touch_driver.cc",
1225 "renderer_host/input/synthetic_touch_driver.h",
brettwb167c7332016-09-07 22:52:461226 "renderer_host/input/synthetic_touchpad_pinch_gesture.cc",
1227 "renderer_host/input/synthetic_touchpad_pinch_gesture.h",
1228 "renderer_host/input/synthetic_touchscreen_pinch_gesture.cc",
1229 "renderer_host/input/synthetic_touchscreen_pinch_gesture.h",
1230 "renderer_host/input/tap_suppression_controller.cc",
1231 "renderer_host/input/tap_suppression_controller.h",
1232 "renderer_host/input/tap_suppression_controller_client.h",
1233 "renderer_host/input/timeout_monitor.cc",
1234 "renderer_host/input/timeout_monitor.h",
1235 "renderer_host/input/touch_action_filter.cc",
1236 "renderer_host/input/touch_action_filter.h",
1237 "renderer_host/input/touch_emulator.cc",
1238 "renderer_host/input/touch_emulator.h",
1239 "renderer_host/input/touch_emulator_client.h",
brettwb167c7332016-09-07 22:52:461240 "renderer_host/input/touch_event_queue.h",
1241 "renderer_host/input/touch_selection_controller_client_aura.cc",
1242 "renderer_host/input/touch_selection_controller_client_aura.h",
wjmaclean9a658312017-05-25 17:03:571243 "renderer_host/input/touch_selection_controller_client_child_frame.cc",
1244 "renderer_host/input/touch_selection_controller_client_child_frame.h",
dtapuska48fd5b92017-02-22 15:16:041245 "renderer_host/input/touch_timeout_handler.cc",
1246 "renderer_host/input/touch_timeout_handler.h",
brettwb167c7332016-09-07 22:52:461247 "renderer_host/input/touchpad_tap_suppression_controller.cc",
1248 "renderer_host/input/touchpad_tap_suppression_controller.h",
1249 "renderer_host/input/touchscreen_tap_suppression_controller.cc",
1250 "renderer_host/input/touchscreen_tap_suppression_controller.h",
1251 "renderer_host/input/web_input_event_builders_android.cc",
1252 "renderer_host/input/web_input_event_builders_android.h",
1253 "renderer_host/input/web_input_event_builders_mac.h",
1254 "renderer_host/input/web_input_event_builders_mac.mm",
1255 "renderer_host/legacy_render_widget_host_win.cc",
1256 "renderer_host/legacy_render_widget_host_win.h",
brettwb167c7332016-09-07 22:52:461257 "renderer_host/media/audio_input_device_manager.cc",
1258 "renderer_host/media/audio_input_device_manager.h",
1259 "renderer_host/media/audio_input_renderer_host.cc",
1260 "renderer_host/media/audio_input_renderer_host.h",
1261 "renderer_host/media/audio_input_sync_writer.cc",
1262 "renderer_host/media/audio_input_sync_writer.h",
maxmorinb08e8422016-11-18 09:34:011263 "renderer_host/media/audio_output_authorization_handler.cc",
1264 "renderer_host/media/audio_output_authorization_handler.h",
maxmorin5d6f36b2017-02-01 08:51:211265 "renderer_host/media/audio_output_delegate_impl.cc",
1266 "renderer_host/media/audio_output_delegate_impl.h",
brettwb167c7332016-09-07 22:52:461267 "renderer_host/media/audio_renderer_host.cc",
1268 "renderer_host/media/audio_renderer_host.h",
1269 "renderer_host/media/audio_sync_reader.cc",
1270 "renderer_host/media/audio_sync_reader.h",
chfremerc9148152017-04-17 17:10:261271 "renderer_host/media/in_process_launched_video_capture_device.cc",
1272 "renderer_host/media/in_process_launched_video_capture_device.h",
1273 "renderer_host/media/in_process_video_capture_device_launcher.cc",
1274 "renderer_host/media/in_process_video_capture_device_launcher.h",
chfremer3b099812017-04-11 17:30:501275 "renderer_host/media/in_process_video_capture_provider.cc",
1276 "renderer_host/media/in_process_video_capture_provider.h",
brettwb167c7332016-09-07 22:52:461277 "renderer_host/media/media_capture_devices_impl.cc",
1278 "renderer_host/media/media_capture_devices_impl.h",
guidou9357cc52016-10-11 19:53:361279 "renderer_host/media/media_devices_dispatcher_host.cc",
1280 "renderer_host/media/media_devices_dispatcher_host.h",
guidoucc6d4602016-09-23 21:28:431281 "renderer_host/media/media_devices_manager.cc",
1282 "renderer_host/media/media_devices_manager.h",
brettwb167c7332016-09-07 22:52:461283 "renderer_host/media/media_stream_dispatcher_host.cc",
1284 "renderer_host/media/media_stream_dispatcher_host.h",
1285 "renderer_host/media/media_stream_manager.cc",
1286 "renderer_host/media/media_stream_manager.h",
1287 "renderer_host/media/media_stream_provider.h",
1288 "renderer_host/media/media_stream_requester.h",
1289 "renderer_host/media/media_stream_track_metrics_host.cc",
1290 "renderer_host/media/media_stream_track_metrics_host.h",
1291 "renderer_host/media/media_stream_ui_proxy.cc",
1292 "renderer_host/media/media_stream_ui_proxy.h",
maxmorin2781f5ff2017-04-04 08:29:411293 "renderer_host/media/render_frame_audio_output_stream_factory.cc",
1294 "renderer_host/media/render_frame_audio_output_stream_factory.h",
1295 "renderer_host/media/renderer_audio_output_stream_factory_context.h",
1296 "renderer_host/media/renderer_audio_output_stream_factory_context_impl.cc",
1297 "renderer_host/media/renderer_audio_output_stream_factory_context_impl.h",
chfremer70b40e5122017-05-23 15:13:571298 "renderer_host/media/service_launched_video_capture_device.cc",
1299 "renderer_host/media/service_launched_video_capture_device.h",
1300 "renderer_host/media/service_video_capture_device_launcher.cc",
1301 "renderer_host/media/service_video_capture_device_launcher.h",
1302 "renderer_host/media/service_video_capture_provider.cc",
1303 "renderer_host/media/service_video_capture_provider.h",
brettwb167c7332016-09-07 22:52:461304 "renderer_host/media/video_capture_controller.cc",
1305 "renderer_host/media/video_capture_controller.h",
1306 "renderer_host/media/video_capture_controller_event_handler.h",
chfremerc9148152017-04-17 17:10:261307 "renderer_host/media/video_capture_device_launch_observer.h",
brettwb167c7332016-09-07 22:52:461308 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc",
1309 "renderer_host/media/video_capture_gpu_jpeg_decoder.h",
1310 "renderer_host/media/video_capture_host.cc",
1311 "renderer_host/media/video_capture_host.h",
1312 "renderer_host/media/video_capture_manager.cc",
1313 "renderer_host/media/video_capture_manager.h",
chfremer3b099812017-04-11 17:30:501314 "renderer_host/media/video_capture_provider.h",
chfremer70b40e5122017-05-23 15:13:571315 "renderer_host/media/video_capture_provider_switcher.cc",
1316 "renderer_host/media/video_capture_provider_switcher.h",
brettwb167c7332016-09-07 22:52:461317 "renderer_host/native_web_keyboard_event_aura.cc",
1318 "renderer_host/native_web_keyboard_event_mac.mm",
kylechar30b894d2017-04-13 12:09:251319 "renderer_host/offscreen_canvas_provider_impl.cc",
1320 "renderer_host/offscreen_canvas_provider_impl.h",
brettwb167c7332016-09-07 22:52:461321 "renderer_host/offscreen_canvas_surface_impl.cc",
1322 "renderer_host/offscreen_canvas_surface_impl.h",
1323 "renderer_host/overscroll_configuration.cc",
1324 "renderer_host/overscroll_controller.cc",
1325 "renderer_host/overscroll_controller.h",
1326 "renderer_host/overscroll_controller_delegate.h",
1327 "renderer_host/render_message_filter.cc",
1328 "renderer_host/render_message_filter.h",
1329 "renderer_host/render_process_host_impl.cc",
1330 "renderer_host/render_process_host_impl.h",
1331 "renderer_host/render_sandbox_host_linux.cc",
1332 "renderer_host/render_sandbox_host_linux.h",
1333 "renderer_host/render_view_host_delegate.cc",
1334 "renderer_host/render_view_host_delegate.h",
rlanday7f2ec7f2016-12-14 02:28:341335 "renderer_host/render_view_host_delegate_view.cc",
brettwb167c7332016-09-07 22:52:461336 "renderer_host/render_view_host_delegate_view.h",
1337 "renderer_host/render_view_host_factory.cc",
1338 "renderer_host/render_view_host_factory.h",
1339 "renderer_host/render_view_host_impl.cc",
1340 "renderer_host/render_view_host_impl.h",
1341 "renderer_host/render_widget_helper.cc",
1342 "renderer_host/render_widget_helper.h",
1343 "renderer_host/render_widget_host_delegate.cc",
1344 "renderer_host/render_widget_host_delegate.h",
1345 "renderer_host/render_widget_host_impl.cc",
1346 "renderer_host/render_widget_host_impl.h",
1347 "renderer_host/render_widget_host_input_event_router.cc",
1348 "renderer_host/render_widget_host_input_event_router.h",
1349 "renderer_host/render_widget_host_owner_delegate.h",
1350 "renderer_host/render_widget_host_view_aura.cc",
1351 "renderer_host/render_widget_host_view_aura.h",
1352 "renderer_host/render_widget_host_view_base.cc",
1353 "renderer_host/render_widget_host_view_base.h",
1354 "renderer_host/render_widget_host_view_base_observer.cc",
1355 "renderer_host/render_widget_host_view_base_observer.h",
samans5846cb2c2017-01-31 03:09:471356 "renderer_host/render_widget_host_view_frame_subscriber.h",
brettwb167c7332016-09-07 22:52:461357 "renderer_host/render_widget_host_view_mac.h",
1358 "renderer_host/render_widget_host_view_mac.mm",
1359 "renderer_host/render_widget_host_view_mac_dictionary_helper.h",
1360 "renderer_host/render_widget_host_view_mac_dictionary_helper.mm",
1361 "renderer_host/render_widget_host_view_mac_editcommand_helper.h",
1362 "renderer_host/render_widget_host_view_mac_editcommand_helper.mm",
brettwb167c7332016-09-07 22:52:461363 "renderer_host/sandbox_ipc_linux.cc",
1364 "renderer_host/sandbox_ipc_linux.h",
1365 "renderer_host/text_input_client_mac.h",
1366 "renderer_host/text_input_client_mac.mm",
1367 "renderer_host/text_input_client_message_filter.h",
1368 "renderer_host/text_input_client_message_filter.mm",
1369 "renderer_host/text_input_manager.cc",
1370 "renderer_host/text_input_manager.h",
1371 "renderer_host/ui_events_helper.cc",
1372 "renderer_host/ui_events_helper.h",
1373 "renderer_host/webmenurunner_mac.h",
1374 "renderer_host/webmenurunner_mac.mm",
1375 "resolve_proxy_msg_helper.cc",
1376 "resolve_proxy_msg_helper.h",
1377 "resource_context_impl.cc",
1378 "resource_context_impl.h",
kerrnel0f7a1922017-06-26 23:40:581379 "sandbox_parameters_mac.h",
1380 "sandbox_parameters_mac.mm",
leon.han552e9de2017-02-09 14:37:301381 "screen_orientation/screen_orientation_provider.cc",
1382 "screen_orientation/screen_orientation_provider.h",
Ken Rockotc7a279c2017-05-04 23:51:451383 "service_manager/common_browser_interfaces.cc",
1384 "service_manager/common_browser_interfaces.h",
benff461632016-10-06 14:27:331385 "service_manager/service_manager_context.cc",
1386 "service_manager/service_manager_context.h",
Kinuko Yasuda38e8c8f82017-08-02 12:45:551387 "service_worker/browser_side_service_worker_event_dispatcher.cc",
1388 "service_worker/browser_side_service_worker_event_dispatcher.h",
brettwb167c7332016-09-07 22:52:461389 "service_worker/embedded_worker_instance.cc",
1390 "service_worker/embedded_worker_instance.h",
1391 "service_worker/embedded_worker_registry.cc",
1392 "service_worker/embedded_worker_registry.h",
1393 "service_worker/embedded_worker_status.h",
1394 "service_worker/foreign_fetch_request_handler.cc",
1395 "service_worker/foreign_fetch_request_handler.h",
1396 "service_worker/link_header_support.cc",
1397 "service_worker/link_header_support.h",
1398 "service_worker/service_worker_blob_reader.cc",
1399 "service_worker/service_worker_blob_reader.h",
1400 "service_worker/service_worker_cache_writer.cc",
1401 "service_worker/service_worker_cache_writer.h",
1402 "service_worker/service_worker_client_utils.cc",
1403 "service_worker/service_worker_client_utils.h",
Yuki Yamadaa20ac9c2017-08-10 08:04:201404 "service_worker/service_worker_content_settings_proxy_impl.cc",
1405 "service_worker/service_worker_content_settings_proxy_impl.h",
brettwb167c7332016-09-07 22:52:461406 "service_worker/service_worker_context_core.cc",
1407 "service_worker/service_worker_context_core.h",
dominickneadb0e92017-06-13 03:23:371408 "service_worker/service_worker_context_core_observer.h",
brettwb167c7332016-09-07 22:52:461409 "service_worker/service_worker_context_request_handler.cc",
1410 "service_worker/service_worker_context_request_handler.h",
1411 "service_worker/service_worker_context_watcher.cc",
1412 "service_worker/service_worker_context_watcher.h",
1413 "service_worker/service_worker_context_wrapper.cc",
1414 "service_worker/service_worker_context_wrapper.h",
1415 "service_worker/service_worker_controllee_request_handler.cc",
1416 "service_worker/service_worker_controllee_request_handler.h",
shimazu1ac68cf2017-04-20 06:03:461417 "service_worker/service_worker_data_pipe_reader.cc",
1418 "service_worker/service_worker_data_pipe_reader.h",
brettwb167c7332016-09-07 22:52:461419 "service_worker/service_worker_database.cc",
1420 "service_worker/service_worker_database.h",
brettwb167c7332016-09-07 22:52:461421 "service_worker/service_worker_disk_cache.cc",
1422 "service_worker/service_worker_disk_cache.h",
1423 "service_worker/service_worker_dispatcher_host.cc",
1424 "service_worker/service_worker_dispatcher_host.h",
1425 "service_worker/service_worker_fetch_dispatcher.cc",
1426 "service_worker/service_worker_fetch_dispatcher.h",
1427 "service_worker/service_worker_handle.cc",
1428 "service_worker/service_worker_handle.h",
1429 "service_worker/service_worker_info.cc",
1430 "service_worker/service_worker_info.h",
Makoto Shimazu166906a2017-07-12 06:04:011431 "service_worker/service_worker_installed_scripts_sender.cc",
1432 "service_worker/service_worker_installed_scripts_sender.h",
brettwb167c7332016-09-07 22:52:461433 "service_worker/service_worker_internals_ui.cc",
1434 "service_worker/service_worker_internals_ui.h",
1435 "service_worker/service_worker_job_coordinator.cc",
1436 "service_worker/service_worker_job_coordinator.h",
falkenf93cb21f2017-03-17 03:05:301437 "service_worker/service_worker_lifetime_tracker.cc",
1438 "service_worker/service_worker_lifetime_tracker.h",
brettwb167c7332016-09-07 22:52:461439 "service_worker/service_worker_metrics.cc",
1440 "service_worker/service_worker_metrics.h",
clamydf7927e2016-09-22 13:03:141441 "service_worker/service_worker_navigation_handle.cc",
1442 "service_worker/service_worker_navigation_handle.h",
1443 "service_worker/service_worker_navigation_handle_core.cc",
1444 "service_worker/service_worker_navigation_handle_core.h",
brettwb167c7332016-09-07 22:52:461445 "service_worker/service_worker_process_manager.cc",
1446 "service_worker/service_worker_process_manager.h",
1447 "service_worker/service_worker_provider_host.cc",
1448 "service_worker/service_worker_provider_host.h",
1449 "service_worker/service_worker_quota_client.cc",
1450 "service_worker/service_worker_quota_client.h",
1451 "service_worker/service_worker_read_from_cache_job.cc",
1452 "service_worker/service_worker_read_from_cache_job.h",
1453 "service_worker/service_worker_register_job.cc",
1454 "service_worker/service_worker_register_job.h",
1455 "service_worker/service_worker_register_job_base.h",
1456 "service_worker/service_worker_registration.cc",
1457 "service_worker/service_worker_registration.h",
1458 "service_worker/service_worker_registration_handle.cc",
1459 "service_worker/service_worker_registration_handle.h",
1460 "service_worker/service_worker_registration_status.cc",
1461 "service_worker/service_worker_registration_status.h",
1462 "service_worker/service_worker_request_handler.cc",
1463 "service_worker/service_worker_request_handler.h",
1464 "service_worker/service_worker_response_info.cc",
1465 "service_worker/service_worker_response_info.h",
1466 "service_worker/service_worker_script_cache_map.cc",
1467 "service_worker/service_worker_script_cache_map.h",
1468 "service_worker/service_worker_storage.cc",
1469 "service_worker/service_worker_storage.h",
brettwb167c7332016-09-07 22:52:461470 "service_worker/service_worker_unregister_job.cc",
1471 "service_worker/service_worker_unregister_job.h",
scottmg30fc2c92017-05-18 08:42:021472 "service_worker/service_worker_url_job_wrapper.cc",
1473 "service_worker/service_worker_url_job_wrapper.h",
kinukod9008b22017-06-08 09:26:181474 "service_worker/service_worker_url_loader_job.cc",
1475 "service_worker/service_worker_url_loader_job.h",
brettwb167c7332016-09-07 22:52:461476 "service_worker/service_worker_url_request_job.cc",
1477 "service_worker/service_worker_url_request_job.h",
1478 "service_worker/service_worker_version.cc",
1479 "service_worker/service_worker_version.h",
1480 "service_worker/service_worker_write_to_cache_job.cc",
1481 "service_worker/service_worker_write_to_cache_job.h",
Yuki Yamada68992b02017-07-31 06:13:451482 "shared_worker/shared_worker_content_settings_proxy_impl.cc",
1483 "shared_worker/shared_worker_content_settings_proxy_impl.h",
brettwb167c7332016-09-07 22:52:461484 "shared_worker/shared_worker_host.cc",
1485 "shared_worker/shared_worker_host.h",
1486 "shared_worker/shared_worker_instance.cc",
1487 "shared_worker/shared_worker_instance.h",
1488 "shared_worker/shared_worker_message_filter.cc",
1489 "shared_worker/shared_worker_message_filter.h",
1490 "shared_worker/shared_worker_service_impl.cc",
1491 "shared_worker/shared_worker_service_impl.h",
1492 "shared_worker/worker_document_set.cc",
1493 "shared_worker/worker_document_set.h",
1494 "shared_worker/worker_storage_partition.cc",
1495 "shared_worker/worker_storage_partition.h",
1496 "site_instance_impl.cc",
1497 "site_instance_impl.h",
brettwb167c7332016-09-07 22:52:461498 "speech/speech_recognition_dispatcher_host.cc",
1499 "speech/speech_recognition_dispatcher_host.h",
brettwb167c7332016-09-07 22:52:461500 "speech/speech_recognition_manager_impl.cc",
1501 "speech/speech_recognition_manager_impl.h",
1502 "speech/speech_recognizer.h",
brettwb167c7332016-09-07 22:52:461503 "speech/speech_recognizer_impl_android.cc",
1504 "speech/speech_recognizer_impl_android.h",
Jochen Eisingerbc991412017-07-14 22:06:221505 "ssl/ignore_errors_cert_verifier.cc",
brettwb167c7332016-09-07 22:52:461506 "ssl/ssl_client_auth_handler.cc",
1507 "ssl/ssl_client_auth_handler.h",
1508 "ssl/ssl_error_handler.cc",
1509 "ssl/ssl_error_handler.h",
1510 "ssl/ssl_manager.cc",
1511 "ssl/ssl_manager.h",
brettwb167c7332016-09-07 22:52:461512 "startup_task_runner.cc",
1513 "startup_task_runner.h",
1514 "storage_partition_impl.cc",
1515 "storage_partition_impl.h",
1516 "storage_partition_impl_map.cc",
1517 "storage_partition_impl_map.h",
1518 "streams/stream.cc",
1519 "streams/stream.h",
1520 "streams/stream_context.cc",
1521 "streams/stream_context.h",
1522 "streams/stream_handle_impl.cc",
1523 "streams/stream_handle_impl.h",
1524 "streams/stream_read_observer.h",
1525 "streams/stream_register_observer.h",
1526 "streams/stream_registry.cc",
1527 "streams/stream_registry.h",
1528 "streams/stream_url_request_job.cc",
1529 "streams/stream_url_request_job.h",
1530 "streams/stream_write_observer.h",
1531 "theme_helper_mac.h",
1532 "theme_helper_mac.mm",
ssideb549622017-03-29 21:46:001533 "tracing/background_memory_tracing_observer.cc",
1534 "tracing/background_memory_tracing_observer.h",
brettwb167c7332016-09-07 22:52:461535 "tracing/background_tracing_config_impl.cc",
1536 "tracing/background_tracing_config_impl.h",
1537 "tracing/background_tracing_manager_impl.cc",
1538 "tracing/background_tracing_manager_impl.h",
1539 "tracing/background_tracing_rule.cc",
1540 "tracing/background_tracing_rule.h",
1541 "tracing/etw_tracing_agent_win.cc",
1542 "tracing/etw_tracing_agent_win.h",
1543 "tracing/file_tracing_provider_impl.cc",
1544 "tracing/file_tracing_provider_impl.h",
1545 "tracing/trace_message_filter.cc",
1546 "tracing/trace_message_filter.h",
1547 "tracing/tracing_controller_impl.cc",
1548 "tracing/tracing_controller_impl.h",
1549 "tracing/tracing_controller_impl_data_sinks.cc",
1550 "tracing/tracing_ui.cc",
1551 "tracing/tracing_ui.h",
jamc1905862017-05-16 14:45:301552 "url_loader_factory_getter.cc",
1553 "url_loader_factory_getter.h",
brettwb167c7332016-09-07 22:52:461554 "utility_process_host_impl.cc",
1555 "utility_process_host_impl.h",
blundelle75a8f92017-03-27 08:11:171556 "wake_lock/wake_lock_context_host.cc",
1557 "wake_lock/wake_lock_context_host.h",
brettwb167c7332016-09-07 22:52:461558 "web_contents/aura/gesture_nav_simple.cc",
1559 "web_contents/aura/gesture_nav_simple.h",
1560 "web_contents/aura/overscroll_navigation_overlay.cc",
1561 "web_contents/aura/overscroll_navigation_overlay.h",
1562 "web_contents/aura/overscroll_window_animation.cc",
1563 "web_contents/aura/overscroll_window_animation.h",
1564 "web_contents/aura/overscroll_window_delegate.cc",
1565 "web_contents/aura/overscroll_window_delegate.h",
1566 "web_contents/aura/shadow_layer_delegate.cc",
1567 "web_contents/aura/shadow_layer_delegate.h",
mfomitchev06b846452017-07-25 23:39:091568 "web_contents/aura/types.cc",
1569 "web_contents/aura/types.h",
brettwb167c7332016-09-07 22:52:461570 "web_contents/web_contents_impl.cc",
1571 "web_contents/web_contents_impl.h",
1572 "web_contents/web_contents_view.h",
1573 "web_contents/web_contents_view_aura.cc",
1574 "web_contents/web_contents_view_aura.h",
1575 "web_contents/web_contents_view_child_frame.cc",
1576 "web_contents/web_contents_view_child_frame.h",
1577 "web_contents/web_contents_view_guest.cc",
1578 "web_contents/web_contents_view_guest.h",
1579 "web_contents/web_contents_view_mac.h",
1580 "web_contents/web_contents_view_mac.mm",
1581 "web_contents/web_drag_dest_mac.h",
1582 "web_contents/web_drag_dest_mac.mm",
1583 "web_contents/web_drag_source_mac.h",
1584 "web_contents/web_drag_source_mac.mm",
1585 "web_contents/web_drag_utils_win.cc",
1586 "web_contents/web_drag_utils_win.h",
kpaulhamus7c9f00942017-06-30 11:08:451587 "webauth/authenticator_impl.cc",
1588 "webauth/authenticator_impl.h",
yhirano4a593832016-10-24 18:58:221589 "websockets/websocket_handshake_request_info_impl.cc",
1590 "websockets/websocket_handshake_request_info_impl.h",
brettwb167c7332016-09-07 22:52:461591 "websockets/websocket_impl.cc",
1592 "websockets/websocket_impl.h",
1593 "websockets/websocket_manager.cc",
1594 "websockets/websocket_manager.h",
1595 "webui/content_web_ui_controller_factory.cc",
1596 "webui/content_web_ui_controller_factory.h",
1597 "webui/generic_handler.cc",
1598 "webui/generic_handler.h",
dschuyler613a1032016-12-15 19:22:351599 "webui/i18n_source_stream.cc",
1600 "webui/i18n_source_stream.h",
jam4374b952017-05-10 21:16:411601 "webui/network_error_url_loader.cc",
1602 "webui/network_error_url_loader.h",
brettwb167c7332016-09-07 22:52:461603 "webui/shared_resources_data_source.cc",
1604 "webui/shared_resources_data_source.h",
1605 "webui/url_data_manager.cc",
1606 "webui/url_data_manager.h",
1607 "webui/url_data_manager_backend.cc",
1608 "webui/url_data_manager_backend.h",
1609 "webui/url_data_source_impl.cc",
1610 "webui/url_data_source_impl.h",
1611 "webui/web_ui_controller_factory_registry.cc",
1612 "webui/web_ui_controller_factory_registry.h",
1613 "webui/web_ui_data_source_impl.cc",
1614 "webui/web_ui_data_source_impl.h",
1615 "webui/web_ui_impl.cc",
1616 "webui/web_ui_impl.h",
1617 "webui/web_ui_message_handler.cc",
jam8c4edd02017-05-06 18:50:331618 "webui/web_ui_url_loader_factory.cc",
1619 "webui/web_ui_url_loader_factory.h",
brettwb167c7332016-09-07 22:52:461620 "zygote_host/zygote_communication_linux.cc",
1621 "zygote_host/zygote_communication_linux.h",
1622 "zygote_host/zygote_handle_linux.cc",
1623 "zygote_host/zygote_host_impl_linux.cc",
1624 "zygote_host/zygote_host_impl_linux.h",
1625 ]
[email protected]743530f2014-06-12 19:38:501626
[email protected]4db51ec2014-05-29 21:08:321627 if (toolkit_views) {
1628 deps += [ "//ui/events" ]
1629 }
1630
bcwhite98900b02016-09-19 20:13:031631 # ChromeOS also defines linux but their memory-monitors conflict.
1632 if (is_chromeos) {
1633 sources += [
1634 "memory/memory_monitor_chromeos.cc",
1635 "memory/memory_monitor_chromeos.h",
1636 ]
1637 } else {
1638 sources += [
1639 "memory/memory_monitor_linux.cc",
1640 "memory/memory_monitor_linux.h",
1641 ]
1642 }
1643
brettw3c98c7d32017-07-25 01:44:201644 if (is_posix) {
morritad95714f2014-10-01 02:37:241645 sources += [
brettw3c98c7d32017-07-25 01:44:201646 "posix_file_descriptor_info_impl.cc",
1647 "posix_file_descriptor_info_impl.h",
morritad95714f2014-10-01 02:37:241648 ]
[email protected]4db51ec2014-05-29 21:08:321649 }
1650
vitalybuka93eea402014-11-05 23:47:151651 if (enable_basic_printing || enable_print_preview) {
[email protected]743530f2014-06-12 19:38:501652 deps += [ "//printing" ]
[email protected]4db51ec2014-05-29 21:08:321653 }
1654
jamb3c1195df2016-03-21 20:41:291655 if (!is_mac) {
[email protected]743530f2014-06-12 19:38:501656 deps += [ "//sandbox" ]
1657 }
jamb3c1195df2016-03-21 20:41:291658 if (!is_android) {
mohsenc8b9ca7e2017-02-14 05:39:411659 deps += [
Evan Stade619a89be2017-07-17 20:24:261660 "//components/vector_icons",
mohsenc8b9ca7e2017-02-14 05:39:411661 "//content/browser/tracing:resources",
mohsenc8b9ca7e2017-02-14 05:39:411662 ]
[email protected]743530f2014-06-12 19:38:501663 }
charlieab9973242016-02-02 16:22:161664 if ((use_udev && is_posix) || is_mac || is_win) {
1665 deps += [ "//tools/battor_agent:battor_agent_lib" ]
1666 sources += [
1667 "tracing/power_tracing_agent.cc",
1668 "tracing/power_tracing_agent.h",
1669 ]
1670 }
[email protected]743530f2014-06-12 19:38:501671
1672 if (enable_webrtc) {
brettwb167c7332016-09-07 22:52:461673 sources += [
1674 "renderer_host/media/peer_connection_tracker_host.cc",
1675 "renderer_host/media/peer_connection_tracker_host.h",
1676 "renderer_host/p2p/socket_dispatcher_host.cc",
1677 "renderer_host/p2p/socket_dispatcher_host.h",
1678 "renderer_host/p2p/socket_host.cc",
1679 "renderer_host/p2p/socket_host.h",
1680 "renderer_host/p2p/socket_host_tcp.cc",
1681 "renderer_host/p2p/socket_host_tcp.h",
1682 "renderer_host/p2p/socket_host_tcp_server.cc",
1683 "renderer_host/p2p/socket_host_tcp_server.h",
1684 "renderer_host/p2p/socket_host_throttler.cc",
1685 "renderer_host/p2p/socket_host_throttler.h",
1686 "renderer_host/p2p/socket_host_udp.cc",
1687 "renderer_host/p2p/socket_host_udp.h",
1688 "webrtc/webrtc_eventlog_host.cc",
1689 "webrtc/webrtc_eventlog_host.h",
1690 "webrtc/webrtc_internals.cc",
1691 "webrtc/webrtc_internals.h",
1692 "webrtc/webrtc_internals_message_handler.cc",
1693 "webrtc/webrtc_internals_message_handler.h",
1694 "webrtc/webrtc_internals_ui.cc",
1695 "webrtc/webrtc_internals_ui.h",
1696 "webrtc/webrtc_internals_ui_observer.h",
1697 ]
1698
brettwf94a6cd2016-01-28 23:57:291699 deps += [
1700 "//jingle:jingle_glue",
magjed828787a2016-12-06 16:05:001701 "//third_party/webrtc/media:rtc_media_base",
mbjorgecbac8082016-04-21 01:14:231702 "//third_party/webrtc/modules/desktop_capture:primitives",
juliatuttle95fe3cc52017-06-30 23:05:311703 "//third_party/webrtc/rtc_base:rtc_base",
brettwf94a6cd2016-01-28 23:57:291704 ]
[email protected]743530f2014-06-12 19:38:501705 }
1706
byungchulc164a2542017-01-11 18:18:261707 # Desktop screen capture implementations, conditionally built depending on
1708 # the available implementations for each platform.
miu32fb8992017-01-04 01:38:531709 if (is_linux || is_mac || is_win) {
1710 defines += [ "ENABLE_SCREEN_CAPTURE=1" ]
1711 sources += [
braveyao2f9c86302017-01-06 18:06:281712 "media/capture/cursor_renderer.cc",
miu32fb8992017-01-04 01:38:531713 "media/capture/cursor_renderer.h",
1714 "media/capture/web_contents_video_capture_device.cc",
1715 "media/capture/web_contents_video_capture_device.h",
1716 "media/capture/window_activity_tracker.cc",
1717 "media/capture/window_activity_tracker.h",
1718 ]
1719 if (use_aura) {
1720 sources += [
1721 "media/capture/aura_window_capture_machine.cc",
1722 "media/capture/aura_window_capture_machine.h",
1723 "media/capture/cursor_renderer_aura.cc",
1724 "media/capture/cursor_renderer_aura.h",
1725 "media/capture/desktop_capture_device_aura.cc",
1726 "media/capture/desktop_capture_device_aura.h",
1727 "media/capture/window_activity_tracker_aura.cc",
1728 "media/capture/window_activity_tracker_aura.h",
1729 ]
1730 }
1731 if (is_mac) {
1732 sources += [
1733 "media/capture/cursor_renderer_mac.h",
1734 "media/capture/cursor_renderer_mac.mm",
1735 "media/capture/window_activity_tracker_mac.h",
1736 "media/capture/window_activity_tracker_mac.mm",
1737 ]
kerrnel0f7a1922017-06-26 23:40:581738 deps += [ "//sandbox/mac:seatbelt" ]
miu32fb8992017-01-04 01:38:531739 }
byungchulc164a2542017-01-11 18:18:261740 if (enable_webrtc) {
1741 sources += [
1742 "media/capture/desktop_capture_device.cc",
1743 "media/capture/desktop_capture_device.h",
1744 ]
1745 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
zijiehe96d69872017-07-25 21:32:321746 public_deps += [ "//third_party/webrtc_overrides:init_webrtc" ]
byungchulc164a2542017-01-11 18:18:261747 }
miu32fb8992017-01-04 01:38:531748 }
1749
[email protected]743530f2014-06-12 19:38:501750 if (is_win) {
[email protected]743530f2014-06-12 19:38:501751 defines += [
1752 # This prevents the inclusion of atlhost.h which paired
1753 # with the windows 8 sdk it does the wrong thing.
1754 "__ATLHOST_H__",
1755 ]
1756 deps += [
[email protected]bf94f9d2014-06-17 20:33:531757 "//third_party/iaccessible2",
1758 "//third_party/isimpledom",
[email protected]743530f2014-06-12 19:38:501759 ]
1760 libs += [
1761 "comctl32.lib",
1762 "dinput8.lib",
1763 "dwmapi.lib",
1764 "dxguid.lib",
jam6ce80492016-03-22 22:00:211765 "imm32.lib",
brettw44a5cf82015-04-08 19:48:221766 "oleacc.lib",
[email protected]743530f2014-06-12 19:38:501767 "portabledeviceguids.lib",
1768 ]
[email protected]743530f2014-06-12 19:38:501769 }
1770
[email protected]743530f2014-06-12 19:38:501771 if (use_udev) {
mcasas9d2063682016-02-11 22:12:391772 deps += [
1773 "//device/udev_linux",
mcasasf261a502016-02-26 23:40:331774 "//media/capture",
[email protected]743530f2014-06-12 19:38:501775 ]
1776 }
1777
1778 if (enable_plugins) {
brettwb167c7332016-09-07 22:52:461779 sources += [
1780 "../public/browser/plugin_service.h",
1781 "media/session/pepper_playback_observer.cc",
1782 "media/session/pepper_playback_observer.h",
1783 "media/session/pepper_player_delegate.cc",
1784 "media/session/pepper_player_delegate.h",
1785 "pepper_flash_settings_helper_impl.cc",
1786 "pepper_flash_settings_helper_impl.h",
1787 "plugin_content_origin_whitelist.cc",
1788 "plugin_content_origin_whitelist.h",
1789 "plugin_data_remover_impl.cc",
1790 "plugin_data_remover_impl.h",
1791 "plugin_private_storage_helper.cc",
1792 "plugin_private_storage_helper.h",
1793 "plugin_service_impl.cc",
1794 "plugin_service_impl.h",
1795 "ppapi_plugin_process_host.cc",
1796 "ppapi_plugin_process_host.h",
1797 "renderer_host/pepper/browser_ppapi_host_impl.cc",
1798 "renderer_host/pepper/browser_ppapi_host_impl.h",
1799 "renderer_host/pepper/content_browser_pepper_host_factory.cc",
1800 "renderer_host/pepper/content_browser_pepper_host_factory.h",
1801 "renderer_host/pepper/pepper_browser_font_singleton_host.cc",
1802 "renderer_host/pepper/pepper_browser_font_singleton_host.h",
1803 "renderer_host/pepper/pepper_external_file_ref_backend.cc",
1804 "renderer_host/pepper/pepper_external_file_ref_backend.h",
1805 "renderer_host/pepper/pepper_file_io_host.cc",
1806 "renderer_host/pepper/pepper_file_io_host.h",
1807 "renderer_host/pepper/pepper_file_ref_host.cc",
1808 "renderer_host/pepper/pepper_file_ref_host.h",
1809 "renderer_host/pepper/pepper_file_system_browser_host.cc",
1810 "renderer_host/pepper/pepper_file_system_browser_host.h",
1811 "renderer_host/pepper/pepper_flash_file_message_filter.cc",
1812 "renderer_host/pepper/pepper_flash_file_message_filter.h",
1813 "renderer_host/pepper/pepper_gamepad_host.cc",
1814 "renderer_host/pepper/pepper_gamepad_host.h",
1815 "renderer_host/pepper/pepper_host_resolver_message_filter.cc",
1816 "renderer_host/pepper/pepper_host_resolver_message_filter.h",
1817 "renderer_host/pepper/pepper_internal_file_ref_backend.cc",
1818 "renderer_host/pepper/pepper_internal_file_ref_backend.h",
1819 "renderer_host/pepper/pepper_lookup_request.h",
1820 "renderer_host/pepper/pepper_message_filter.cc",
1821 "renderer_host/pepper/pepper_message_filter.h",
1822 "renderer_host/pepper/pepper_network_monitor_host.cc",
1823 "renderer_host/pepper/pepper_network_monitor_host.h",
1824 "renderer_host/pepper/pepper_network_proxy_host.cc",
1825 "renderer_host/pepper/pepper_network_proxy_host.h",
1826 "renderer_host/pepper/pepper_print_settings_manager.cc",
1827 "renderer_host/pepper/pepper_print_settings_manager.h",
1828 "renderer_host/pepper/pepper_printing_host.cc",
1829 "renderer_host/pepper/pepper_printing_host.h",
1830 "renderer_host/pepper/pepper_renderer_connection.cc",
1831 "renderer_host/pepper/pepper_renderer_connection.h",
1832 "renderer_host/pepper/pepper_security_helper.cc",
1833 "renderer_host/pepper/pepper_security_helper.h",
1834 "renderer_host/pepper/pepper_socket_utils.cc",
1835 "renderer_host/pepper/pepper_socket_utils.h",
1836 "renderer_host/pepper/pepper_tcp_server_socket_message_filter.cc",
1837 "renderer_host/pepper/pepper_tcp_server_socket_message_filter.h",
1838 "renderer_host/pepper/pepper_tcp_socket_message_filter.cc",
1839 "renderer_host/pepper/pepper_tcp_socket_message_filter.h",
1840 "renderer_host/pepper/pepper_truetype_font.h",
1841 "renderer_host/pepper/pepper_truetype_font_android.cc",
1842 "renderer_host/pepper/pepper_truetype_font_host.cc",
1843 "renderer_host/pepper/pepper_truetype_font_host.h",
1844 "renderer_host/pepper/pepper_truetype_font_linux.cc",
1845 "renderer_host/pepper/pepper_truetype_font_list.h",
1846 "renderer_host/pepper/pepper_truetype_font_list_android.cc",
1847 "renderer_host/pepper/pepper_truetype_font_list_host.cc",
1848 "renderer_host/pepper/pepper_truetype_font_list_host.h",
1849 "renderer_host/pepper/pepper_truetype_font_list_mac.mm",
1850 "renderer_host/pepper/pepper_truetype_font_list_ozone.cc",
1851 "renderer_host/pepper/pepper_truetype_font_list_pango.cc",
1852 "renderer_host/pepper/pepper_truetype_font_list_win.cc",
1853 "renderer_host/pepper/pepper_truetype_font_mac.mm",
1854 "renderer_host/pepper/pepper_truetype_font_win.cc",
1855 "renderer_host/pepper/pepper_udp_socket_message_filter.cc",
1856 "renderer_host/pepper/pepper_udp_socket_message_filter.h",
1857 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.cc",
1858 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.h",
1859 "renderer_host/pepper/quota_reservation.cc",
1860 "renderer_host/pepper/quota_reservation.h",
1861 "renderer_host/pepper/ssl_context_helper.cc",
1862 "renderer_host/pepper/ssl_context_helper.h",
1863 ]
[email protected]743530f2014-06-12 19:38:501864 deps += [
tmoniuszko6cddaa92015-06-10 07:51:341865 "//ppapi/host",
scottmg3cab0ba2017-01-25 18:34:161866 "//ppapi/proxy:common",
brettwf7eb6ca2015-02-14 01:37:311867 "//ppapi/proxy:ipc",
1868 "//ppapi/shared_impl",
[email protected]743530f2014-06-12 19:38:501869 ]
1870 if (!use_ozone || use_pango) {
1871 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ]
1872 }
[email protected]c528d872014-06-27 03:17:161873 if (!use_pango) {
1874 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ]
1875 }
[email protected]743530f2014-06-12 19:38:501876 }
1877
shreeram.k792fba032015-07-20 11:43:371878 if (use_atk) {
brettwb167c7332016-09-07 22:52:461879 sources += [
1880 "accessibility/accessibility_tree_formatter_auralinux.cc",
1881 "accessibility/browser_accessibility_auralinux.cc",
1882 "accessibility/browser_accessibility_auralinux.h",
1883 "accessibility/browser_accessibility_manager_auralinux.cc",
1884 "accessibility/browser_accessibility_manager_auralinux.h",
1885 ]
shreeram.k792fba032015-07-20 11:43:371886
mostynb902b5282016-08-17 23:01:001887 configs += [ "//build/config/linux/atk" ]
mostynbebc6e122016-07-28 08:53:411888
1889 if (use_gconf) {
1890 configs += [ "//build/config/linux/gconf" ]
1891 }
1892
1893 if (use_glib) {
1894 configs += [ "//build/config/linux:glib" ]
1895 }
shreeram.k792fba032015-07-20 11:43:371896 }
1897
[email protected]743530f2014-06-12 19:38:501898 if (is_linux && use_aura) {
rchfd3053f22017-06-08 22:34:151899 deps += [ "//third_party/fontconfig" ]
[email protected]743530f2014-06-12 19:38:501900 }
1901
1902 if (use_x11) {
1903 configs += [ "//build/config/linux:x11" ]
jamesr4359db72015-01-21 12:40:001904 deps += [ "//ui/gfx/x" ]
cmasonedb5203e2014-09-11 18:18:381905 }
1906
[email protected]743530f2014-06-12 19:38:501907 if (use_pango) {
agrieve95ba4442016-04-25 15:47:131908 configs += [ "//build/config/linux/pangocairo" ]
[email protected]743530f2014-06-12 19:38:501909 }
1910
1911 if (is_android) {
brettwb167c7332016-09-07 22:52:461912 sources += [
1913 "accessibility/accessibility_tree_formatter_android.cc",
1914 "accessibility/browser_accessibility_android.cc",
1915 "accessibility/browser_accessibility_android.h",
1916 "accessibility/browser_accessibility_manager_android.cc",
1917 "accessibility/browser_accessibility_manager_android.h",
Jinsuk Kimc6c1d15d2017-06-13 08:19:261918 "accessibility/web_contents_accessibility_android.cc",
1919 "accessibility/web_contents_accessibility_android.h",
brettwb167c7332016-09-07 22:52:461920 "android/composited_touch_handle_drawable.cc",
1921 "android/composited_touch_handle_drawable.h",
Jinsuk Kim447a71992017-07-16 18:17:411922 "android/content_view_core.cc",
1923 "android/content_view_core.h",
1924 "android/content_view_core_observer.h",
brettwb167c7332016-09-07 22:52:461925 "android/content_view_render_view.cc",
1926 "android/content_view_render_view.h",
1927 "android/content_view_statics.cc",
brettwb167c7332016-09-07 22:52:461928 "android/date_time_chooser_android.cc",
1929 "android/date_time_chooser_android.h",
1930 "android/gesture_event_type.h",
jinsukkim48f82db72017-04-05 04:10:261931 "android/ime_adapter_android.cc",
1932 "android/ime_adapter_android.h",
brettwb167c7332016-09-07 22:52:461933 "android/interstitial_page_delegate_android.cc",
1934 "android/interstitial_page_delegate_android.h",
1935 "android/java/gin_java_bound_object.cc",
1936 "android/java/gin_java_bound_object.h",
1937 "android/java/gin_java_bound_object_delegate.cc",
1938 "android/java/gin_java_bound_object_delegate.h",
1939 "android/java/gin_java_bridge_dispatcher_host.cc",
1940 "android/java/gin_java_bridge_dispatcher_host.h",
1941 "android/java/gin_java_bridge_message_filter.cc",
1942 "android/java/gin_java_bridge_message_filter.h",
1943 "android/java/gin_java_method_invocation_helper.cc",
1944 "android/java/gin_java_method_invocation_helper.h",
1945 "android/java/gin_java_script_to_java_types_coercion.cc",
1946 "android/java/gin_java_script_to_java_types_coercion.h",
1947 "android/java/java_bridge_thread.cc",
1948 "android/java/java_bridge_thread.h",
1949 "android/java/java_method.cc",
1950 "android/java/java_method.h",
1951 "android/java/java_type.cc",
1952 "android/java/java_type.h",
1953 "android/java/jni_helper.cc",
1954 "android/java/jni_helper.h",
1955 "android/load_url_params.cc",
blundellf5316fc2017-05-15 11:49:031956 "android/nfc_host.cc",
1957 "android/nfc_host.h",
brettwb167c7332016-09-07 22:52:461958 "android/overscroll_controller_android.cc",
1959 "android/overscroll_controller_android.h",
jinsukkim7e377432017-04-18 08:52:521960 "android/render_widget_host_connector.cc",
1961 "android/render_widget_host_connector.h",
jinsukkim3fbb94e2017-04-25 11:42:401962 "android/selection_popup_controller.cc",
1963 "android/selection_popup_controller.h",
timav051c2fc2017-05-10 18:08:031964 "android/smart_selection_client.cc",
1965 "android/smart_selection_client.h",
boliu22557972016-10-25 16:08:291966 "android/synchronous_compositor_browser_filter.cc",
1967 "android/synchronous_compositor_browser_filter.h",
brettwb167c7332016-09-07 22:52:461968 "android/synchronous_compositor_host.cc",
1969 "android/synchronous_compositor_host.h",
brettwb167c7332016-09-07 22:52:461970 "android/tracing_controller_android.cc",
1971 "android/tracing_controller_android.h",
1972 "android/web_contents_observer_proxy.cc",
1973 "android/web_contents_observer_proxy.h",
rob.buis300b0872017-03-10 20:43:581974 "frame_host/render_frame_host_android.cc",
1975 "frame_host/render_frame_host_android.h",
brettwb167c7332016-09-07 22:52:461976 "media/capture/screen_capture_device_android.cc",
1977 "media/capture/screen_capture_device_android.h",
1978 "renderer_host/compositor_impl_android.cc",
1979 "renderer_host/compositor_impl_android.h",
brettwb167c7332016-09-07 22:52:461980 "renderer_host/input/synthetic_gesture_target_android.cc",
1981 "renderer_host/input/synthetic_gesture_target_android.h",
W. James MacLean12ba7972017-07-08 01:58:261982 "renderer_host/input/touch_selection_controller_client_manager_android.cc",
1983 "renderer_host/input/touch_selection_controller_client_manager_android.h",
brettwb167c7332016-09-07 22:52:461984 "renderer_host/native_web_keyboard_event_android.cc",
1985 "renderer_host/render_widget_host_view_android.cc",
1986 "renderer_host/render_widget_host_view_android.h",
1987 "screen_orientation/screen_orientation_delegate_android.cc",
1988 "screen_orientation/screen_orientation_delegate_android.h",
brettwb167c7332016-09-07 22:52:461989 "web_contents/web_contents_android.cc",
1990 "web_contents/web_contents_android.h",
1991 "web_contents/web_contents_view_android.cc",
1992 "web_contents/web_contents_view_android.h",
1993 ]
bashi4159f36e2017-05-01 01:18:511994
1995 set_sources_assignment_filter([])
1996 sources += [
Scott Haseley7a02fce2017-08-01 21:55:011997 "memory/swap_metrics_driver_impl_linux.cc",
1998 "memory/swap_metrics_driver_impl_linux.h",
bashi4159f36e2017-05-01 01:18:511999 ]
2000 set_sources_assignment_filter(sources_assignment_filter)
2001
[email protected]743530f2014-06-12 19:38:502002 sources -= [
[email protected]743530f2014-06-12 19:38:502003 "browser_ipc_logging.cc",
zqzhanga2147f82016-10-18 22:53:262004 "media/session/audio_focus_delegate_default.cc",
zqzhangd36b5ce2016-09-30 17:29:342005 "media/session/audio_focus_manager.cc",
2006 "media/session/audio_focus_manager.h",
[email protected]743530f2014-06-12 19:38:502007 "tracing/tracing_ui.cc",
2008 "tracing/tracing_ui.h",
brettw24746e52016-12-07 04:26:172009 ]
brettw24746e52016-12-07 04:26:172010 deps += [
2011 "//content/public/android:jni",
2012 "//media",
2013 "//media/capture/content/android",
2014 "//media/capture/video/android",
brettw24746e52016-12-07 04:26:172015 "//ui/android",
2016 ]
miu32fb8992017-01-04 01:38:532017 defines += [
2018 "APPCACHE_USE_SIMPLE_CACHE",
2019 "ENABLE_SCREEN_CAPTURE=1",
2020 ]
brettw24746e52016-12-07 04:26:172021 libs += [ "jnigraphics" ]
2022 } else {
2023 # Not Android.
2024 sources += [
chenwilliame88d8362017-03-21 02:34:302025 # Devtools frontend not included in Android
2026 "devtools/devtools_frontend_host_impl.cc",
2027 "devtools/devtools_frontend_host_impl.h",
mcnee336ea2c2017-05-23 22:50:592028 "host_zoom_level_context.cc",
2029 "host_zoom_level_context.h",
2030 "host_zoom_map_impl.cc",
2031 "host_zoom_map_impl.h",
2032 "host_zoom_map_observer.cc",
2033 "host_zoom_map_observer.h",
chenwilliame88d8362017-03-21 02:34:302034
brettw24746e52016-12-07 04:26:172035 # Most speech code is non-Android.
[email protected]743530f2014-06-12 19:38:502036 "speech/audio_buffer.cc",
2037 "speech/audio_buffer.h",
2038 "speech/audio_encoder.cc",
2039 "speech/audio_encoder.h",
2040 "speech/chunked_byte_buffer.cc",
2041 "speech/chunked_byte_buffer.h",
2042 "speech/endpointer/endpointer.cc",
2043 "speech/endpointer/endpointer.h",
2044 "speech/endpointer/energy_endpointer.cc",
2045 "speech/endpointer/energy_endpointer.h",
2046 "speech/endpointer/energy_endpointer_params.cc",
2047 "speech/endpointer/energy_endpointer_params.h",
[email protected]743530f2014-06-12 19:38:502048 "speech/speech_recognition_engine.cc",
2049 "speech/speech_recognition_engine.h",
2050 "speech/speech_recognizer_impl.cc",
2051 "speech/speech_recognizer_impl.h",
2052 ]
brettw24746e52016-12-07 04:26:172053 deps += [ "//third_party/flac" ]
[email protected]743530f2014-06-12 19:38:502054 }
2055
2056 if (is_mac) {
jiangj2bd42fd2015-04-18 13:29:062057 deps += [
rsesek02aa51c2016-05-11 02:13:572058 "//media",
jiangj2bd42fd2015-04-18 13:29:062059 "//sandbox/mac:sandbox",
2060 "//third_party/mozilla",
jiangj2bd42fd2015-04-18 13:29:062061 "//ui/accelerated_widget_mac",
2062 ]
rsesek02aa51c2016-05-11 02:13:572063 libs += [
2064 "Carbon.framework",
2065 "QuartzCore.framework",
2066 "IOSurface.framework",
2067 ]
[email protected]743530f2014-06-12 19:38:502068 }
2069
2070 if (is_chromeos) {
mukai2dc70ed32014-10-29 01:01:432071 deps += [
2072 "//chromeos",
2073 "//chromeos:power_manager_proto",
2074 ]
[email protected]743530f2014-06-12 19:38:502075 }
2076
2077 if (use_aura) {
2078 deps += [
ben6b0453d12016-07-02 04:27:192079 "//services/ui/public/cpp",
2080 "//services/ui/public/interfaces",
[email protected]743530f2014-06-12 19:38:502081 "//ui/aura",
mohsen166a9182015-02-09 18:19:092082 "//ui/aura_extra",
[email protected]743530f2014-06-12 19:38:502083 "//ui/strings",
James Robinson060f2e32014-09-10 22:31:372084 "//ui/wm",
Thiago Farina3b086a02017-05-30 22:32:502085 "//ui/wm/public",
[email protected]743530f2014-06-12 19:38:502086 ]
rjkroegec109de612015-11-19 01:40:472087 sources += [
sky52a39e342016-12-17 17:23:222088 "renderer_host/delegated_frame_host_client_aura.cc",
2089 "renderer_host/delegated_frame_host_client_aura.h",
jonross2843ae362016-10-21 16:48:232090 "renderer_host/render_widget_host_view_event_handler.cc",
2091 "renderer_host/render_widget_host_view_event_handler.h",
rjkroegec109de612015-11-19 01:40:472092 ]
[email protected]743530f2014-06-12 19:38:502093 } else { # Not aura.
2094 sources -= [
[email protected]c528d872014-06-27 03:17:162095 "renderer_host/input/synthetic_gesture_target_aura.cc",
2096 "renderer_host/input/synthetic_gesture_target_aura.h",
mohsenb0eeba72015-08-09 06:20:082097 "renderer_host/input/touch_selection_controller_client_aura.cc",
2098 "renderer_host/input/touch_selection_controller_client_aura.h",
[email protected]c528d872014-06-27 03:17:162099 "renderer_host/native_web_keyboard_event_aura.cc",
[email protected]743530f2014-06-12 19:38:502100 "renderer_host/render_widget_host_view_aura.cc",
2101 "renderer_host/render_widget_host_view_aura.h",
[email protected]c528d872014-06-27 03:17:162102 "web_contents/aura/gesture_nav_simple.cc",
2103 "web_contents/aura/gesture_nav_simple.h",
[email protected]c528d872014-06-27 03:17:162104 "web_contents/aura/overscroll_navigation_overlay.cc",
2105 "web_contents/aura/overscroll_navigation_overlay.h",
nsatragnoc0b2fa52015-04-09 22:30:512106 "web_contents/aura/overscroll_window_animation.cc",
2107 "web_contents/aura/overscroll_window_animation.h",
2108 "web_contents/aura/overscroll_window_delegate.cc",
2109 "web_contents/aura/overscroll_window_delegate.h",
[email protected]c528d872014-06-27 03:17:162110 "web_contents/aura/shadow_layer_delegate.cc",
2111 "web_contents/aura/shadow_layer_delegate.h",
[email protected]c528d872014-06-27 03:17:162112 "web_contents/web_contents_view_aura.cc",
2113 "web_contents/web_contents_view_aura.h",
[email protected]743530f2014-06-12 19:38:502114 ]
2115 }
2116
2117 if (use_aura || is_mac) {
brettwb167c7332016-09-07 22:52:462118 sources += [
2119 "compositor/browser_compositor_output_surface.cc",
2120 "compositor/browser_compositor_output_surface.h",
2121 "compositor/gpu_browser_compositor_output_surface.cc",
2122 "compositor/gpu_browser_compositor_output_surface.h",
2123 "compositor/gpu_output_surface_mac.h",
2124 "compositor/gpu_output_surface_mac.mm",
2125 "compositor/gpu_process_transport_factory.cc",
2126 "compositor/gpu_process_transport_factory.h",
2127 "compositor/gpu_surfaceless_browser_compositor_output_surface.cc",
2128 "compositor/gpu_surfaceless_browser_compositor_output_surface.h",
stanisc49501732017-02-22 22:51:562129 "compositor/gpu_vsync_begin_frame_source.cc",
2130 "compositor/gpu_vsync_begin_frame_source.h",
brettwb167c7332016-09-07 22:52:462131 "compositor/image_transport_factory.cc",
2132 "compositor/image_transport_factory.h",
2133 "compositor/offscreen_browser_compositor_output_surface.cc",
2134 "compositor/offscreen_browser_compositor_output_surface.h",
2135 "compositor/owned_mailbox.cc",
2136 "compositor/owned_mailbox.h",
2137 "compositor/reflector_impl.cc",
2138 "compositor/reflector_impl.h",
2139 "compositor/reflector_texture.cc",
2140 "compositor/reflector_texture.h",
2141 "compositor/software_browser_compositor_output_surface.cc",
2142 "compositor/software_browser_compositor_output_surface.h",
2143 "compositor/software_output_device_mac.h",
2144 "compositor/software_output_device_mac.mm",
2145 "compositor/software_output_device_ozone.cc",
2146 "compositor/software_output_device_ozone.h",
2147 "compositor/software_output_device_win.cc",
2148 "compositor/software_output_device_win.h",
2149 "compositor/software_output_device_x11.cc",
2150 "compositor/software_output_device_x11.h",
2151 "context_factory.cc",
2152 "renderer_host/browser_compositor_view_mac.h",
2153 "renderer_host/browser_compositor_view_mac.mm",
danakjea89dd542017-03-29 23:30:472154 "renderer_host/compositor_resize_lock.cc",
2155 "renderer_host/compositor_resize_lock.h",
brettwb167c7332016-09-07 22:52:462156 "renderer_host/delegated_frame_host.cc",
2157 "renderer_host/delegated_frame_host.h",
brettwb167c7332016-09-07 22:52:462158 ]
sohan.jyoti86c41c72016-04-26 15:33:202159 if (enable_vulkan) {
2160 sources += [
2161 "compositor/vulkan_browser_compositor_output_surface.cc",
2162 "compositor/vulkan_browser_compositor_output_surface.h",
2163 ]
2164 }
[email protected]886323c2014-06-14 20:34:162165 if (!use_x11) {
2166 sources -= [
2167 "compositor/software_output_device_x11.cc",
2168 "compositor/software_output_device_x11.h",
2169 ]
2170 }
[email protected]743530f2014-06-12 19:38:502171
[email protected]b1867c92014-08-13 00:22:042172 if (!use_ozone) {
2173 sources -= [
[email protected]b1867c92014-08-13 00:22:042174 "compositor/software_output_device_ozone.cc",
2175 "compositor/software_output_device_ozone.h",
2176 ]
2177 }
samans72b2a282016-12-17 02:44:152178 deps += [
Fady Samuele4786072017-07-24 20:03:382179 "//components/viz/service",
samans72b2a282016-12-17 02:44:152180 "//ui/compositor",
2181 ]
[email protected]604b1272014-07-24 11:27:532182 }
2183
cmasonedb5203e2014-09-11 18:18:382184 if (is_linux && use_dbus) {
ppi2438a3e2014-10-28 21:55:102185 deps += [ "//dbus" ]
[email protected]743530f2014-06-12 19:38:502186 }
cjhopman2fd48fd2014-09-24 00:52:562187
davidbenee55ed442015-10-02 17:06:112188 if (is_linux) {
davidbenb983d4b2015-01-07 16:39:442189 deps += [ "//third_party/boringssl" ]
2190 }
xhwange6117332015-01-28 08:51:162191
jbroman79c079be2016-04-20 00:17:272192 if (use_ozone) {
2193 deps += [ "//ui/ozone" ]
2194 }
pimana333e3d2016-04-27 02:37:252195
ochangdd89a1e2016-06-08 16:39:012196 if (enable_ipc_fuzzer) {
2197 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
2198 }
kojii30add38f2016-07-14 02:10:322199
2200 if (use_minikin_hyphenation) {
2201 sources += [
2202 "hyphenation/hyphenation_impl.cc",
2203 "hyphenation/hyphenation_impl.h",
2204 ]
kojii30add38f2016-07-14 02:10:322205 }
[email protected]4db51ec2014-05-29 21:08:322206}
ben66696d12016-03-08 17:48:002207
Tim Brown07e062e82017-06-26 19:38:032208buildflag_header("accessibility_flags") {
2209 header = "accessibility_flags.h"
2210 header_dir = "content/browser/accessibility"
2211 flags = [ "USE_ATK=$use_atk" ]
2212}
2213
brettwb78fc9e2016-03-25 21:02:512214# See comment at the top of //content/BUILD.gn for how this works.
2215group("for_content_tests") {
2216 visibility = [ "//content/test/*" ]
2217 if (!is_component_build) {
2218 public_deps = [
2219 ":browser",
2220 ]
jam447407fb2016-05-06 17:57:402221 } else {
2222 public_deps = [
2223 "//third_party/leveldatabase",
2224 ]
brettwb78fc9e2016-03-25 21:02:512225 }
2226}