blob: 905310394d305efd9503dc320ba9b8395c050f69 [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
5import("//build/config/features.gni")
6import("//build/config/ui.gni")
qyearsleydb0a34872017-03-14 03:24:317import("//gpu/vulkan/features.gni")
cjhopman2fd48fd2014-09-24 00:52:568import("//media/media_options.gni")
brettw4b461082016-11-19 18:55:169import("//ppapi/features/features.gni")
Brett Wilson65f951c2016-11-03 22:06:1210import("//printing/features/features.gni")
brettw2cf0a692016-11-11 23:14:1211import("//third_party/WebKit/public/public_features.gni")
ochangdd89a1e2016-06-08 16:39:0112import("//tools/ipc_fuzzer/ipc_fuzzer.gni")
[email protected]4db51ec2014-05-29 21:08:3213
chfremer954d0ac2017-05-04 18:13:5714declare_args() {
15 # Include code in the build that is only needed when using the video
16 # capture Mojo service, which is currently experimental.
17 enable_mojo_video_capture = false
18}
19
[email protected]4db51ec2014-05-29 21:08:3220source_set("browser") {
Brett Wilson8f1323042014-09-11 16:58:5621 # Only the public target should depend on this. All other targets (even
22 # internal content ones) should depend on the public one.
brettwb78fc9e2016-03-25 21:02:5123 visibility = [
24 ":for_content_tests", # See top of //content/BUILD.gn for why.
jamce6dd2112017-02-15 19:31:4225 "//content/app:*",
brettwb78fc9e2016-03-25 21:02:5126 "//content/public/browser:browser_sources",
27 ]
[email protected]4db51ec2014-05-29 21:08:3228
ben3f5f9992015-11-19 10:38:3029 configs += [
30 "//build/config:precompiled_headers",
jamb3c1195df2016-03-21 20:41:2931 "//content:content_implementation",
jamb3c1195df2016-03-21 20:41:2932 "//v8:external_startup_data",
ben3f5f9992015-11-19 10:38:3033 ]
[email protected]743530f2014-06-12 19:38:5034 defines = []
35 libs = []
36 ldflags = []
[email protected]97865022014-06-13 23:18:0437
[email protected]4db51ec2014-05-29 21:08:3238 deps = [
39 "//base",
[email protected]22fe91d2014-08-12 17:07:1240 "//base:base_static",
brettwc15ed732016-03-21 23:14:2941 "//base/third_party/dynamic_annotations",
jamb3c1195df2016-03-21 20:41:2942 "//cc",
loyso3dd20892016-11-22 07:11:0143 "//cc/animation",
enne34f6084c2017-02-02 22:39:0844 "//cc/paint",
jamb3c1195df2016-03-21 20:41:2945 "//cc/surfaces",
penghuangd81c1a62016-11-02 20:06:0646 "//components/discardable_memory/common",
47 "//components/discardable_memory/service",
jamb3c1195df2016-03-21 20:41:2948 "//components/filesystem:lib",
49 "//components/leveldb:lib",
mek9b28f422016-05-13 21:46:2350 "//components/link_header_util",
dalecurtis4a9839a2017-05-04 23:40:4751 "//components/metrics",
xunjielia5925442017-05-08 20:01:4452 "//components/metrics:single_sample_metrics",
rsleevic327b48f82015-04-30 02:03:2553 "//components/mime_util",
tobiasjsc66efdd22017-04-17 13:38:5954 "//components/payments/mojom:mojom_payment_app",
nzolghadrd87a308d2016-12-07 15:45:5655 "//components/rappor",
brettwc15ed732016-03-21 23:14:2956 "//components/tracing",
57 "//components/tracing:startup_tracing",
rsleevi24f64dc22015-08-07 21:39:2158 "//components/url_formatter",
altimin56bb594b2016-11-09 19:45:1759 "//components/variations",
xing.xue334e562017-05-17 19:08:1060 "//components/viz/display_compositor",
kylechar69bd9162017-04-10 23:45:4861 "//components/viz/frame_sinks",
[email protected]d28b3cb82014-05-31 04:46:1862 "//content:resources",
jamb3c1195df2016-03-21 20:41:2963 "//content/app/resources",
64 "//content/app/strings",
jkarlin34ee23cf2015-03-26 13:58:5065 "//content/browser/background_sync:background_sync_proto",
jsbell279efb42015-03-31 17:02:4666 "//content/browser/cache_storage:cache_storage_proto",
alexclarke79a55e42017-05-11 11:38:2067 "//content/browser/devtools:devtools_resources",
dgozmandc4d41722016-11-15 22:40:5668 "//content/browser/devtools:protocol_sources",
meke722a7c2016-12-29 19:05:0369 "//content/browser/dom_storage:local_storage_proto",
peter05cb4db2015-03-13 14:33:3870 "//content/browser/notifications:notification_proto",
jinho.bang5c1f7a2932016-11-18 05:29:1471 "//content/browser/payments:payment_app_proto",
jkarlind678ae4b2015-01-27 15:04:5372 "//content/browser/service_worker:service_worker_proto",
[email protected]b506cdf2014-06-09 17:13:2173 "//content/browser/speech/proto",
brettwb78fc9e2016-03-25 21:02:5174 "//content/common",
thakis18e426412017-03-15 12:06:3775 "//content/common:features",
chiniforooshan614d70a2017-03-17 01:19:3376 "//content/common:mojo_bindings",
Brett Wilson8f1323042014-09-11 16:58:5677 "//content/public/common:common_sources",
[email protected]4db51ec2014-05-29 21:08:3278 "//crypto",
jamb3c1195df2016-03-21 20:41:2979 "//device/bluetooth",
bajonesb9bb4c42016-07-07 00:10:5180 "//device/gamepad",
lethalantidote893681c2016-09-13 19:36:3181 "//device/geolocation",
mcasas8720394f2016-08-03 22:42:3882 "//device/geolocation/public/interfaces",
sammc5a139ba2016-09-29 01:49:1483 "//device/nfc:mojo_bindings",
scottmgc40e8822016-06-17 17:57:4884 "//device/power_save_blocker",
leon.han552e9de2017-02-09 14:37:3085 "//device/screen_orientation/public/interfaces",
mthiesse668cd6d22017-01-31 01:57:3286 "//device/vr",
Ken Rockotfe0424e72017-05-13 02:29:0887 "//device/vr:mojo_bindings",
mthiesse4cb289142017-04-25 23:57:3388 "//device/vr/features",
blundelle75a8f92017-03-27 08:11:1789 "//device/wake_lock/public/interfaces",
[email protected]44a5a362014-05-30 20:01:5190 "//google_apis",
brettwc15ed732016-03-21 23:14:2991 "//gpu",
92 "//gpu/command_buffer/client:gles2_implementation",
jbroman84ba6842016-04-28 00:34:5093 "//gpu/command_buffer/client:gles2_interface",
sadrul6a769422016-12-08 04:54:3294 "//gpu/ipc/host",
qyearsleydb0a34872017-03-14 03:24:3195 "//gpu/vulkan:features",
brettwc15ed732016-03-21 23:14:2996 "//media",
mcasase40d7522016-06-21 16:11:4097 "//media/capture",
mcasasbf362942016-11-29 03:44:1398 "//media/capture/mojo:image_capture",
jbroman79c079be2016-04-20 00:17:2799 "//media/gpu/ipc/client",
brettwc15ed732016-03-21 23:14:29100 "//media/midi",
sammc64324c3a2017-01-05 00:40:15101 "//media/midi:mojo",
bendd157e1a2016-07-22 03:15:57102 "//media/mojo/interfaces",
maxmorin2781f5ff2017-04-04 08:29:41103 "//media/mojo/services",
rockotb814a582015-06-05 00:30:52104 "//mojo/common",
amistrycafcdff2016-06-17 03:33:48105 "//mojo/edk/system",
rockot85dce0862015-11-13 01:33:59106 "//mojo/public/cpp/bindings",
jamb3c1195df2016-03-21 20:41:29107 "//mojo/public/js",
[email protected]4db51ec2014-05-29 21:08:32108 "//net",
rohitrao1860223c2015-05-16 01:07:14109 "//net:extras",
pfeldman10628762016-09-08 07:59:26110 "//net:http_server",
brettwc5fcdd02016-10-12 07:25:12111 "//ppapi/features",
Brett Wilson65f951c2016-11-03 22:06:12112 "//printing/features",
jcivellidad0cef2017-02-16 18:38:59113 "//services/catalog:constants",
114 "//services/catalog/public/cpp",
benaabad0b2016-11-16 23:54:17115 "//services/catalog/public/interfaces:constants",
rockote0437032017-03-25 02:49:00116 "//services/data_decoder/public/interfaces",
blundell372d47d282016-11-01 01:34:30117 "//services/device:lib",
leon.han1b4ee5c2017-02-09 04:36:24118 "//services/device/public/interfaces:constants",
ben768c8dc2016-08-12 00:26:50119 "//services/file:lib",
ben768c8dc2016-08-12 00:26:50120 "//services/file/public/interfaces",
chiniforooshan6e4c5072017-03-17 07:56:56121 "//services/resource_coordinator:lib",
rockot734fb662016-10-15 16:41:30122 "//services/service_manager",
rockot60d92c22017-03-21 06:35:23123 "//services/service_manager/embedder",
rockot734fb662016-10-15 16:41:30124 "//services/service_manager/public/cpp",
125 "//services/service_manager/public/interfaces",
126 "//services/service_manager/runner/common",
127 "//services/service_manager/runner/host:lib",
xianglu6dd8f462017-01-25 04:30:41128 "//services/shape_detection:lib",
129 "//services/shape_detection/public/interfaces",
sadrul6c5aed8c2017-01-11 23:11:44130 "//services/ui/gpu/interfaces",
sadrul85cc5d82016-12-20 03:37:41131 "//services/ui/public/cpp/gpu",
[email protected]4db51ec2014-05-29 21:08:32132 "//skia",
133 "//sql",
jamb3c1195df2016-03-21 20:41:29134 "//storage/browser",
135 "//storage/common",
fsamuel9cf7bdf2015-11-20 02:19:32136 "//third_party/WebKit/public:blink_headers",
brettw2cf0a692016-11-11 23:14:12137 "//third_party/WebKit/public:features",
jamb3c1195df2016-03-21 20:41:29138 "//third_party/WebKit/public:image_resources",
juncai30a0e932016-05-11 00:09:51139 "//third_party/WebKit/public:mojo_bindings",
jamb3c1195df2016-03-21 20:41:29140 "//third_party/WebKit/public:resources",
jbroman79c079be2016-04-20 00:17:27141 "//third_party/angle:angle_common",
alexclarke79a55e42017-05-11 11:38:20142 "//third_party/brotli:dec",
jamb3c1195df2016-03-21 20:41:29143 "//third_party/icu",
jamb3c1195df2016-03-21 20:41:29144 "//third_party/libyuv",
[email protected]4db51ec2014-05-29 21:08:32145 "//third_party/re2",
[email protected]4db51ec2014-05-29 21:08:32146 "//third_party/zlib",
jam8c4edd02017-05-06 18:50:33147 "//third_party/zlib:compression_utils",
[email protected]4db51ec2014-05-29 21:08:32148 "//third_party/zlib:zip",
149 "//ui/accessibility",
150 "//ui/accessibility:ax_gen",
[email protected]52140d882014-05-30 19:22:40151 "//ui/base",
spang1c36fac2015-02-05 19:55:12152 "//ui/base/ime",
robliao8d63729c2016-03-29 17:49:47153 "//ui/display",
dcastagna0a50f642016-08-10 20:12:22154 "//ui/display/types",
[email protected]4db51ec2014-05-29 21:08:32155 "//ui/events",
156 "//ui/events:gesture_detection",
jamb3c1195df2016-03-21 20:41:29157 "//ui/events/blink",
alexis.menardb12ba342017-04-15 09:01:19158 "//ui/events/devices",
[email protected]4db51ec2014-05-29 21:08:32159 "//ui/gfx",
chrishtrbdbe3182017-03-15 15:15:43160 "//ui/gfx/animation",
[email protected]4db51ec2014-05-29 21:08:32161 "//ui/gfx/geometry",
ben7a77e852016-05-26 05:50:44162 "//ui/gfx/geometry/mojo",
Brett Wilsone7487942014-09-09 23:37:29163 "//ui/gl",
sugoi842efc692017-03-14 18:10:39164 "//ui/gl:gl_features",
mfomitchev598a7692017-04-11 00:30:31165 "//ui/latency",
Brett Wilsone7487942014-09-09 23:37:29166 "//ui/native_theme",
[email protected]4db51ec2014-05-29 21:08:32167 "//ui/resources",
brettwc15ed732016-03-21 23:14:29168 "//ui/shell_dialogs",
[email protected]d28b3cb82014-05-31 04:46:18169 "//ui/snapshot",
jamb3c1195df2016-03-21 20:41:29170 "//ui/touch_selection",
scottmg1b075322017-01-16 17:22:10171 "//v8:v8_version",
[email protected]4db51ec2014-05-29 21:08:32172 ]
173
jam447407fb2016-05-06 17:57:40174 public_deps = [
rockot38e46dd2017-03-24 16:55:13175 "//ipc",
miu54dca6c2016-11-17 10:59:38176 "//media/mojo/interfaces:remoting",
kylecharc9d0c8082017-05-09 17:06:18177 "//third_party/WebKit/public:offscreen_canvas_mojo_bindings",
jam447407fb2016-05-06 17:57:40178 "//third_party/leveldatabase",
179 ]
180
brettwb167c7332016-09-07 22:52:46181 sources = [
dgozmanb4f43e42016-12-13 06:12:40182 "$target_gen_dir/devtools/protocol/dom.cc",
183 "$target_gen_dir/devtools/protocol/dom.h",
184 "$target_gen_dir/devtools/protocol/emulation.cc",
185 "$target_gen_dir/devtools/protocol/emulation.h",
dgozmandc4d41722016-11-15 22:40:56186 "$target_gen_dir/devtools/protocol/forward.h",
dgozman111fdd032016-12-18 00:49:26187 "$target_gen_dir/devtools/protocol/input.cc",
188 "$target_gen_dir/devtools/protocol/input.h",
dgozmanb4f43e42016-12-13 06:12:40189 "$target_gen_dir/devtools/protocol/inspector.cc",
190 "$target_gen_dir/devtools/protocol/inspector.h",
dgozmandc4d41722016-11-15 22:40:56191 "$target_gen_dir/devtools/protocol/io.cc",
192 "$target_gen_dir/devtools/protocol/io.h",
dgozmanabbad67b2016-11-22 02:37:02193 "$target_gen_dir/devtools/protocol/memory.cc",
194 "$target_gen_dir/devtools/protocol/memory.h",
dgozmanb4f43e42016-12-13 06:12:40195 "$target_gen_dir/devtools/protocol/network.cc",
196 "$target_gen_dir/devtools/protocol/network.h",
197 "$target_gen_dir/devtools/protocol/page.cc",
198 "$target_gen_dir/devtools/protocol/page.h",
dgozmandc4d41722016-11-15 22:40:56199 "$target_gen_dir/devtools/protocol/protocol.cc",
200 "$target_gen_dir/devtools/protocol/protocol.h",
horo6f9e15e2017-01-27 03:07:40201 "$target_gen_dir/devtools/protocol/runtime.cc",
202 "$target_gen_dir/devtools/protocol/runtime.h",
dgozmanb4f43e42016-12-13 06:12:40203 "$target_gen_dir/devtools/protocol/schema.cc",
204 "$target_gen_dir/devtools/protocol/schema.h",
dgozman581dd5b72016-12-14 01:15:13205 "$target_gen_dir/devtools/protocol/security.cc",
206 "$target_gen_dir/devtools/protocol/security.h",
dgozmanb31e7732016-12-16 04:08:39207 "$target_gen_dir/devtools/protocol/service_worker.cc",
208 "$target_gen_dir/devtools/protocol/service_worker.h",
dgozmand5a5b2c2016-12-14 20:37:24209 "$target_gen_dir/devtools/protocol/storage.cc",
210 "$target_gen_dir/devtools/protocol/storage.h",
dgozmanabbad67b2016-11-22 02:37:02211 "$target_gen_dir/devtools/protocol/system_info.cc",
212 "$target_gen_dir/devtools/protocol/system_info.h",
dgozmanb35728c52016-12-16 05:31:43213 "$target_gen_dir/devtools/protocol/target.cc",
214 "$target_gen_dir/devtools/protocol/target.h",
dgozmanabbad67b2016-11-22 02:37:02215 "$target_gen_dir/devtools/protocol/tethering.cc",
216 "$target_gen_dir/devtools/protocol/tethering.h",
dgozmandc4d41722016-11-15 22:40:56217 "$target_gen_dir/devtools/protocol/tracing.cc",
218 "$target_gen_dir/devtools/protocol/tracing.h",
bend32292b2016-10-07 00:21:58219 "../common/service_manager/child_connection.cc",
220 "../common/service_manager/child_connection.h",
brettwb167c7332016-09-07 22:52:46221 "../zygote/zygote_linux.cc",
222 "../zygote/zygote_linux.h",
tfarina175c5da2017-05-05 23:06:01223 "../zygote/zygote_main.h",
brettwb167c7332016-09-07 22:52:46224 "../zygote/zygote_main_linux.cc",
brettwb167c7332016-09-07 22:52:46225 "accessibility/accessibility_tree_formatter.cc",
226 "accessibility/accessibility_tree_formatter.h",
227 "accessibility/accessibility_tree_formatter_blink.cc",
228 "accessibility/accessibility_tree_formatter_blink.h",
229 "accessibility/accessibility_tree_formatter_mac.mm",
230 "accessibility/accessibility_tree_formatter_stub.cc",
231 "accessibility/accessibility_tree_formatter_utils_win.cc",
232 "accessibility/accessibility_tree_formatter_utils_win.h",
233 "accessibility/accessibility_tree_formatter_win.cc",
234 "accessibility/accessibility_ui.cc",
235 "accessibility/accessibility_ui.h",
nektar9de71d42016-10-21 21:57:00236 "accessibility/ax_platform_position.cc",
237 "accessibility/ax_platform_position.h",
brettwb167c7332016-09-07 22:52:46238 "accessibility/browser_accessibility.cc",
239 "accessibility/browser_accessibility.h",
240 "accessibility/browser_accessibility_cocoa.h",
241 "accessibility/browser_accessibility_cocoa.mm",
dougt6b5b4cd2017-05-10 06:03:54242 "accessibility/browser_accessibility_com_win.cc",
243 "accessibility/browser_accessibility_com_win.h",
brettwb167c7332016-09-07 22:52:46244 "accessibility/browser_accessibility_event.cc",
245 "accessibility/browser_accessibility_event.h",
246 "accessibility/browser_accessibility_event_win.cc",
247 "accessibility/browser_accessibility_event_win.h",
248 "accessibility/browser_accessibility_mac.h",
249 "accessibility/browser_accessibility_mac.mm",
250 "accessibility/browser_accessibility_manager.cc",
251 "accessibility/browser_accessibility_manager.h",
252 "accessibility/browser_accessibility_manager_mac.h",
253 "accessibility/browser_accessibility_manager_mac.mm",
254 "accessibility/browser_accessibility_manager_win.cc",
255 "accessibility/browser_accessibility_manager_win.h",
256 "accessibility/browser_accessibility_state_impl.cc",
257 "accessibility/browser_accessibility_state_impl.h",
258 "accessibility/browser_accessibility_state_impl_mac.mm",
259 "accessibility/browser_accessibility_state_impl_win.cc",
260 "accessibility/browser_accessibility_win.cc",
261 "accessibility/browser_accessibility_win.h",
262 "accessibility/one_shot_accessibility_tree_search.cc",
263 "accessibility/one_shot_accessibility_tree_search.h",
darin2d145fe2017-02-16 15:22:35264 "android/app_web_message_port.cc",
265 "android/app_web_message_port.h",
brettwb167c7332016-09-07 22:52:46266 "android/background_sync_network_observer_android.cc",
267 "android/background_sync_network_observer_android.h",
268 "android/browser_jni_registrar.cc",
269 "android/browser_jni_registrar.h",
270 "android/browser_startup_controller.cc",
271 "android/browser_startup_controller.h",
chongz8bdf20922017-03-16 20:44:04272 "android/content_feature_list.cc",
273 "android/content_feature_list.h",
brettwb167c7332016-09-07 22:52:46274 "android/content_protocol_handler_impl.cc",
275 "android/content_protocol_handler_impl.h",
276 "android/content_startup_flags.cc",
277 "android/content_startup_flags.h",
278 "android/content_video_view.cc",
279 "android/content_video_view.h",
280 "android/devtools_auth.cc",
liberatoa8da3b52017-05-02 20:23:51281 "android/dialog_overlay_impl.cc",
282 "android/dialog_overlay_impl.h",
jcivelli27d06a62017-03-22 01:40:37283 "android/gpu_process_callback.cc",
284 "android/gpu_process_callback.h",
sammcf5f1b0f2016-09-20 23:05:11285 "android/java_interfaces_impl.cc",
286 "android/java_interfaces_impl.h",
boliu61687ec52017-03-29 20:09:34287 "android/launcher_thread.cc",
288 "android/launcher_thread.h",
tguilbertf08485bf2016-09-21 04:11:41289 "android/scoped_surface_request_manager.cc",
290 "android/scoped_surface_request_manager.h",
darin2d145fe2017-02-16 15:22:35291 "android/string_message_codec.cc",
292 "android/string_message_codec.h",
brettwb167c7332016-09-07 22:52:46293 "android/url_request_content_job.cc",
294 "android/url_request_content_job.h",
295 "appcache/appcache.cc",
296 "appcache/appcache.h",
297 "appcache/appcache_backend_impl.cc",
298 "appcache/appcache_backend_impl.h",
299 "appcache/appcache_database.cc",
300 "appcache/appcache_database.h",
301 "appcache/appcache_disk_cache.cc",
302 "appcache/appcache_disk_cache.h",
303 "appcache/appcache_dispatcher_host.cc",
304 "appcache/appcache_dispatcher_host.h",
305 "appcache/appcache_entry.h",
306 "appcache/appcache_executable_handler.h",
307 "appcache/appcache_frontend_proxy.cc",
308 "appcache/appcache_frontend_proxy.h",
309 "appcache/appcache_group.cc",
310 "appcache/appcache_group.h",
311 "appcache/appcache_histograms.cc",
312 "appcache/appcache_histograms.h",
313 "appcache/appcache_host.cc",
314 "appcache/appcache_host.h",
315 "appcache/appcache_interceptor.cc",
316 "appcache/appcache_interceptor.h",
317 "appcache/appcache_internals_ui.cc",
318 "appcache/appcache_internals_ui.h",
ananta46f3e942017-05-09 04:56:30319 "appcache/appcache_job.cc",
320 "appcache/appcache_job.h",
brettwb167c7332016-09-07 22:52:46321 "appcache/appcache_manifest_parser.cc",
322 "appcache/appcache_manifest_parser.h",
ananta292a9172016-12-07 01:29:27323 "appcache/appcache_navigation_handle.cc",
324 "appcache/appcache_navigation_handle.h",
325 "appcache/appcache_navigation_handle_core.cc",
326 "appcache/appcache_navigation_handle_core.h",
anantae3f159a2017-05-11 23:40:07327 "appcache/appcache_network_service_handler.cc",
328 "appcache/appcache_network_service_handler.h",
brettwb167c7332016-09-07 22:52:46329 "appcache/appcache_policy.h",
330 "appcache/appcache_quota_client.cc",
331 "appcache/appcache_quota_client.h",
ananta4e8a5292017-05-04 03:07:15332 "appcache/appcache_request.cc",
333 "appcache/appcache_request.h",
brettwb167c7332016-09-07 22:52:46334 "appcache/appcache_request_handler.cc",
335 "appcache/appcache_request_handler.h",
336 "appcache/appcache_response.cc",
337 "appcache/appcache_response.h",
338 "appcache/appcache_service_impl.cc",
339 "appcache/appcache_service_impl.h",
340 "appcache/appcache_storage.cc",
341 "appcache/appcache_storage.h",
342 "appcache/appcache_storage_impl.cc",
343 "appcache/appcache_storage_impl.h",
344 "appcache/appcache_update_job.cc",
345 "appcache/appcache_update_job.h",
ananta46f3e942017-05-09 04:56:30346 "appcache/appcache_url_loader_job.cc",
347 "appcache/appcache_url_loader_job.h",
ananta4e8a5292017-05-04 03:07:15348 "appcache/appcache_url_loader_request.cc",
349 "appcache/appcache_url_loader_request.h",
350 "appcache/appcache_url_request.cc",
351 "appcache/appcache_url_request.h",
brettwb167c7332016-09-07 22:52:46352 "appcache/appcache_url_request_job.cc",
353 "appcache/appcache_url_request_job.h",
354 "appcache/appcache_working_set.cc",
355 "appcache/appcache_working_set.h",
356 "appcache/chrome_appcache_service.cc",
357 "appcache/chrome_appcache_service.h",
harkness7b36c432017-02-15 20:05:36358 "background_fetch/background_fetch_context.cc",
359 "background_fetch/background_fetch_context.h",
peterbbecee162017-04-14 17:09:55360 "background_fetch/background_fetch_cross_origin_filter.cc",
361 "background_fetch/background_fetch_cross_origin_filter.h",
harkness7b36c432017-02-15 20:05:36362 "background_fetch/background_fetch_data_manager.cc",
363 "background_fetch/background_fetch_data_manager.h",
peteref0797702017-03-19 04:06:40364 "background_fetch/background_fetch_event_dispatcher.cc",
365 "background_fetch/background_fetch_event_dispatcher.h",
harknessa247d9bf2017-02-28 17:01:53366 "background_fetch/background_fetch_job_controller.cc",
367 "background_fetch/background_fetch_job_controller.h",
peter6965a1a12017-03-27 08:59:27368 "background_fetch/background_fetch_registration_id.cc",
369 "background_fetch/background_fetch_registration_id.h",
harknessa247d9bf2017-02-28 17:01:53370 "background_fetch/background_fetch_request_info.cc",
371 "background_fetch/background_fetch_request_info.h",
peter3226ce82017-03-16 18:06:28372 "background_fetch/background_fetch_service_impl.cc",
373 "background_fetch/background_fetch_service_impl.h",
brettwb167c7332016-09-07 22:52:46374 "background_sync/background_sync_context.cc",
375 "background_sync/background_sync_context.h",
376 "background_sync/background_sync_manager.cc",
377 "background_sync/background_sync_manager.h",
378 "background_sync/background_sync_metrics.cc",
379 "background_sync/background_sync_metrics.h",
380 "background_sync/background_sync_network_observer.cc",
381 "background_sync/background_sync_network_observer.h",
382 "background_sync/background_sync_registration.cc",
383 "background_sync/background_sync_registration.h",
384 "background_sync/background_sync_registration_options.cc",
385 "background_sync/background_sync_registration_options.h",
386 "background_sync/background_sync_service_impl.cc",
387 "background_sync/background_sync_service_impl.h",
388 "background_sync/background_sync_status.h",
389 "bad_message.cc",
390 "bad_message.h",
391 "blob_storage/blob_dispatcher_host.cc",
392 "blob_storage/blob_dispatcher_host.h",
jamd654ee52017-05-09 22:00:52393 "blob_storage/blob_internals_url_loader.cc",
394 "blob_storage/blob_internals_url_loader.h",
brettwb167c7332016-09-07 22:52:46395 "blob_storage/chrome_blob_storage_context.cc",
396 "blob_storage/chrome_blob_storage_context.h",
juncaif70c51172017-02-10 23:49:17397 "bluetooth/bluetooth_allowed_devices.cc",
398 "bluetooth/bluetooth_allowed_devices.h",
brettwb167c7332016-09-07 22:52:46399 "bluetooth/bluetooth_allowed_devices_map.cc",
400 "bluetooth/bluetooth_allowed_devices_map.h",
beaufort.francois01135bf2016-11-23 14:37:36401 "bluetooth/bluetooth_blocklist.cc",
402 "bluetooth/bluetooth_blocklist.h",
brettwb167c7332016-09-07 22:52:46403 "bluetooth/bluetooth_device_chooser_controller.cc",
404 "bluetooth/bluetooth_device_chooser_controller.h",
405 "bluetooth/bluetooth_metrics.cc",
406 "bluetooth/bluetooth_metrics.h",
brettwb167c7332016-09-07 22:52:46407 "bluetooth/frame_connected_bluetooth_devices.cc",
408 "bluetooth/frame_connected_bluetooth_devices.h",
409 "bluetooth/web_bluetooth_service_impl.cc",
410 "bluetooth/web_bluetooth_service_impl.h",
411 "bootstrap_sandbox_manager_mac.cc",
412 "bootstrap_sandbox_manager_mac.h",
413 "broadcast_channel/broadcast_channel_provider.cc",
414 "broadcast_channel/broadcast_channel_provider.h",
415 "browser_child_process_host_impl.cc",
416 "browser_child_process_host_impl.h",
417 "browser_context.cc",
418 "browser_ipc_logging.cc",
419 "browser_main.cc",
420 "browser_main.h",
421 "browser_main_loop.cc",
422 "browser_main_loop.h",
423 "browser_main_runner.cc",
424 "browser_plugin/browser_plugin_embedder.cc",
425 "browser_plugin/browser_plugin_embedder.h",
426 "browser_plugin/browser_plugin_guest.cc",
427 "browser_plugin/browser_plugin_guest.h",
428 "browser_plugin/browser_plugin_message_filter.cc",
429 "browser_plugin/browser_plugin_message_filter.h",
430 "browser_plugin/browser_plugin_popup_menu_helper_mac.h",
431 "browser_plugin/browser_plugin_popup_menu_helper_mac.mm",
432 "browser_process_sub_thread.cc",
433 "browser_process_sub_thread.h",
434 "browser_shutdown_profile_dumper.cc",
435 "browser_shutdown_profile_dumper.h",
436 "browser_thread_impl.cc",
437 "browser_thread_impl.h",
438 "browser_url_handler_impl.cc",
439 "browser_url_handler_impl.h",
msrameka3c7cfd2017-02-03 13:34:13440 "browsing_data/browsing_data_filter_builder_impl.cc",
441 "browsing_data/browsing_data_filter_builder_impl.h",
msrameke169ccb2017-04-26 05:21:41442 "browsing_data/browsing_data_remover_impl.cc",
443 "browsing_data/browsing_data_remover_impl.h",
brettwb167c7332016-09-07 22:52:46444 "browsing_data/clear_site_data_throttle.cc",
445 "browsing_data/clear_site_data_throttle.h",
msramekee2be6e2017-03-27 19:28:01446 "browsing_data/conditional_cache_deletion_helper.cc",
447 "browsing_data/conditional_cache_deletion_helper.h",
448 "browsing_data/storage_partition_http_cache_data_remover.cc",
449 "browsing_data/storage_partition_http_cache_data_remover.h",
brettwb167c7332016-09-07 22:52:46450 "browsing_instance.cc",
451 "browsing_instance.h",
452 "byte_stream.cc",
453 "byte_stream.h",
454 "cache_storage/cache_storage.cc",
455 "cache_storage/cache_storage.h",
456 "cache_storage/cache_storage_blob_to_disk_cache.cc",
457 "cache_storage/cache_storage_blob_to_disk_cache.h",
458 "cache_storage/cache_storage_cache.cc",
459 "cache_storage/cache_storage_cache.h",
460 "cache_storage/cache_storage_cache_handle.cc",
461 "cache_storage/cache_storage_cache_handle.h",
cmumfordffb8a162016-12-22 15:26:50462 "cache_storage/cache_storage_cache_observer.h",
brettwb167c7332016-09-07 22:52:46463 "cache_storage/cache_storage_context_impl.cc",
464 "cache_storage/cache_storage_context_impl.h",
465 "cache_storage/cache_storage_dispatcher_host.cc",
466 "cache_storage/cache_storage_dispatcher_host.h",
467 "cache_storage/cache_storage_histogram_macros.h",
cmumfordffb8a162016-12-22 15:26:50468 "cache_storage/cache_storage_index.cc",
469 "cache_storage/cache_storage_index.h",
brettwb167c7332016-09-07 22:52:46470 "cache_storage/cache_storage_manager.cc",
471 "cache_storage/cache_storage_manager.h",
472 "cache_storage/cache_storage_operation.cc",
473 "cache_storage/cache_storage_operation.h",
474 "cache_storage/cache_storage_quota_client.cc",
475 "cache_storage/cache_storage_quota_client.h",
476 "cache_storage/cache_storage_scheduler.cc",
477 "cache_storage/cache_storage_scheduler.h",
478 "cache_storage/cache_storage_scheduler_client.h",
brettwb167c7332016-09-07 22:52:46479 "child_process_launcher.cc",
480 "child_process_launcher.h",
jcivelli828cd7f2017-01-18 19:50:46481 "child_process_launcher_helper.cc",
482 "child_process_launcher_helper.h",
483 "child_process_launcher_helper_android.cc",
boliu4ac59a52017-03-20 17:45:32484 "child_process_launcher_helper_android.h",
jcivelli828cd7f2017-01-18 19:50:46485 "child_process_launcher_helper_linux.cc",
486 "child_process_launcher_helper_mac.cc",
487 "child_process_launcher_helper_posix.cc",
488 "child_process_launcher_helper_posix.h",
489 "child_process_launcher_helper_win.cc",
brettwb167c7332016-09-07 22:52:46490 "child_process_security_policy_impl.cc",
491 "child_process_security_policy_impl.h",
492 "cocoa/system_hotkey_helper_mac.h",
493 "cocoa/system_hotkey_helper_mac.mm",
494 "cocoa/system_hotkey_map.h",
495 "cocoa/system_hotkey_map.mm",
[email protected]743530f2014-06-12 19:38:50496
brettwb167c7332016-09-07 22:52:46497 # NOTE: These files are here instead of in compositor_browser_sources
498 # because the latter is not built on Android, whereas these files are
499 # needed on all platforms.
kylechar69bd9162017-04-10 23:45:48500 "compositor/frame_sink_manager_host.cc",
501 "compositor/frame_sink_manager_host.h",
kylechar8b18a092017-05-02 22:10:55502 "compositor/frame_sink_observer.h",
brettwb167c7332016-09-07 22:52:46503 "compositor/surface_utils.cc",
504 "compositor/surface_utils.h",
brettwb167c7332016-09-07 22:52:46505 "devtools/browser_devtools_agent_host.cc",
506 "devtools/browser_devtools_agent_host.h",
507 "devtools/devtools_agent_host_impl.cc",
508 "devtools/devtools_agent_host_impl.h",
509 "devtools/devtools_frame_trace_recorder.cc",
510 "devtools/devtools_frame_trace_recorder.h",
pfeldman10628762016-09-08 07:59:26511 "devtools/devtools_http_handler.cc",
512 "devtools/devtools_http_handler.h",
brettwb167c7332016-09-07 22:52:46513 "devtools/devtools_io_context.cc",
514 "devtools/devtools_io_context.h",
515 "devtools/devtools_manager.cc",
516 "devtools/devtools_manager.h",
dgozmand77188632016-11-16 01:34:39517 "devtools/devtools_session.cc",
518 "devtools/devtools_session.h",
brettwb167c7332016-09-07 22:52:46519 "devtools/forwarding_agent_host.cc",
520 "devtools/forwarding_agent_host.h",
521 "devtools/page_navigation_throttle.cc",
522 "devtools/page_navigation_throttle.h",
dgozman39d9d9a2016-12-28 18:56:30523 "devtools/protocol/devtools_domain_handler.cc",
524 "devtools/protocol/devtools_domain_handler.h",
brettwb167c7332016-09-07 22:52:46525 "devtools/protocol/dom_handler.cc",
526 "devtools/protocol/dom_handler.h",
527 "devtools/protocol/emulation_handler.cc",
528 "devtools/protocol/emulation_handler.h",
529 "devtools/protocol/input_handler.cc",
530 "devtools/protocol/input_handler.h",
531 "devtools/protocol/inspector_handler.cc",
532 "devtools/protocol/inspector_handler.h",
533 "devtools/protocol/io_handler.cc",
534 "devtools/protocol/io_handler.h",
535 "devtools/protocol/memory_handler.cc",
536 "devtools/protocol/memory_handler.h",
537 "devtools/protocol/network_handler.cc",
538 "devtools/protocol/network_handler.h",
539 "devtools/protocol/page_handler.cc",
540 "devtools/protocol/page_handler.h",
541 "devtools/protocol/schema_handler.cc",
542 "devtools/protocol/schema_handler.h",
543 "devtools/protocol/security_handler.cc",
544 "devtools/protocol/security_handler.h",
545 "devtools/protocol/service_worker_handler.cc",
546 "devtools/protocol/service_worker_handler.h",
547 "devtools/protocol/storage_handler.cc",
548 "devtools/protocol/storage_handler.h",
549 "devtools/protocol/system_info_handler.cc",
550 "devtools/protocol/system_info_handler.h",
dgozmanc2cea7d2016-09-28 03:27:55551 "devtools/protocol/target_handler.cc",
552 "devtools/protocol/target_handler.h",
brettwb167c7332016-09-07 22:52:46553 "devtools/protocol/tethering_handler.cc",
554 "devtools/protocol/tethering_handler.h",
555 "devtools/protocol/tracing_handler.cc",
556 "devtools/protocol/tracing_handler.h",
dgozmandc4d41722016-11-15 22:40:56557 "devtools/protocol_string.cc",
558 "devtools/protocol_string.h",
brettwb167c7332016-09-07 22:52:46559 "devtools/render_frame_devtools_agent_host.cc",
560 "devtools/render_frame_devtools_agent_host.h",
561 "devtools/service_worker_devtools_agent_host.cc",
562 "devtools/service_worker_devtools_agent_host.h",
563 "devtools/service_worker_devtools_manager.cc",
564 "devtools/service_worker_devtools_manager.h",
565 "devtools/shared_worker_devtools_agent_host.cc",
566 "devtools/shared_worker_devtools_agent_host.h",
567 "devtools/shared_worker_devtools_manager.cc",
568 "devtools/shared_worker_devtools_manager.h",
569 "devtools/worker_devtools_agent_host.cc",
570 "devtools/worker_devtools_agent_host.h",
571 "dom_storage/dom_storage_area.cc",
572 "dom_storage/dom_storage_area.h",
573 "dom_storage/dom_storage_context_impl.cc",
574 "dom_storage/dom_storage_context_impl.h",
575 "dom_storage/dom_storage_context_wrapper.cc",
576 "dom_storage/dom_storage_context_wrapper.h",
577 "dom_storage/dom_storage_database.cc",
578 "dom_storage/dom_storage_database.h",
579 "dom_storage/dom_storage_database_adapter.h",
580 "dom_storage/dom_storage_host.cc",
581 "dom_storage/dom_storage_host.h",
582 "dom_storage/dom_storage_message_filter.cc",
583 "dom_storage/dom_storage_message_filter.h",
584 "dom_storage/dom_storage_namespace.cc",
585 "dom_storage/dom_storage_namespace.h",
586 "dom_storage/dom_storage_session.cc",
587 "dom_storage/dom_storage_session.h",
588 "dom_storage/dom_storage_task_runner.cc",
589 "dom_storage/dom_storage_task_runner.h",
mek876c5c62016-12-22 17:40:46590 "dom_storage/local_storage_context_mojo.cc",
591 "dom_storage/local_storage_context_mojo.h",
brettwb167c7332016-09-07 22:52:46592 "dom_storage/local_storage_database_adapter.cc",
593 "dom_storage/local_storage_database_adapter.h",
594 "dom_storage/session_storage_database.cc",
595 "dom_storage/session_storage_database.h",
596 "dom_storage/session_storage_database_adapter.cc",
597 "dom_storage/session_storage_database_adapter.h",
598 "dom_storage/session_storage_namespace_impl.cc",
599 "dom_storage/session_storage_namespace_impl.h",
600 "download/base_file.cc",
601 "download/base_file.h",
brettwb167c7332016-09-07 22:52:46602 "download/base_file_posix.cc",
603 "download/base_file_win.cc",
604 "download/download_create_info.cc",
605 "download/download_create_info.h",
606 "download/download_destination_observer.h",
607 "download/download_file.h",
608 "download/download_file_factory.cc",
609 "download/download_file_factory.h",
610 "download/download_file_impl.cc",
611 "download/download_file_impl.h",
612 "download/download_interrupt_reasons_impl.cc",
613 "download/download_interrupt_reasons_impl.h",
614 "download/download_item_factory.h",
615 "download/download_item_impl.cc",
616 "download/download_item_impl.h",
617 "download/download_item_impl_delegate.cc",
618 "download/download_item_impl_delegate.h",
xingliuf61d39f2017-01-27 22:46:46619 "download/download_job.cc",
620 "download/download_job.h",
xingliu468824d2017-02-28 02:59:25621 "download/download_job_factory.cc",
622 "download/download_job_factory.h",
623 "download/download_job_impl.cc",
624 "download/download_job_impl.h",
brettwb167c7332016-09-07 22:52:46625 "download/download_manager_impl.cc",
626 "download/download_manager_impl.h",
627 "download/download_net_log_parameters.cc",
628 "download/download_net_log_parameters.h",
629 "download/download_request_core.cc",
630 "download/download_request_core.h",
631 "download/download_request_handle.cc",
632 "download/download_request_handle.h",
633 "download/download_resource_handler.cc",
634 "download/download_resource_handler.h",
635 "download/download_stats.cc",
636 "download/download_stats.h",
xingliu468824d2017-02-28 02:59:25637 "download/download_worker.cc",
638 "download/download_worker.h",
brettwb167c7332016-09-07 22:52:46639 "download/drag_download_file.cc",
640 "download/drag_download_file.h",
641 "download/drag_download_util.cc",
642 "download/drag_download_util.h",
petewil2abcf042017-04-10 21:45:00643 "download/mhtml_extra_parts_impl.cc",
644 "download/mhtml_extra_parts_impl.h",
brettwb167c7332016-09-07 22:52:46645 "download/mhtml_generation_manager.cc",
646 "download/mhtml_generation_manager.h",
xingliu468824d2017-02-28 02:59:25647 "download/parallel_download_job.cc",
648 "download/parallel_download_job.h",
qinmin41a4abf2017-03-02 06:21:31649 "download/parallel_download_utils.cc",
650 "download/parallel_download_utils.h",
brettwb167c7332016-09-07 22:52:46651 "download/rate_estimator.cc",
652 "download/rate_estimator.h",
653 "download/save_file.cc",
654 "download/save_file.h",
655 "download/save_file_manager.cc",
656 "download/save_file_manager.h",
657 "download/save_file_resource_handler.cc",
658 "download/save_file_resource_handler.h",
659 "download/save_item.cc",
660 "download/save_item.h",
661 "download/save_package.cc",
662 "download/save_package.h",
663 "download/save_types.cc",
664 "download/save_types.h",
665 "download/url_downloader.cc",
666 "download/url_downloader.h",
chiniforooshan614d70a2017-03-17 01:19:33667 "field_trial_recorder.cc",
668 "field_trial_recorder.h",
brettwb167c7332016-09-07 22:52:46669 "fileapi/browser_file_system_helper.cc",
670 "fileapi/browser_file_system_helper.h",
671 "fileapi/fileapi_message_filter.cc",
672 "fileapi/fileapi_message_filter.h",
673 "fileapi/upload_file_system_file_element_reader.cc",
674 "fileapi/upload_file_system_file_element_reader.h",
675 "find_request_manager.cc",
676 "find_request_manager.h",
677 "font_list_async.cc",
arthursonzognic5a2f122016-12-21 08:47:16678 "frame_host/ancestor_throttle.cc",
679 "frame_host/ancestor_throttle.h",
brettwb167c7332016-09-07 22:52:46680 "frame_host/cross_process_frame_connector.cc",
681 "frame_host/cross_process_frame_connector.h",
meacerba52f56202017-04-22 00:08:08682 "frame_host/data_url_navigation_throttle.cc",
683 "frame_host/data_url_navigation_throttle.h",
brettwb167c7332016-09-07 22:52:46684 "frame_host/debug_urls.cc",
685 "frame_host/debug_urls.h",
arthursonzogni7cc34c52017-03-18 09:00:53686 "frame_host/form_submission_throttle.cc",
687 "frame_host/form_submission_throttle.h",
brettwb167c7332016-09-07 22:52:46688 "frame_host/frame_navigation_entry.cc",
689 "frame_host/frame_navigation_entry.h",
690 "frame_host/frame_tree.cc",
691 "frame_host/frame_tree.h",
692 "frame_host/frame_tree_node.cc",
693 "frame_host/frame_tree_node.h",
694 "frame_host/frame_tree_node_blame_context.cc",
695 "frame_host/frame_tree_node_blame_context.h",
696 "frame_host/interstitial_page_impl.cc",
697 "frame_host/interstitial_page_impl.h",
698 "frame_host/interstitial_page_navigator_impl.cc",
699 "frame_host/interstitial_page_navigator_impl.h",
carloskd9d97942017-02-16 08:58:09700 "frame_host/mixed_content_navigation_throttle.cc",
701 "frame_host/mixed_content_navigation_throttle.h",
brettwb167c7332016-09-07 22:52:46702 "frame_host/navigation_controller_android.cc",
703 "frame_host/navigation_controller_android.h",
704 "frame_host/navigation_controller_delegate.h",
705 "frame_host/navigation_controller_impl.cc",
706 "frame_host/navigation_controller_impl.h",
707 "frame_host/navigation_entry_impl.cc",
708 "frame_host/navigation_entry_impl.h",
709 "frame_host/navigation_entry_screenshot_manager.cc",
710 "frame_host/navigation_entry_screenshot_manager.h",
711 "frame_host/navigation_handle_impl.cc",
712 "frame_host/navigation_handle_impl.h",
713 "frame_host/navigation_request.cc",
714 "frame_host/navigation_request.h",
715 "frame_host/navigation_request_info.cc",
716 "frame_host/navigation_request_info.h",
717 "frame_host/navigator.cc",
718 "frame_host/navigator.h",
719 "frame_host/navigator_delegate.cc",
720 "frame_host/navigator_delegate.h",
721 "frame_host/navigator_impl.cc",
722 "frame_host/navigator_impl.h",
723 "frame_host/popup_menu_helper_mac.h",
724 "frame_host/popup_menu_helper_mac.mm",
725 "frame_host/render_frame_host_delegate.cc",
726 "frame_host/render_frame_host_delegate.h",
727 "frame_host/render_frame_host_factory.cc",
728 "frame_host/render_frame_host_factory.h",
729 "frame_host/render_frame_host_impl.cc",
730 "frame_host/render_frame_host_impl.h",
731 "frame_host/render_frame_host_manager.cc",
732 "frame_host/render_frame_host_manager.h",
733 "frame_host/render_frame_message_filter.cc",
734 "frame_host/render_frame_message_filter.h",
735 "frame_host/render_frame_proxy_host.cc",
736 "frame_host/render_frame_proxy_host.h",
737 "frame_host/render_widget_host_view_child_frame.cc",
738 "frame_host/render_widget_host_view_child_frame.h",
739 "frame_host/render_widget_host_view_guest.cc",
740 "frame_host/render_widget_host_view_guest.h",
brettwb167c7332016-09-07 22:52:46741 "gpu/browser_gpu_channel_host_factory.cc",
742 "gpu/browser_gpu_channel_host_factory.h",
743 "gpu/browser_gpu_memory_buffer_manager.cc",
744 "gpu/browser_gpu_memory_buffer_manager.h",
745 "gpu/compositor_util.cc",
746 "gpu/compositor_util.h",
sadrul53546592016-12-17 01:44:21747 "gpu/gpu_client.cc",
748 "gpu/gpu_client.h",
brettwb167c7332016-09-07 22:52:46749 "gpu/gpu_data_manager_impl.cc",
750 "gpu/gpu_data_manager_impl.h",
751 "gpu/gpu_data_manager_impl_private.cc",
752 "gpu/gpu_data_manager_impl_private.h",
michaelpg67362b52017-02-15 06:18:27753 "gpu/gpu_feature_checker_impl.cc",
754 "gpu/gpu_feature_checker_impl.h",
brettwb167c7332016-09-07 22:52:46755 "gpu/gpu_internals_ui.cc",
756 "gpu/gpu_internals_ui.h",
tapted4091f2f2017-02-07 00:47:19757 "gpu/gpu_main_thread_factory.cc",
758 "gpu/gpu_main_thread_factory.h",
brettwb167c7332016-09-07 22:52:46759 "gpu/gpu_process_host.cc",
760 "gpu/gpu_process_host.h",
sadrul75d671b2016-12-13 06:14:39761 "gpu/shader_cache_factory.cc",
762 "gpu/shader_cache_factory.h",
brettwb167c7332016-09-07 22:52:46763 "histogram_controller.cc",
764 "histogram_controller.h",
765 "histogram_internals_request_job.cc",
766 "histogram_internals_request_job.h",
jam17d386e2017-05-10 16:40:04767 "histogram_internals_url_loader.cc",
768 "histogram_internals_url_loader.h",
brettwb167c7332016-09-07 22:52:46769 "histogram_message_filter.cc",
770 "histogram_message_filter.h",
771 "histogram_subscriber.h",
772 "histogram_synchronizer.cc",
773 "histogram_synchronizer.h",
774 "host_zoom_level_context.cc",
775 "host_zoom_level_context.h",
776 "host_zoom_map_impl.cc",
777 "host_zoom_map_impl.h",
scottmg276753cf2016-10-27 18:25:22778 "host_zoom_map_observer.cc",
779 "host_zoom_map_observer.h",
mcasas18de5022017-03-10 22:45:50780 "image_capture/image_capture_impl.cc",
781 "image_capture/image_capture_impl.h",
reillyg39fb4662016-11-22 20:27:17782 "indexed_db/cursor_impl.cc",
783 "indexed_db/cursor_impl.h",
reillyg963ec6df2016-11-05 01:10:58784 "indexed_db/database_impl.cc",
785 "indexed_db/database_impl.h",
brettwb167c7332016-09-07 22:52:46786 "indexed_db/indexed_db.h",
787 "indexed_db/indexed_db_active_blob_registry.cc",
788 "indexed_db/indexed_db_active_blob_registry.h",
789 "indexed_db/indexed_db_backing_store.cc",
790 "indexed_db/indexed_db_backing_store.h",
791 "indexed_db/indexed_db_blob_info.cc",
792 "indexed_db/indexed_db_blob_info.h",
793 "indexed_db/indexed_db_callbacks.cc",
794 "indexed_db/indexed_db_callbacks.h",
795 "indexed_db/indexed_db_class_factory.cc",
796 "indexed_db/indexed_db_class_factory.h",
797 "indexed_db/indexed_db_connection.cc",
798 "indexed_db/indexed_db_connection.h",
799 "indexed_db/indexed_db_context_impl.cc",
800 "indexed_db/indexed_db_context_impl.h",
801 "indexed_db/indexed_db_cursor.cc",
802 "indexed_db/indexed_db_cursor.h",
jbroman3ee0c8ab2017-04-20 14:25:03803 "indexed_db/indexed_db_data_format_version.cc",
804 "indexed_db/indexed_db_data_format_version.h",
brettwb167c7332016-09-07 22:52:46805 "indexed_db/indexed_db_data_loss_info.h",
806 "indexed_db/indexed_db_database.cc",
807 "indexed_db/indexed_db_database.h",
808 "indexed_db/indexed_db_database_callbacks.cc",
809 "indexed_db/indexed_db_database_callbacks.h",
810 "indexed_db/indexed_db_database_error.cc",
811 "indexed_db/indexed_db_database_error.h",
812 "indexed_db/indexed_db_dispatcher_host.cc",
813 "indexed_db/indexed_db_dispatcher_host.h",
814 "indexed_db/indexed_db_factory.h",
815 "indexed_db/indexed_db_factory_impl.cc",
816 "indexed_db/indexed_db_factory_impl.h",
817 "indexed_db/indexed_db_index_writer.cc",
818 "indexed_db/indexed_db_index_writer.h",
819 "indexed_db/indexed_db_internals_ui.cc",
820 "indexed_db/indexed_db_internals_ui.h",
821 "indexed_db/indexed_db_leveldb_coding.cc",
822 "indexed_db/indexed_db_leveldb_coding.h",
brettwb167c7332016-09-07 22:52:46823 "indexed_db/indexed_db_observer.cc",
824 "indexed_db/indexed_db_observer.h",
brettwb167c7332016-09-07 22:52:46825 "indexed_db/indexed_db_pending_connection.cc",
826 "indexed_db/indexed_db_pending_connection.h",
827 "indexed_db/indexed_db_quota_client.cc",
828 "indexed_db/indexed_db_quota_client.h",
829 "indexed_db/indexed_db_return_value.h",
wychen589d05e2017-03-31 00:06:36830 "indexed_db/indexed_db_tracing.h",
brettwb167c7332016-09-07 22:52:46831 "indexed_db/indexed_db_transaction.cc",
832 "indexed_db/indexed_db_transaction.h",
833 "indexed_db/indexed_db_transaction_coordinator.cc",
834 "indexed_db/indexed_db_transaction_coordinator.h",
835 "indexed_db/indexed_db_value.cc",
836 "indexed_db/indexed_db_value.h",
837 "indexed_db/leveldb/leveldb_comparator.h",
838 "indexed_db/leveldb/leveldb_database.cc",
839 "indexed_db/leveldb/leveldb_database.h",
840 "indexed_db/leveldb/leveldb_env.cc",
841 "indexed_db/leveldb/leveldb_env.h",
842 "indexed_db/leveldb/leveldb_factory.h",
dmurphec764052017-03-27 23:12:47843 "indexed_db/leveldb/leveldb_iterator.cc",
brettwb167c7332016-09-07 22:52:46844 "indexed_db/leveldb/leveldb_iterator.h",
845 "indexed_db/leveldb/leveldb_iterator_impl.cc",
846 "indexed_db/leveldb/leveldb_iterator_impl.h",
847 "indexed_db/leveldb/leveldb_transaction.cc",
848 "indexed_db/leveldb/leveldb_transaction.h",
849 "indexed_db/leveldb/leveldb_write_batch.cc",
850 "indexed_db/leveldb/leveldb_write_batch.h",
wychen589d05e2017-03-31 00:06:36851 "indexed_db/list_set.h",
mgiuca35f4c7152017-03-14 08:30:30852 "installedapp/installed_app_provider_impl_default.cc",
853 "installedapp/installed_app_provider_impl_default.h",
zijiehe60167782017-04-28 22:31:02854 "keyboard_lock/keyboard_lock_service_impl.cc",
855 "keyboard_lock/keyboard_lock_service_impl.h",
brettwb167c7332016-09-07 22:52:46856 "leveldb_wrapper_impl.cc",
857 "leveldb_wrapper_impl.h",
858 "loader/async_resource_handler.cc",
859 "loader/async_resource_handler.h",
brettwb167c7332016-09-07 22:52:46860 "loader/detachable_resource_handler.cc",
861 "loader/detachable_resource_handler.h",
tzik47a9f9b2016-12-01 04:16:24862 "loader/downloaded_temp_file_impl.cc",
863 "loader/downloaded_temp_file_impl.h",
brettwb167c7332016-09-07 22:52:46864 "loader/global_routing_id.h",
865 "loader/intercepting_resource_handler.cc",
866 "loader/intercepting_resource_handler.h",
867 "loader/layered_resource_handler.cc",
868 "loader/layered_resource_handler.h",
869 "loader/loader_delegate.h",
870 "loader/loader_io_thread_notifier.cc",
871 "loader/loader_io_thread_notifier.h",
872 "loader/mime_sniffing_resource_handler.cc",
873 "loader/mime_sniffing_resource_handler.h",
874 "loader/mojo_async_resource_handler.cc",
875 "loader/mojo_async_resource_handler.h",
876 "loader/navigation_resource_handler.cc",
877 "loader/navigation_resource_handler.h",
878 "loader/navigation_resource_throttle.cc",
879 "loader/navigation_resource_throttle.h",
880 "loader/navigation_url_loader.cc",
881 "loader/navigation_url_loader.h",
882 "loader/navigation_url_loader_delegate.h",
883 "loader/navigation_url_loader_factory.h",
884 "loader/navigation_url_loader_impl.cc",
885 "loader/navigation_url_loader_impl.h",
886 "loader/navigation_url_loader_impl_core.cc",
887 "loader/navigation_url_loader_impl_core.h",
scottmg69985212017-04-12 16:47:28888 "loader/navigation_url_loader_network_service.cc",
889 "loader/navigation_url_loader_network_service.h",
brettwb167c7332016-09-07 22:52:46890 "loader/netlog_observer.cc",
891 "loader/netlog_observer.h",
mmenke87f5c77a2017-01-31 16:11:26892 "loader/null_resource_controller.cc",
893 "loader/null_resource_controller.h",
brettwb167c7332016-09-07 22:52:46894 "loader/power_save_block_resource_throttle.cc",
895 "loader/power_save_block_resource_throttle.h",
896 "loader/redirect_to_file_resource_handler.cc",
897 "loader/redirect_to_file_resource_handler.h",
898 "loader/resource_buffer.cc",
899 "loader/resource_buffer.h",
tyoshino3b3ee8e92016-12-07 16:04:07900 "loader/resource_controller.h",
brettwb167c7332016-09-07 22:52:46901 "loader/resource_dispatcher_host_impl.cc",
902 "loader/resource_dispatcher_host_impl.h",
903 "loader/resource_handler.cc",
904 "loader/resource_handler.h",
905 "loader/resource_hints_impl.cc",
906 "loader/resource_loader.cc",
907 "loader/resource_loader.h",
908 "loader/resource_loader_delegate.h",
909 "loader/resource_message_delegate.cc",
910 "loader/resource_message_delegate.h",
911 "loader/resource_message_filter.cc",
912 "loader/resource_message_filter.h",
913 "loader/resource_request_info_impl.cc",
914 "loader/resource_request_info_impl.h",
horo227286f72016-11-29 11:10:33915 "loader/resource_requester_info.cc",
916 "loader/resource_requester_info.h",
brettwb167c7332016-09-07 22:52:46917 "loader/resource_scheduler.cc",
918 "loader/resource_scheduler.h",
919 "loader/resource_scheduler_filter.cc",
920 "loader/resource_scheduler_filter.h",
921 "loader/stream_resource_handler.cc",
922 "loader/stream_resource_handler.h",
923 "loader/stream_writer.cc",
924 "loader/stream_writer.h",
925 "loader/sync_resource_handler.cc",
926 "loader/sync_resource_handler.h",
927 "loader/temporary_file_stream.cc",
928 "loader/temporary_file_stream.h",
929 "loader/throttling_resource_handler.cc",
930 "loader/throttling_resource_handler.h",
931 "loader/upload_data_stream_builder.cc",
932 "loader/upload_data_stream_builder.h",
tzika6914612016-12-15 12:48:59933 "loader/upload_progress_tracker.cc",
934 "loader/upload_progress_tracker.h",
brettwb167c7332016-09-07 22:52:46935 "loader/url_loader_factory_impl.cc",
936 "loader/url_loader_factory_impl.h",
937 "loader_delegate_impl.cc",
938 "loader_delegate_impl.h",
939 "mach_broker_mac.h",
940 "mach_broker_mac.mm",
941 "manifest/manifest_manager_host.cc",
942 "manifest/manifest_manager_host.h",
brettwb167c7332016-09-07 22:52:46943 "media/android/browser_media_player_manager.cc",
944 "media/android/browser_media_player_manager.h",
brettwb167c7332016-09-07 22:52:46945 "media/android/browser_surface_view_manager.cc",
946 "media/android/browser_surface_view_manager.h",
947 "media/android/media_player_renderer.cc",
948 "media/android/media_player_renderer.h",
949 "media/android/media_resource_getter_impl.cc",
950 "media/android/media_resource_getter_impl.h",
brettwb167c7332016-09-07 22:52:46951 "media/android/media_web_contents_observer_android.cc",
952 "media/android/media_web_contents_observer_android.h",
brettwb167c7332016-09-07 22:52:46953 "media/audible_metrics.cc",
954 "media/audible_metrics.h",
955 "media/audio_stream_monitor.cc",
956 "media/audio_stream_monitor.h",
957 "media/capture/audio_mirroring_manager.cc",
958 "media/capture/audio_mirroring_manager.h",
brettwb167c7332016-09-07 22:52:46959 "media/capture/desktop_capture_device_uma_types.cc",
960 "media/capture/desktop_capture_device_uma_types.h",
brettwb167c7332016-09-07 22:52:46961 "media/capture/web_contents_audio_input_stream.cc",
962 "media/capture/web_contents_audio_input_stream.h",
963 "media/capture/web_contents_audio_muter.cc",
964 "media/capture/web_contents_audio_muter.h",
965 "media/capture/web_contents_tracker.cc",
966 "media/capture/web_contents_tracker.h",
xhwang5ba56be2016-12-13 07:13:03967 "media/cdm_registry_impl.cc",
968 "media/cdm_registry_impl.h",
guidoudf036b32016-10-31 14:51:14969 "media/media_devices_permission_checker.cc",
970 "media/media_devices_permission_checker.h",
guidou8a440b842017-01-30 13:58:43971 "media/media_devices_util.cc",
972 "media/media_devices_util.h",
xhwangaa0bf6d2016-12-03 01:19:15973 "media/media_interface_proxy.cc",
974 "media/media_interface_proxy.h",
brettwb167c7332016-09-07 22:52:46975 "media/media_internals.cc",
976 "media/media_internals.h",
977 "media/media_internals_handler.cc",
978 "media/media_internals_handler.h",
979 "media/media_internals_proxy.cc",
980 "media/media_internals_proxy.h",
981 "media/media_internals_ui.cc",
982 "media/media_internals_ui.h",
983 "media/media_web_contents_observer.cc",
984 "media/media_web_contents_observer.h",
985 "media/midi_host.cc",
986 "media/midi_host.h",
zqzhanga2147f82016-10-18 22:53:26987 "media/session/audio_focus_delegate.h",
988 "media/session/audio_focus_delegate_android.cc",
989 "media/session/audio_focus_delegate_android.h",
990 "media/session/audio_focus_delegate_default.cc",
brettwb167c7332016-09-07 22:52:46991 "media/session/audio_focus_manager.cc",
992 "media/session/audio_focus_manager.h",
zqzhangd84e72872016-10-07 19:22:03993 "media/session/media_metadata_sanitizer.cc",
994 "media/session/media_metadata_sanitizer.h",
zqzhang1adf3cb2016-11-01 11:26:45995 "media/session/media_session_android.cc",
996 "media/session/media_session_android.h",
brettwb167c7332016-09-07 22:52:46997 "media/session/media_session_controller.cc",
998 "media/session/media_session_controller.h",
999 "media/session/media_session_controllers_manager.cc",
1000 "media/session/media_session_controllers_manager.h",
zqzhang1adf3cb2016-11-01 11:26:451001 "media/session/media_session_impl.cc",
1002 "media/session/media_session_impl.h",
zqzhanga2147f82016-10-18 22:53:261003 "media/session/media_session_player_observer.h",
zqzhangd84e72872016-10-07 19:22:031004 "media/session/media_session_service_impl.cc",
1005 "media/session/media_session_service_impl.h",
brettwb167c7332016-09-07 22:52:461006 "media/session/media_session_uma_helper.cc",
1007 "media/session/media_session_uma_helper.h",
slana0da4302016-11-07 17:37:011008 "media/url_provision_fetcher.cc",
1009 "media/url_provision_fetcher.h",
bashi810232f52017-03-03 04:38:021010 "memory/memory_condition_observer.cc",
1011 "memory/memory_condition_observer.h",
bashic5106fd2017-05-12 09:38:321012 "memory/memory_coordinator_default_policy.cc",
1013 "memory/memory_coordinator_default_policy.h",
bashi529cb14c2016-10-17 21:53:571014 "memory/memory_coordinator_impl.cc",
1015 "memory/memory_coordinator_impl.h",
bashia6264042016-09-15 04:49:511016 "memory/memory_monitor.cc",
1017 "memory/memory_monitor.h",
bashi66264142016-09-27 06:26:401018 "memory/memory_monitor_android.cc",
1019 "memory/memory_monitor_android.h",
bashia6264042016-09-15 04:49:511020 "memory/memory_monitor_win.cc",
1021 "memory/memory_monitor_win.h",
bashi4159f36e2017-05-01 01:18:511022 "memory/swap_metrics_observer.cc",
1023 "memory/swap_metrics_observer.h",
1024 "memory/swap_metrics_observer_linux.cc",
1025 "memory/swap_metrics_observer_linux.h",
1026 "memory/swap_metrics_observer_mac.cc",
bashi651d8fea2017-05-02 00:42:151027 "memory/swap_metrics_observer_mac.h",
bashi4159f36e2017-05-01 01:18:511028 "memory/swap_metrics_observer_win.cc",
brettwb167c7332016-09-07 22:52:461029 "message_port_provider.cc",
brettwb167c7332016-09-07 22:52:461030 "mime_registry_impl.cc",
1031 "mime_registry_impl.h",
brettwb167c7332016-09-07 22:52:461032 "net/browser_online_state_observer.cc",
1033 "net/browser_online_state_observer.h",
1034 "net/network_errors_listing_ui.cc",
1035 "net/network_errors_listing_ui.h",
tbansal15973c32017-05-10 18:40:441036 "net/network_quality_observer_impl.cc",
1037 "net/network_quality_observer_impl.h",
brettwb167c7332016-09-07 22:52:461038 "net/quota_policy_cookie_store.cc",
1039 "net/quota_policy_cookie_store.h",
1040 "net/view_blob_internals_job_factory.cc",
1041 "net/view_blob_internals_job_factory.h",
1042 "net/view_http_cache_job_factory.cc",
1043 "net/view_http_cache_job_factory.h",
1044 "notification_service_impl.cc",
1045 "notification_service_impl.h",
1046 "notifications/blink_notification_service_impl.cc",
1047 "notifications/blink_notification_service_impl.h",
1048 "notifications/notification_database.cc",
1049 "notifications/notification_database.h",
1050 "notifications/notification_database_data_conversions.cc",
1051 "notifications/notification_database_data_conversions.h",
1052 "notifications/notification_event_dispatcher_impl.cc",
1053 "notifications/notification_event_dispatcher_impl.h",
1054 "notifications/notification_id_generator.cc",
1055 "notifications/notification_id_generator.h",
1056 "notifications/notification_message_filter.cc",
1057 "notifications/notification_message_filter.h",
1058 "notifications/page_notification_delegate.cc",
1059 "notifications/page_notification_delegate.h",
1060 "notifications/platform_notification_context_impl.cc",
1061 "notifications/platform_notification_context_impl.h",
1062 "notifications/type_converters.cc",
1063 "notifications/type_converters.h",
jinho.bang745d987b2016-12-14 19:06:541064 "payments/payment_app_context_impl.cc",
1065 "payments/payment_app_context_impl.h",
jinho.bangab430572016-12-16 14:33:581066 "payments/payment_app_database.cc",
1067 "payments/payment_app_database.h",
jinho.bangac34b3a32017-01-05 12:51:211068 "payments/payment_app_provider_impl.cc",
1069 "payments/payment_app_provider_impl.h",
jinho.bangbbb00c32017-03-30 15:09:091070 "payments/payment_manager.cc",
1071 "payments/payment_manager.h",
brettwb167c7332016-09-07 22:52:461072 "permissions/permission_service_context.cc",
1073 "permissions/permission_service_context.h",
1074 "permissions/permission_service_impl.cc",
1075 "permissions/permission_service_impl.h",
brettwb167c7332016-09-07 22:52:461076 "presentation/presentation_service_impl.cc",
1077 "presentation/presentation_service_impl.h",
brettwb167c7332016-09-07 22:52:461078 "profiler_controller_impl.cc",
1079 "profiler_controller_impl.h",
1080 "profiler_message_filter.cc",
1081 "profiler_message_filter.h",
awdf5f7440c2017-01-09 12:38:561082 "push_messaging/push_messaging_context.cc",
1083 "push_messaging/push_messaging_context.h",
ke.he5f426e322017-02-22 12:37:121084 "push_messaging/push_messaging_manager.cc",
1085 "push_messaging/push_messaging_manager.h",
brettwb167c7332016-09-07 22:52:461086 "push_messaging/push_messaging_router.cc",
1087 "push_messaging/push_messaging_router.h",
1088 "quota_dispatcher_host.cc",
1089 "quota_dispatcher_host.h",
brettwb167c7332016-09-07 22:52:461090 "renderer_host/clipboard_message_filter.cc",
1091 "renderer_host/clipboard_message_filter.h",
1092 "renderer_host/clipboard_message_filter_mac.mm",
brettwb167c7332016-09-07 22:52:461093 "renderer_host/database_message_filter.cc",
1094 "renderer_host/database_message_filter.h",
brettwb167c7332016-09-07 22:52:461095 "renderer_host/dip_util.cc",
1096 "renderer_host/dip_util.h",
1097 "renderer_host/dwrite_font_proxy_message_filter_win.cc",
1098 "renderer_host/dwrite_font_proxy_message_filter_win.h",
1099 "renderer_host/event_with_latency_info.h",
1100 "renderer_host/file_utilities_message_filter.cc",
1101 "renderer_host/file_utilities_message_filter.h",
1102 "renderer_host/font_utils_linux.cc",
1103 "renderer_host/font_utils_linux.h",
1104 "renderer_host/frame_metadata_util.cc",
1105 "renderer_host/frame_metadata_util.h",
samans2040988b2017-04-11 23:58:351106 "renderer_host/frame_sink_provider_impl.cc",
1107 "renderer_host/frame_sink_provider_impl.h",
brettwb167c7332016-09-07 22:52:461108 "renderer_host/input/gesture_event_queue.cc",
1109 "renderer_host/input/gesture_event_queue.h",
1110 "renderer_host/input/input_ack_handler.h",
alexis.menardb12ba342017-04-15 09:01:191111 "renderer_host/input/input_device_change_observer.cc",
1112 "renderer_host/input/input_device_change_observer.h",
brettwb167c7332016-09-07 22:52:461113 "renderer_host/input/input_router.h",
1114 "renderer_host/input/input_router_client.h",
1115 "renderer_host/input/input_router_config_helper.cc",
1116 "renderer_host/input/input_router_config_helper.h",
1117 "renderer_host/input/input_router_impl.cc",
1118 "renderer_host/input/input_router_impl.h",
dtapuska73607ca2017-01-27 17:20:191119 "renderer_host/input/legacy_touch_event_queue.cc",
1120 "renderer_host/input/legacy_touch_event_queue.h",
brettwb167c7332016-09-07 22:52:461121 "renderer_host/input/motion_event_web.cc",
1122 "renderer_host/input/motion_event_web.h",
1123 "renderer_host/input/mouse_wheel_event_queue.cc",
1124 "renderer_host/input/mouse_wheel_event_queue.h",
1125 "renderer_host/input/mouse_wheel_rails_filter_mac.cc",
1126 "renderer_host/input/mouse_wheel_rails_filter_mac.h",
dtapuska53f9f4ee2017-02-27 01:14:261127 "renderer_host/input/passthrough_touch_event_queue.cc",
1128 "renderer_host/input/passthrough_touch_event_queue.h",
brettwb167c7332016-09-07 22:52:461129 "renderer_host/input/render_widget_host_latency_tracker.cc",
1130 "renderer_host/input/render_widget_host_latency_tracker.h",
1131 "renderer_host/input/stylus_text_selector.cc",
1132 "renderer_host/input/stylus_text_selector.h",
1133 "renderer_host/input/synthetic_gesture.cc",
1134 "renderer_host/input/synthetic_gesture.h",
1135 "renderer_host/input/synthetic_gesture_controller.cc",
1136 "renderer_host/input/synthetic_gesture_controller.h",
1137 "renderer_host/input/synthetic_gesture_target.h",
1138 "renderer_host/input/synthetic_gesture_target_aura.cc",
1139 "renderer_host/input/synthetic_gesture_target_aura.h",
1140 "renderer_host/input/synthetic_gesture_target_base.cc",
1141 "renderer_host/input/synthetic_gesture_target_base.h",
1142 "renderer_host/input/synthetic_gesture_target_mac.h",
1143 "renderer_host/input/synthetic_gesture_target_mac.mm",
lanwei1060f1f2016-11-28 23:00:311144 "renderer_host/input/synthetic_mouse_driver.cc",
1145 "renderer_host/input/synthetic_mouse_driver.h",
lanweid7de40d12017-01-26 22:52:191146 "renderer_host/input/synthetic_pen_driver.cc",
1147 "renderer_host/input/synthetic_pen_driver.h",
brettwb167c7332016-09-07 22:52:461148 "renderer_host/input/synthetic_pinch_gesture.cc",
1149 "renderer_host/input/synthetic_pinch_gesture.h",
brettwb167c7332016-09-07 22:52:461150 "renderer_host/input/synthetic_pointer_action.cc",
1151 "renderer_host/input/synthetic_pointer_action.h",
lanwei1060f1f2016-11-28 23:00:311152 "renderer_host/input/synthetic_pointer_driver.cc",
1153 "renderer_host/input/synthetic_pointer_driver.h",
brettwb167c7332016-09-07 22:52:461154 "renderer_host/input/synthetic_smooth_drag_gesture.cc",
1155 "renderer_host/input/synthetic_smooth_drag_gesture.h",
1156 "renderer_host/input/synthetic_smooth_move_gesture.cc",
1157 "renderer_host/input/synthetic_smooth_move_gesture.h",
1158 "renderer_host/input/synthetic_smooth_scroll_gesture.cc",
1159 "renderer_host/input/synthetic_smooth_scroll_gesture.h",
1160 "renderer_host/input/synthetic_tap_gesture.cc",
1161 "renderer_host/input/synthetic_tap_gesture.h",
lanwei1060f1f2016-11-28 23:00:311162 "renderer_host/input/synthetic_touch_driver.cc",
1163 "renderer_host/input/synthetic_touch_driver.h",
brettwb167c7332016-09-07 22:52:461164 "renderer_host/input/synthetic_touchpad_pinch_gesture.cc",
1165 "renderer_host/input/synthetic_touchpad_pinch_gesture.h",
1166 "renderer_host/input/synthetic_touchscreen_pinch_gesture.cc",
1167 "renderer_host/input/synthetic_touchscreen_pinch_gesture.h",
1168 "renderer_host/input/tap_suppression_controller.cc",
1169 "renderer_host/input/tap_suppression_controller.h",
1170 "renderer_host/input/tap_suppression_controller_client.h",
1171 "renderer_host/input/timeout_monitor.cc",
1172 "renderer_host/input/timeout_monitor.h",
1173 "renderer_host/input/touch_action_filter.cc",
1174 "renderer_host/input/touch_action_filter.h",
1175 "renderer_host/input/touch_emulator.cc",
1176 "renderer_host/input/touch_emulator.h",
1177 "renderer_host/input/touch_emulator_client.h",
brettwb167c7332016-09-07 22:52:461178 "renderer_host/input/touch_event_queue.h",
1179 "renderer_host/input/touch_selection_controller_client_aura.cc",
1180 "renderer_host/input/touch_selection_controller_client_aura.h",
dtapuska48fd5b92017-02-22 15:16:041181 "renderer_host/input/touch_timeout_handler.cc",
1182 "renderer_host/input/touch_timeout_handler.h",
brettwb167c7332016-09-07 22:52:461183 "renderer_host/input/touchpad_tap_suppression_controller.cc",
1184 "renderer_host/input/touchpad_tap_suppression_controller.h",
1185 "renderer_host/input/touchscreen_tap_suppression_controller.cc",
1186 "renderer_host/input/touchscreen_tap_suppression_controller.h",
1187 "renderer_host/input/web_input_event_builders_android.cc",
1188 "renderer_host/input/web_input_event_builders_android.h",
1189 "renderer_host/input/web_input_event_builders_mac.h",
1190 "renderer_host/input/web_input_event_builders_mac.mm",
1191 "renderer_host/legacy_render_widget_host_win.cc",
1192 "renderer_host/legacy_render_widget_host_win.h",
brettwb167c7332016-09-07 22:52:461193 "renderer_host/media/audio_input_device_manager.cc",
1194 "renderer_host/media/audio_input_device_manager.h",
1195 "renderer_host/media/audio_input_renderer_host.cc",
1196 "renderer_host/media/audio_input_renderer_host.h",
1197 "renderer_host/media/audio_input_sync_writer.cc",
1198 "renderer_host/media/audio_input_sync_writer.h",
maxmorinb08e8422016-11-18 09:34:011199 "renderer_host/media/audio_output_authorization_handler.cc",
1200 "renderer_host/media/audio_output_authorization_handler.h",
maxmorin5d6f36b2017-02-01 08:51:211201 "renderer_host/media/audio_output_delegate_impl.cc",
1202 "renderer_host/media/audio_output_delegate_impl.h",
brettwb167c7332016-09-07 22:52:461203 "renderer_host/media/audio_renderer_host.cc",
1204 "renderer_host/media/audio_renderer_host.h",
1205 "renderer_host/media/audio_sync_reader.cc",
1206 "renderer_host/media/audio_sync_reader.h",
chfremerc9148152017-04-17 17:10:261207 "renderer_host/media/in_process_launched_video_capture_device.cc",
1208 "renderer_host/media/in_process_launched_video_capture_device.h",
1209 "renderer_host/media/in_process_video_capture_device_launcher.cc",
1210 "renderer_host/media/in_process_video_capture_device_launcher.h",
chfremer3b099812017-04-11 17:30:501211 "renderer_host/media/in_process_video_capture_provider.cc",
1212 "renderer_host/media/in_process_video_capture_provider.h",
brettwb167c7332016-09-07 22:52:461213 "renderer_host/media/media_capture_devices_impl.cc",
1214 "renderer_host/media/media_capture_devices_impl.h",
guidou9357cc52016-10-11 19:53:361215 "renderer_host/media/media_devices_dispatcher_host.cc",
1216 "renderer_host/media/media_devices_dispatcher_host.h",
guidoucc6d4602016-09-23 21:28:431217 "renderer_host/media/media_devices_manager.cc",
1218 "renderer_host/media/media_devices_manager.h",
brettwb167c7332016-09-07 22:52:461219 "renderer_host/media/media_stream_dispatcher_host.cc",
1220 "renderer_host/media/media_stream_dispatcher_host.h",
1221 "renderer_host/media/media_stream_manager.cc",
1222 "renderer_host/media/media_stream_manager.h",
1223 "renderer_host/media/media_stream_provider.h",
1224 "renderer_host/media/media_stream_requester.h",
1225 "renderer_host/media/media_stream_track_metrics_host.cc",
1226 "renderer_host/media/media_stream_track_metrics_host.h",
1227 "renderer_host/media/media_stream_ui_proxy.cc",
1228 "renderer_host/media/media_stream_ui_proxy.h",
maxmorin2781f5ff2017-04-04 08:29:411229 "renderer_host/media/render_frame_audio_output_stream_factory.cc",
1230 "renderer_host/media/render_frame_audio_output_stream_factory.h",
1231 "renderer_host/media/renderer_audio_output_stream_factory_context.h",
1232 "renderer_host/media/renderer_audio_output_stream_factory_context_impl.cc",
1233 "renderer_host/media/renderer_audio_output_stream_factory_context_impl.h",
brettwb167c7332016-09-07 22:52:461234 "renderer_host/media/video_capture_controller.cc",
1235 "renderer_host/media/video_capture_controller.h",
1236 "renderer_host/media/video_capture_controller_event_handler.h",
chfremerc9148152017-04-17 17:10:261237 "renderer_host/media/video_capture_device_launch_observer.h",
brettwb167c7332016-09-07 22:52:461238 "renderer_host/media/video_capture_gpu_jpeg_decoder.cc",
1239 "renderer_host/media/video_capture_gpu_jpeg_decoder.h",
1240 "renderer_host/media/video_capture_host.cc",
1241 "renderer_host/media/video_capture_host.h",
1242 "renderer_host/media/video_capture_manager.cc",
1243 "renderer_host/media/video_capture_manager.h",
chfremer3b099812017-04-11 17:30:501244 "renderer_host/media/video_capture_provider.h",
brettwb167c7332016-09-07 22:52:461245 "renderer_host/native_web_keyboard_event_aura.cc",
1246 "renderer_host/native_web_keyboard_event_mac.mm",
kylechar30b894d2017-04-13 12:09:251247 "renderer_host/offscreen_canvas_provider_impl.cc",
1248 "renderer_host/offscreen_canvas_provider_impl.h",
brettwb167c7332016-09-07 22:52:461249 "renderer_host/offscreen_canvas_surface_impl.cc",
1250 "renderer_host/offscreen_canvas_surface_impl.h",
1251 "renderer_host/overscroll_configuration.cc",
1252 "renderer_host/overscroll_controller.cc",
1253 "renderer_host/overscroll_controller.h",
1254 "renderer_host/overscroll_controller_delegate.h",
1255 "renderer_host/render_message_filter.cc",
1256 "renderer_host/render_message_filter.h",
1257 "renderer_host/render_process_host_impl.cc",
1258 "renderer_host/render_process_host_impl.h",
1259 "renderer_host/render_sandbox_host_linux.cc",
1260 "renderer_host/render_sandbox_host_linux.h",
1261 "renderer_host/render_view_host_delegate.cc",
1262 "renderer_host/render_view_host_delegate.h",
rlanday7f2ec7f2016-12-14 02:28:341263 "renderer_host/render_view_host_delegate_view.cc",
brettwb167c7332016-09-07 22:52:461264 "renderer_host/render_view_host_delegate_view.h",
1265 "renderer_host/render_view_host_factory.cc",
1266 "renderer_host/render_view_host_factory.h",
1267 "renderer_host/render_view_host_impl.cc",
1268 "renderer_host/render_view_host_impl.h",
1269 "renderer_host/render_widget_helper.cc",
1270 "renderer_host/render_widget_helper.h",
1271 "renderer_host/render_widget_host_delegate.cc",
1272 "renderer_host/render_widget_host_delegate.h",
1273 "renderer_host/render_widget_host_impl.cc",
1274 "renderer_host/render_widget_host_impl.h",
1275 "renderer_host/render_widget_host_input_event_router.cc",
1276 "renderer_host/render_widget_host_input_event_router.h",
1277 "renderer_host/render_widget_host_owner_delegate.h",
1278 "renderer_host/render_widget_host_view_aura.cc",
1279 "renderer_host/render_widget_host_view_aura.h",
1280 "renderer_host/render_widget_host_view_base.cc",
1281 "renderer_host/render_widget_host_view_base.h",
1282 "renderer_host/render_widget_host_view_base_observer.cc",
1283 "renderer_host/render_widget_host_view_base_observer.h",
samans5846cb2c2017-01-31 03:09:471284 "renderer_host/render_widget_host_view_frame_subscriber.h",
brettwb167c7332016-09-07 22:52:461285 "renderer_host/render_widget_host_view_mac.h",
1286 "renderer_host/render_widget_host_view_mac.mm",
1287 "renderer_host/render_widget_host_view_mac_dictionary_helper.h",
1288 "renderer_host/render_widget_host_view_mac_dictionary_helper.mm",
1289 "renderer_host/render_widget_host_view_mac_editcommand_helper.h",
1290 "renderer_host/render_widget_host_view_mac_editcommand_helper.mm",
brettwb167c7332016-09-07 22:52:461291 "renderer_host/sandbox_ipc_linux.cc",
1292 "renderer_host/sandbox_ipc_linux.h",
1293 "renderer_host/text_input_client_mac.h",
1294 "renderer_host/text_input_client_mac.mm",
1295 "renderer_host/text_input_client_message_filter.h",
1296 "renderer_host/text_input_client_message_filter.mm",
1297 "renderer_host/text_input_manager.cc",
1298 "renderer_host/text_input_manager.h",
1299 "renderer_host/ui_events_helper.cc",
1300 "renderer_host/ui_events_helper.h",
1301 "renderer_host/webmenurunner_mac.h",
1302 "renderer_host/webmenurunner_mac.mm",
1303 "resolve_proxy_msg_helper.cc",
1304 "resolve_proxy_msg_helper.h",
1305 "resource_context_impl.cc",
1306 "resource_context_impl.h",
leon.han552e9de2017-02-09 14:37:301307 "screen_orientation/screen_orientation_provider.cc",
1308 "screen_orientation/screen_orientation_provider.h",
Ken Rockotc7a279c2017-05-04 23:51:451309 "service_manager/common_browser_interfaces.cc",
1310 "service_manager/common_browser_interfaces.h",
benff461632016-10-06 14:27:331311 "service_manager/merge_dictionary.cc",
1312 "service_manager/merge_dictionary.h",
1313 "service_manager/service_manager_context.cc",
1314 "service_manager/service_manager_context.h",
brettwb167c7332016-09-07 22:52:461315 "service_worker/embedded_worker_instance.cc",
1316 "service_worker/embedded_worker_instance.h",
1317 "service_worker/embedded_worker_registry.cc",
1318 "service_worker/embedded_worker_registry.h",
1319 "service_worker/embedded_worker_status.h",
1320 "service_worker/foreign_fetch_request_handler.cc",
1321 "service_worker/foreign_fetch_request_handler.h",
1322 "service_worker/link_header_support.cc",
1323 "service_worker/link_header_support.h",
1324 "service_worker/service_worker_blob_reader.cc",
1325 "service_worker/service_worker_blob_reader.h",
1326 "service_worker/service_worker_cache_writer.cc",
1327 "service_worker/service_worker_cache_writer.h",
1328 "service_worker/service_worker_client_utils.cc",
1329 "service_worker/service_worker_client_utils.h",
1330 "service_worker/service_worker_context_core.cc",
1331 "service_worker/service_worker_context_core.h",
1332 "service_worker/service_worker_context_observer.h",
1333 "service_worker/service_worker_context_request_handler.cc",
1334 "service_worker/service_worker_context_request_handler.h",
1335 "service_worker/service_worker_context_watcher.cc",
1336 "service_worker/service_worker_context_watcher.h",
1337 "service_worker/service_worker_context_wrapper.cc",
1338 "service_worker/service_worker_context_wrapper.h",
1339 "service_worker/service_worker_controllee_request_handler.cc",
1340 "service_worker/service_worker_controllee_request_handler.h",
shimazu1ac68cf2017-04-20 06:03:461341 "service_worker/service_worker_data_pipe_reader.cc",
1342 "service_worker/service_worker_data_pipe_reader.h",
brettwb167c7332016-09-07 22:52:461343 "service_worker/service_worker_database.cc",
1344 "service_worker/service_worker_database.h",
1345 "service_worker/service_worker_database_task_manager.cc",
1346 "service_worker/service_worker_database_task_manager.h",
1347 "service_worker/service_worker_disk_cache.cc",
1348 "service_worker/service_worker_disk_cache.h",
1349 "service_worker/service_worker_dispatcher_host.cc",
1350 "service_worker/service_worker_dispatcher_host.h",
1351 "service_worker/service_worker_fetch_dispatcher.cc",
1352 "service_worker/service_worker_fetch_dispatcher.h",
1353 "service_worker/service_worker_handle.cc",
1354 "service_worker/service_worker_handle.h",
1355 "service_worker/service_worker_info.cc",
1356 "service_worker/service_worker_info.h",
1357 "service_worker/service_worker_internals_ui.cc",
1358 "service_worker/service_worker_internals_ui.h",
1359 "service_worker/service_worker_job_coordinator.cc",
1360 "service_worker/service_worker_job_coordinator.h",
falkenf93cb21f2017-03-17 03:05:301361 "service_worker/service_worker_lifetime_tracker.cc",
1362 "service_worker/service_worker_lifetime_tracker.h",
brettwb167c7332016-09-07 22:52:461363 "service_worker/service_worker_metrics.cc",
1364 "service_worker/service_worker_metrics.h",
clamydf7927e2016-09-22 13:03:141365 "service_worker/service_worker_navigation_handle.cc",
1366 "service_worker/service_worker_navigation_handle.h",
1367 "service_worker/service_worker_navigation_handle_core.cc",
1368 "service_worker/service_worker_navigation_handle_core.h",
brettwb167c7332016-09-07 22:52:461369 "service_worker/service_worker_process_manager.cc",
1370 "service_worker/service_worker_process_manager.h",
1371 "service_worker/service_worker_provider_host.cc",
1372 "service_worker/service_worker_provider_host.h",
1373 "service_worker/service_worker_quota_client.cc",
1374 "service_worker/service_worker_quota_client.h",
1375 "service_worker/service_worker_read_from_cache_job.cc",
1376 "service_worker/service_worker_read_from_cache_job.h",
1377 "service_worker/service_worker_register_job.cc",
1378 "service_worker/service_worker_register_job.h",
1379 "service_worker/service_worker_register_job_base.h",
1380 "service_worker/service_worker_registration.cc",
1381 "service_worker/service_worker_registration.h",
1382 "service_worker/service_worker_registration_handle.cc",
1383 "service_worker/service_worker_registration_handle.h",
1384 "service_worker/service_worker_registration_status.cc",
1385 "service_worker/service_worker_registration_status.h",
1386 "service_worker/service_worker_request_handler.cc",
1387 "service_worker/service_worker_request_handler.h",
1388 "service_worker/service_worker_response_info.cc",
1389 "service_worker/service_worker_response_info.h",
1390 "service_worker/service_worker_script_cache_map.cc",
1391 "service_worker/service_worker_script_cache_map.h",
1392 "service_worker/service_worker_storage.cc",
1393 "service_worker/service_worker_storage.h",
brettwb167c7332016-09-07 22:52:461394 "service_worker/service_worker_unregister_job.cc",
1395 "service_worker/service_worker_unregister_job.h",
scottmg30fc2c92017-05-18 08:42:021396 "service_worker/service_worker_url_job_wrapper.cc",
1397 "service_worker/service_worker_url_job_wrapper.h",
brettwb167c7332016-09-07 22:52:461398 "service_worker/service_worker_url_request_job.cc",
1399 "service_worker/service_worker_url_request_job.h",
1400 "service_worker/service_worker_version.cc",
1401 "service_worker/service_worker_version.h",
1402 "service_worker/service_worker_write_to_cache_job.cc",
1403 "service_worker/service_worker_write_to_cache_job.h",
1404 "shared_worker/shared_worker_host.cc",
1405 "shared_worker/shared_worker_host.h",
1406 "shared_worker/shared_worker_instance.cc",
1407 "shared_worker/shared_worker_instance.h",
1408 "shared_worker/shared_worker_message_filter.cc",
1409 "shared_worker/shared_worker_message_filter.h",
1410 "shared_worker/shared_worker_service_impl.cc",
1411 "shared_worker/shared_worker_service_impl.h",
1412 "shared_worker/worker_document_set.cc",
1413 "shared_worker/worker_document_set.h",
1414 "shared_worker/worker_storage_partition.cc",
1415 "shared_worker/worker_storage_partition.h",
1416 "site_instance_impl.cc",
1417 "site_instance_impl.h",
brettwb167c7332016-09-07 22:52:461418 "speech/speech_recognition_dispatcher_host.cc",
1419 "speech/speech_recognition_dispatcher_host.h",
brettwb167c7332016-09-07 22:52:461420 "speech/speech_recognition_manager_impl.cc",
1421 "speech/speech_recognition_manager_impl.h",
1422 "speech/speech_recognizer.h",
brettwb167c7332016-09-07 22:52:461423 "speech/speech_recognizer_impl_android.cc",
1424 "speech/speech_recognizer_impl_android.h",
1425 "ssl/ssl_client_auth_handler.cc",
1426 "ssl/ssl_client_auth_handler.h",
1427 "ssl/ssl_error_handler.cc",
1428 "ssl/ssl_error_handler.h",
1429 "ssl/ssl_manager.cc",
1430 "ssl/ssl_manager.h",
brettwb167c7332016-09-07 22:52:461431 "startup_task_runner.cc",
1432 "startup_task_runner.h",
1433 "storage_partition_impl.cc",
1434 "storage_partition_impl.h",
1435 "storage_partition_impl_map.cc",
1436 "storage_partition_impl_map.h",
1437 "streams/stream.cc",
1438 "streams/stream.h",
1439 "streams/stream_context.cc",
1440 "streams/stream_context.h",
1441 "streams/stream_handle_impl.cc",
1442 "streams/stream_handle_impl.h",
1443 "streams/stream_read_observer.h",
1444 "streams/stream_register_observer.h",
1445 "streams/stream_registry.cc",
1446 "streams/stream_registry.h",
1447 "streams/stream_url_request_job.cc",
1448 "streams/stream_url_request_job.h",
1449 "streams/stream_write_observer.h",
1450 "theme_helper_mac.h",
1451 "theme_helper_mac.mm",
ssideb549622017-03-29 21:46:001452 "tracing/background_memory_tracing_observer.cc",
1453 "tracing/background_memory_tracing_observer.h",
brettwb167c7332016-09-07 22:52:461454 "tracing/background_tracing_config_impl.cc",
1455 "tracing/background_tracing_config_impl.h",
1456 "tracing/background_tracing_manager_impl.cc",
1457 "tracing/background_tracing_manager_impl.h",
1458 "tracing/background_tracing_rule.cc",
1459 "tracing/background_tracing_rule.h",
1460 "tracing/etw_tracing_agent_win.cc",
1461 "tracing/etw_tracing_agent_win.h",
1462 "tracing/file_tracing_provider_impl.cc",
1463 "tracing/file_tracing_provider_impl.h",
1464 "tracing/trace_message_filter.cc",
1465 "tracing/trace_message_filter.h",
1466 "tracing/tracing_controller_impl.cc",
1467 "tracing/tracing_controller_impl.h",
1468 "tracing/tracing_controller_impl_data_sinks.cc",
1469 "tracing/tracing_ui.cc",
1470 "tracing/tracing_ui.h",
jamc1905862017-05-16 14:45:301471 "url_loader_factory_getter.cc",
1472 "url_loader_factory_getter.h",
brettwb167c7332016-09-07 22:52:461473 "utility_process_host_impl.cc",
1474 "utility_process_host_impl.h",
blundelle75a8f92017-03-27 08:11:171475 "wake_lock/wake_lock_context_host.cc",
1476 "wake_lock/wake_lock_context_host.h",
brettwb167c7332016-09-07 22:52:461477 "web_contents/aura/gesture_nav_simple.cc",
1478 "web_contents/aura/gesture_nav_simple.h",
1479 "web_contents/aura/overscroll_navigation_overlay.cc",
1480 "web_contents/aura/overscroll_navigation_overlay.h",
1481 "web_contents/aura/overscroll_window_animation.cc",
1482 "web_contents/aura/overscroll_window_animation.h",
1483 "web_contents/aura/overscroll_window_delegate.cc",
1484 "web_contents/aura/overscroll_window_delegate.h",
1485 "web_contents/aura/shadow_layer_delegate.cc",
1486 "web_contents/aura/shadow_layer_delegate.h",
mfomitchev09f0d64a2017-03-02 19:40:071487 "web_contents/aura/uma_navigation_type.h",
brettwb167c7332016-09-07 22:52:461488 "web_contents/web_contents_impl.cc",
1489 "web_contents/web_contents_impl.h",
1490 "web_contents/web_contents_view.h",
1491 "web_contents/web_contents_view_aura.cc",
1492 "web_contents/web_contents_view_aura.h",
1493 "web_contents/web_contents_view_child_frame.cc",
1494 "web_contents/web_contents_view_child_frame.h",
1495 "web_contents/web_contents_view_guest.cc",
1496 "web_contents/web_contents_view_guest.h",
1497 "web_contents/web_contents_view_mac.h",
1498 "web_contents/web_contents_view_mac.mm",
1499 "web_contents/web_drag_dest_mac.h",
1500 "web_contents/web_drag_dest_mac.mm",
1501 "web_contents/web_drag_source_mac.h",
1502 "web_contents/web_drag_source_mac.mm",
1503 "web_contents/web_drag_utils_win.cc",
1504 "web_contents/web_drag_utils_win.h",
yhirano4a593832016-10-24 18:58:221505 "websockets/websocket_handshake_request_info_impl.cc",
1506 "websockets/websocket_handshake_request_info_impl.h",
brettwb167c7332016-09-07 22:52:461507 "websockets/websocket_impl.cc",
1508 "websockets/websocket_impl.h",
1509 "websockets/websocket_manager.cc",
1510 "websockets/websocket_manager.h",
1511 "webui/content_web_ui_controller_factory.cc",
1512 "webui/content_web_ui_controller_factory.h",
1513 "webui/generic_handler.cc",
1514 "webui/generic_handler.h",
dschuyler613a1032016-12-15 19:22:351515 "webui/i18n_source_stream.cc",
1516 "webui/i18n_source_stream.h",
jam4374b952017-05-10 21:16:411517 "webui/network_error_url_loader.cc",
1518 "webui/network_error_url_loader.h",
brettwb167c7332016-09-07 22:52:461519 "webui/shared_resources_data_source.cc",
1520 "webui/shared_resources_data_source.h",
1521 "webui/url_data_manager.cc",
1522 "webui/url_data_manager.h",
1523 "webui/url_data_manager_backend.cc",
1524 "webui/url_data_manager_backend.h",
1525 "webui/url_data_source_impl.cc",
1526 "webui/url_data_source_impl.h",
1527 "webui/web_ui_controller_factory_registry.cc",
1528 "webui/web_ui_controller_factory_registry.h",
1529 "webui/web_ui_data_source_impl.cc",
1530 "webui/web_ui_data_source_impl.h",
1531 "webui/web_ui_impl.cc",
1532 "webui/web_ui_impl.h",
1533 "webui/web_ui_message_handler.cc",
jam8c4edd02017-05-06 18:50:331534 "webui/web_ui_url_loader_factory.cc",
1535 "webui/web_ui_url_loader_factory.h",
brettwb167c7332016-09-07 22:52:461536 "zygote_host/zygote_communication_linux.cc",
1537 "zygote_host/zygote_communication_linux.h",
1538 "zygote_host/zygote_handle_linux.cc",
1539 "zygote_host/zygote_host_impl_linux.cc",
1540 "zygote_host/zygote_host_impl_linux.h",
1541 ]
[email protected]743530f2014-06-12 19:38:501542
[email protected]4db51ec2014-05-29 21:08:321543 if (toolkit_views) {
1544 deps += [ "//ui/events" ]
1545 }
1546
bcwhite98900b02016-09-19 20:13:031547 # ChromeOS also defines linux but their memory-monitors conflict.
1548 if (is_chromeos) {
1549 sources += [
1550 "memory/memory_monitor_chromeos.cc",
1551 "memory/memory_monitor_chromeos.h",
1552 ]
1553 } else {
1554 sources += [
1555 "memory/memory_monitor_linux.cc",
1556 "memory/memory_monitor_linux.h",
1557 ]
1558 }
1559
dgozman9d8f8182015-10-12 23:38:561560 if (!is_win) {
morritad95714f2014-10-01 02:37:241561 sources += [
morritad95714f2014-10-01 02:37:241562 "file_descriptor_info_impl.cc",
1563 "file_descriptor_info_impl.h",
1564 ]
[email protected]4db51ec2014-05-29 21:08:321565 }
1566
vitalybuka93eea402014-11-05 23:47:151567 if (enable_basic_printing || enable_print_preview) {
[email protected]743530f2014-06-12 19:38:501568 deps += [ "//printing" ]
[email protected]4db51ec2014-05-29 21:08:321569 }
1570
jamb3c1195df2016-03-21 20:41:291571 if (!is_mac) {
[email protected]743530f2014-06-12 19:38:501572 deps += [ "//sandbox" ]
1573 }
jamb3c1195df2016-03-21 20:41:291574 if (!is_android) {
mohsenc8b9ca7e2017-02-14 05:39:411575 deps += [
1576 "//content/browser/tracing:resources",
1577 "//ui/vector_icons",
1578 ]
[email protected]743530f2014-06-12 19:38:501579 }
charlieab9973242016-02-02 16:22:161580 if ((use_udev && is_posix) || is_mac || is_win) {
1581 deps += [ "//tools/battor_agent:battor_agent_lib" ]
1582 sources += [
1583 "tracing/power_tracing_agent.cc",
1584 "tracing/power_tracing_agent.h",
1585 ]
1586 }
shunhsingou70929842017-05-01 10:42:051587 if (is_chromeos) {
1588 sources += [
1589 "tracing/arc_tracing_agent.cc",
1590 "tracing/arc_tracing_agent.h",
1591 ]
1592 }
[email protected]743530f2014-06-12 19:38:501593
1594 if (enable_webrtc) {
brettwb167c7332016-09-07 22:52:461595 sources += [
1596 "renderer_host/media/peer_connection_tracker_host.cc",
1597 "renderer_host/media/peer_connection_tracker_host.h",
1598 "renderer_host/p2p/socket_dispatcher_host.cc",
1599 "renderer_host/p2p/socket_dispatcher_host.h",
1600 "renderer_host/p2p/socket_host.cc",
1601 "renderer_host/p2p/socket_host.h",
1602 "renderer_host/p2p/socket_host_tcp.cc",
1603 "renderer_host/p2p/socket_host_tcp.h",
1604 "renderer_host/p2p/socket_host_tcp_server.cc",
1605 "renderer_host/p2p/socket_host_tcp_server.h",
1606 "renderer_host/p2p/socket_host_throttler.cc",
1607 "renderer_host/p2p/socket_host_throttler.h",
1608 "renderer_host/p2p/socket_host_udp.cc",
1609 "renderer_host/p2p/socket_host_udp.h",
1610 "webrtc/webrtc_eventlog_host.cc",
1611 "webrtc/webrtc_eventlog_host.h",
1612 "webrtc/webrtc_internals.cc",
1613 "webrtc/webrtc_internals.h",
1614 "webrtc/webrtc_internals_message_handler.cc",
1615 "webrtc/webrtc_internals_message_handler.h",
1616 "webrtc/webrtc_internals_ui.cc",
1617 "webrtc/webrtc_internals_ui.h",
1618 "webrtc/webrtc_internals_ui_observer.h",
1619 ]
1620
brettwf94a6cd2016-01-28 23:57:291621 deps += [
1622 "//jingle:jingle_glue",
mbjorgecbac8082016-04-21 01:14:231623 "//third_party/webrtc/base:rtc_base",
magjed828787a2016-12-06 16:05:001624 "//third_party/webrtc/media:rtc_media_base",
mbjorgecbac8082016-04-21 01:14:231625 "//third_party/webrtc/modules/desktop_capture:primitives",
kjellandere3cbd6d2017-02-28 06:49:461626 "//third_party/webrtc_overrides:init_webrtc",
brettwf94a6cd2016-01-28 23:57:291627 ]
[email protected]743530f2014-06-12 19:38:501628 }
1629
chfremer954d0ac2017-05-04 18:13:571630 if (enable_mojo_video_capture) {
1631 sources += [
1632 "renderer_host/media/service_launched_video_capture_device.cc",
1633 "renderer_host/media/service_launched_video_capture_device.h",
1634 "renderer_host/media/service_video_capture_device_launcher.cc",
1635 "renderer_host/media/service_video_capture_device_launcher.h",
1636 "renderer_host/media/service_video_capture_provider.cc",
1637 "renderer_host/media/service_video_capture_provider.h",
1638 ]
1639
1640 deps += [
1641 "//services/video_capture/public/cpp",
1642 "//services/video_capture/public/interfaces:constants",
1643 ]
1644 }
1645
byungchulc164a2542017-01-11 18:18:261646 # Desktop screen capture implementations, conditionally built depending on
1647 # the available implementations for each platform.
miu32fb8992017-01-04 01:38:531648 if (is_linux || is_mac || is_win) {
1649 defines += [ "ENABLE_SCREEN_CAPTURE=1" ]
1650 sources += [
braveyao2f9c86302017-01-06 18:06:281651 "media/capture/cursor_renderer.cc",
miu32fb8992017-01-04 01:38:531652 "media/capture/cursor_renderer.h",
1653 "media/capture/web_contents_video_capture_device.cc",
1654 "media/capture/web_contents_video_capture_device.h",
1655 "media/capture/window_activity_tracker.cc",
1656 "media/capture/window_activity_tracker.h",
1657 ]
1658 if (use_aura) {
1659 sources += [
1660 "media/capture/aura_window_capture_machine.cc",
1661 "media/capture/aura_window_capture_machine.h",
1662 "media/capture/cursor_renderer_aura.cc",
1663 "media/capture/cursor_renderer_aura.h",
1664 "media/capture/desktop_capture_device_aura.cc",
1665 "media/capture/desktop_capture_device_aura.h",
1666 "media/capture/window_activity_tracker_aura.cc",
1667 "media/capture/window_activity_tracker_aura.h",
1668 ]
1669 }
1670 if (is_mac) {
1671 sources += [
1672 "media/capture/cursor_renderer_mac.h",
1673 "media/capture/cursor_renderer_mac.mm",
1674 "media/capture/window_activity_tracker_mac.h",
1675 "media/capture/window_activity_tracker_mac.mm",
1676 ]
1677 }
byungchulc164a2542017-01-11 18:18:261678 if (enable_webrtc) {
1679 sources += [
1680 "media/capture/desktop_capture_device.cc",
1681 "media/capture/desktop_capture_device.h",
1682 ]
1683 deps += [ "//third_party/webrtc/modules/desktop_capture" ]
1684 }
miu32fb8992017-01-04 01:38:531685 }
1686
[email protected]743530f2014-06-12 19:38:501687 if (is_win) {
[email protected]743530f2014-06-12 19:38:501688 defines += [
1689 # This prevents the inclusion of atlhost.h which paired
1690 # with the windows 8 sdk it does the wrong thing.
1691 "__ATLHOST_H__",
1692 ]
1693 deps += [
[email protected]bf94f9d2014-06-17 20:33:531694 "//third_party/iaccessible2",
1695 "//third_party/isimpledom",
sugoi842efc692017-03-14 18:10:391696 "//third_party/swiftshader",
[email protected]743530f2014-06-12 19:38:501697 ]
1698 libs += [
1699 "comctl32.lib",
1700 "dinput8.lib",
1701 "dwmapi.lib",
1702 "dxguid.lib",
jam6ce80492016-03-22 22:00:211703 "imm32.lib",
brettw44a5cf82015-04-08 19:48:221704 "oleacc.lib",
[email protected]743530f2014-06-12 19:38:501705 "portabledeviceguids.lib",
1706 ]
[email protected]743530f2014-06-12 19:38:501707 }
1708
[email protected]743530f2014-06-12 19:38:501709 if (use_udev) {
mcasas9d2063682016-02-11 22:12:391710 deps += [
1711 "//device/udev_linux",
mcasasf261a502016-02-26 23:40:331712 "//media/capture",
[email protected]743530f2014-06-12 19:38:501713 ]
1714 }
1715
1716 if (enable_plugins) {
brettwb167c7332016-09-07 22:52:461717 sources += [
1718 "../public/browser/plugin_service.h",
1719 "media/session/pepper_playback_observer.cc",
1720 "media/session/pepper_playback_observer.h",
1721 "media/session/pepper_player_delegate.cc",
1722 "media/session/pepper_player_delegate.h",
1723 "pepper_flash_settings_helper_impl.cc",
1724 "pepper_flash_settings_helper_impl.h",
1725 "plugin_content_origin_whitelist.cc",
1726 "plugin_content_origin_whitelist.h",
1727 "plugin_data_remover_impl.cc",
1728 "plugin_data_remover_impl.h",
1729 "plugin_private_storage_helper.cc",
1730 "plugin_private_storage_helper.h",
1731 "plugin_service_impl.cc",
1732 "plugin_service_impl.h",
1733 "ppapi_plugin_process_host.cc",
1734 "ppapi_plugin_process_host.h",
1735 "renderer_host/pepper/browser_ppapi_host_impl.cc",
1736 "renderer_host/pepper/browser_ppapi_host_impl.h",
1737 "renderer_host/pepper/content_browser_pepper_host_factory.cc",
1738 "renderer_host/pepper/content_browser_pepper_host_factory.h",
1739 "renderer_host/pepper/pepper_browser_font_singleton_host.cc",
1740 "renderer_host/pepper/pepper_browser_font_singleton_host.h",
1741 "renderer_host/pepper/pepper_external_file_ref_backend.cc",
1742 "renderer_host/pepper/pepper_external_file_ref_backend.h",
1743 "renderer_host/pepper/pepper_file_io_host.cc",
1744 "renderer_host/pepper/pepper_file_io_host.h",
1745 "renderer_host/pepper/pepper_file_ref_host.cc",
1746 "renderer_host/pepper/pepper_file_ref_host.h",
1747 "renderer_host/pepper/pepper_file_system_browser_host.cc",
1748 "renderer_host/pepper/pepper_file_system_browser_host.h",
1749 "renderer_host/pepper/pepper_flash_file_message_filter.cc",
1750 "renderer_host/pepper/pepper_flash_file_message_filter.h",
1751 "renderer_host/pepper/pepper_gamepad_host.cc",
1752 "renderer_host/pepper/pepper_gamepad_host.h",
1753 "renderer_host/pepper/pepper_host_resolver_message_filter.cc",
1754 "renderer_host/pepper/pepper_host_resolver_message_filter.h",
1755 "renderer_host/pepper/pepper_internal_file_ref_backend.cc",
1756 "renderer_host/pepper/pepper_internal_file_ref_backend.h",
1757 "renderer_host/pepper/pepper_lookup_request.h",
1758 "renderer_host/pepper/pepper_message_filter.cc",
1759 "renderer_host/pepper/pepper_message_filter.h",
1760 "renderer_host/pepper/pepper_network_monitor_host.cc",
1761 "renderer_host/pepper/pepper_network_monitor_host.h",
1762 "renderer_host/pepper/pepper_network_proxy_host.cc",
1763 "renderer_host/pepper/pepper_network_proxy_host.h",
1764 "renderer_host/pepper/pepper_print_settings_manager.cc",
1765 "renderer_host/pepper/pepper_print_settings_manager.h",
1766 "renderer_host/pepper/pepper_printing_host.cc",
1767 "renderer_host/pepper/pepper_printing_host.h",
1768 "renderer_host/pepper/pepper_renderer_connection.cc",
1769 "renderer_host/pepper/pepper_renderer_connection.h",
1770 "renderer_host/pepper/pepper_security_helper.cc",
1771 "renderer_host/pepper/pepper_security_helper.h",
1772 "renderer_host/pepper/pepper_socket_utils.cc",
1773 "renderer_host/pepper/pepper_socket_utils.h",
1774 "renderer_host/pepper/pepper_tcp_server_socket_message_filter.cc",
1775 "renderer_host/pepper/pepper_tcp_server_socket_message_filter.h",
1776 "renderer_host/pepper/pepper_tcp_socket_message_filter.cc",
1777 "renderer_host/pepper/pepper_tcp_socket_message_filter.h",
1778 "renderer_host/pepper/pepper_truetype_font.h",
1779 "renderer_host/pepper/pepper_truetype_font_android.cc",
1780 "renderer_host/pepper/pepper_truetype_font_host.cc",
1781 "renderer_host/pepper/pepper_truetype_font_host.h",
1782 "renderer_host/pepper/pepper_truetype_font_linux.cc",
1783 "renderer_host/pepper/pepper_truetype_font_list.h",
1784 "renderer_host/pepper/pepper_truetype_font_list_android.cc",
1785 "renderer_host/pepper/pepper_truetype_font_list_host.cc",
1786 "renderer_host/pepper/pepper_truetype_font_list_host.h",
1787 "renderer_host/pepper/pepper_truetype_font_list_mac.mm",
1788 "renderer_host/pepper/pepper_truetype_font_list_ozone.cc",
1789 "renderer_host/pepper/pepper_truetype_font_list_pango.cc",
1790 "renderer_host/pepper/pepper_truetype_font_list_win.cc",
1791 "renderer_host/pepper/pepper_truetype_font_mac.mm",
1792 "renderer_host/pepper/pepper_truetype_font_win.cc",
1793 "renderer_host/pepper/pepper_udp_socket_message_filter.cc",
1794 "renderer_host/pepper/pepper_udp_socket_message_filter.h",
1795 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.cc",
1796 "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.h",
1797 "renderer_host/pepper/quota_reservation.cc",
1798 "renderer_host/pepper/quota_reservation.h",
1799 "renderer_host/pepper/ssl_context_helper.cc",
1800 "renderer_host/pepper/ssl_context_helper.h",
1801 ]
[email protected]743530f2014-06-12 19:38:501802 deps += [
tmoniuszko6cddaa92015-06-10 07:51:341803 "//ppapi/host",
scottmg3cab0ba2017-01-25 18:34:161804 "//ppapi/proxy:common",
brettwf7eb6ca2015-02-14 01:37:311805 "//ppapi/proxy:ipc",
1806 "//ppapi/shared_impl",
[email protected]743530f2014-06-12 19:38:501807 ]
1808 if (!use_ozone || use_pango) {
1809 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ]
1810 }
[email protected]c528d872014-06-27 03:17:161811 if (!use_pango) {
1812 sources -= [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ]
1813 }
[email protected]743530f2014-06-12 19:38:501814 }
1815
shreeram.k792fba032015-07-20 11:43:371816 if (use_atk) {
brettwb167c7332016-09-07 22:52:461817 sources += [
1818 "accessibility/accessibility_tree_formatter_auralinux.cc",
1819 "accessibility/browser_accessibility_auralinux.cc",
1820 "accessibility/browser_accessibility_auralinux.h",
1821 "accessibility/browser_accessibility_manager_auralinux.cc",
1822 "accessibility/browser_accessibility_manager_auralinux.h",
1823 ]
shreeram.k792fba032015-07-20 11:43:371824
mostynb902b5282016-08-17 23:01:001825 configs += [ "//build/config/linux/atk" ]
mostynbebc6e122016-07-28 08:53:411826
1827 if (use_gconf) {
1828 configs += [ "//build/config/linux/gconf" ]
1829 }
1830
1831 if (use_glib) {
1832 configs += [ "//build/config/linux:glib" ]
1833 }
shreeram.k792fba032015-07-20 11:43:371834 }
1835
[email protected]743530f2014-06-12 19:38:501836 if (is_linux && use_aura) {
slan17e5ce7f2015-09-25 00:04:451837 deps += [ "//build/linux:fontconfig" ]
[email protected]743530f2014-06-12 19:38:501838 }
1839
1840 if (use_x11) {
1841 configs += [ "//build/config/linux:x11" ]
jamesr4359db72015-01-21 12:40:001842 deps += [ "//ui/gfx/x" ]
cmasonedb5203e2014-09-11 18:18:381843 }
1844
capnd85baf02017-04-12 01:17:111845 if (is_linux && !is_chromeos && use_x11 &&
1846 (target_cpu == "x86" || target_cpu == "x64")) {
1847 deps += [ "//third_party/swiftshader" ]
1848 }
1849
[email protected]743530f2014-06-12 19:38:501850 if (use_pango) {
agrieve95ba4442016-04-25 15:47:131851 configs += [ "//build/config/linux/pangocairo" ]
[email protected]743530f2014-06-12 19:38:501852 }
1853
1854 if (is_android) {
brettwb167c7332016-09-07 22:52:461855 sources += [
1856 "accessibility/accessibility_tree_formatter_android.cc",
1857 "accessibility/browser_accessibility_android.cc",
1858 "accessibility/browser_accessibility_android.h",
1859 "accessibility/browser_accessibility_manager_android.cc",
1860 "accessibility/browser_accessibility_manager_android.h",
1861 "android/composited_touch_handle_drawable.cc",
1862 "android/composited_touch_handle_drawable.h",
1863 "android/content_view_core_impl.cc",
1864 "android/content_view_core_impl.h",
1865 "android/content_view_core_impl_observer.h",
1866 "android/content_view_render_view.cc",
1867 "android/content_view_render_view.h",
1868 "android/content_view_statics.cc",
1869 "android/content_view_statics.h",
1870 "android/date_time_chooser_android.cc",
1871 "android/date_time_chooser_android.h",
1872 "android/gesture_event_type.h",
jinsukkim48f82db72017-04-05 04:10:261873 "android/ime_adapter_android.cc",
1874 "android/ime_adapter_android.h",
brettwb167c7332016-09-07 22:52:461875 "android/interstitial_page_delegate_android.cc",
1876 "android/interstitial_page_delegate_android.h",
1877 "android/java/gin_java_bound_object.cc",
1878 "android/java/gin_java_bound_object.h",
1879 "android/java/gin_java_bound_object_delegate.cc",
1880 "android/java/gin_java_bound_object_delegate.h",
1881 "android/java/gin_java_bridge_dispatcher_host.cc",
1882 "android/java/gin_java_bridge_dispatcher_host.h",
1883 "android/java/gin_java_bridge_message_filter.cc",
1884 "android/java/gin_java_bridge_message_filter.h",
1885 "android/java/gin_java_method_invocation_helper.cc",
1886 "android/java/gin_java_method_invocation_helper.h",
1887 "android/java/gin_java_script_to_java_types_coercion.cc",
1888 "android/java/gin_java_script_to_java_types_coercion.h",
1889 "android/java/java_bridge_thread.cc",
1890 "android/java/java_bridge_thread.h",
1891 "android/java/java_method.cc",
1892 "android/java/java_method.h",
1893 "android/java/java_type.cc",
1894 "android/java/java_type.h",
1895 "android/java/jni_helper.cc",
1896 "android/java/jni_helper.h",
1897 "android/load_url_params.cc",
1898 "android/load_url_params.h",
blundellf5316fc2017-05-15 11:49:031899 "android/nfc_host.cc",
1900 "android/nfc_host.h",
brettwb167c7332016-09-07 22:52:461901 "android/overscroll_controller_android.cc",
1902 "android/overscroll_controller_android.h",
jinsukkim7e377432017-04-18 08:52:521903 "android/render_widget_host_connector.cc",
1904 "android/render_widget_host_connector.h",
jinsukkim3fbb94e2017-04-25 11:42:401905 "android/selection_popup_controller.cc",
1906 "android/selection_popup_controller.h",
timav051c2fc2017-05-10 18:08:031907 "android/smart_selection_client.cc",
1908 "android/smart_selection_client.h",
boliu22557972016-10-25 16:08:291909 "android/synchronous_compositor_browser_filter.cc",
1910 "android/synchronous_compositor_browser_filter.h",
brettwb167c7332016-09-07 22:52:461911 "android/synchronous_compositor_host.cc",
1912 "android/synchronous_compositor_host.h",
brettwb167c7332016-09-07 22:52:461913 "android/tracing_controller_android.cc",
1914 "android/tracing_controller_android.h",
1915 "android/web_contents_observer_proxy.cc",
1916 "android/web_contents_observer_proxy.h",
rob.buis300b0872017-03-10 20:43:581917 "frame_host/render_frame_host_android.cc",
1918 "frame_host/render_frame_host_android.h",
brettwb167c7332016-09-07 22:52:461919 "media/capture/screen_capture_device_android.cc",
1920 "media/capture/screen_capture_device_android.h",
1921 "renderer_host/compositor_impl_android.cc",
1922 "renderer_host/compositor_impl_android.h",
brettwb167c7332016-09-07 22:52:461923 "renderer_host/input/synthetic_gesture_target_android.cc",
1924 "renderer_host/input/synthetic_gesture_target_android.h",
1925 "renderer_host/native_web_keyboard_event_android.cc",
1926 "renderer_host/render_widget_host_view_android.cc",
1927 "renderer_host/render_widget_host_view_android.h",
1928 "screen_orientation/screen_orientation_delegate_android.cc",
1929 "screen_orientation/screen_orientation_delegate_android.h",
brettwb167c7332016-09-07 22:52:461930 "web_contents/web_contents_android.cc",
1931 "web_contents/web_contents_android.h",
1932 "web_contents/web_contents_view_android.cc",
1933 "web_contents/web_contents_view_android.h",
1934 ]
bashi4159f36e2017-05-01 01:18:511935
1936 set_sources_assignment_filter([])
1937 sources += [
1938 "memory/swap_metrics_observer_linux.cc",
1939 "memory/swap_metrics_observer_linux.h",
1940 ]
1941 set_sources_assignment_filter(sources_assignment_filter)
1942
[email protected]743530f2014-06-12 19:38:501943 sources -= [
[email protected]743530f2014-06-12 19:38:501944 "browser_ipc_logging.cc",
zqzhanga2147f82016-10-18 22:53:261945 "media/session/audio_focus_delegate_default.cc",
zqzhangd36b5ce2016-09-30 17:29:341946 "media/session/audio_focus_manager.cc",
1947 "media/session/audio_focus_manager.h",
[email protected]743530f2014-06-12 19:38:501948 "tracing/tracing_ui.cc",
1949 "tracing/tracing_ui.h",
brettw24746e52016-12-07 04:26:171950 ]
brettw24746e52016-12-07 04:26:171951 deps += [
1952 "//content/public/android:jni",
1953 "//media",
1954 "//media/capture/content/android",
1955 "//media/capture/video/android",
brettw24746e52016-12-07 04:26:171956 "//ui/android",
1957 ]
miu32fb8992017-01-04 01:38:531958 defines += [
1959 "APPCACHE_USE_SIMPLE_CACHE",
1960 "ENABLE_SCREEN_CAPTURE=1",
1961 ]
brettw24746e52016-12-07 04:26:171962 libs += [ "jnigraphics" ]
1963 } else {
1964 # Not Android.
1965 sources += [
chenwilliame88d8362017-03-21 02:34:301966 # Devtools frontend not included in Android
1967 "devtools/devtools_frontend_host_impl.cc",
1968 "devtools/devtools_frontend_host_impl.h",
1969
brettw24746e52016-12-07 04:26:171970 # Most speech code is non-Android.
[email protected]743530f2014-06-12 19:38:501971 "speech/audio_buffer.cc",
1972 "speech/audio_buffer.h",
1973 "speech/audio_encoder.cc",
1974 "speech/audio_encoder.h",
1975 "speech/chunked_byte_buffer.cc",
1976 "speech/chunked_byte_buffer.h",
1977 "speech/endpointer/endpointer.cc",
1978 "speech/endpointer/endpointer.h",
1979 "speech/endpointer/energy_endpointer.cc",
1980 "speech/endpointer/energy_endpointer.h",
1981 "speech/endpointer/energy_endpointer_params.cc",
1982 "speech/endpointer/energy_endpointer_params.h",
[email protected]743530f2014-06-12 19:38:501983 "speech/speech_recognition_engine.cc",
1984 "speech/speech_recognition_engine.h",
1985 "speech/speech_recognizer_impl.cc",
1986 "speech/speech_recognizer_impl.h",
1987 ]
brettw24746e52016-12-07 04:26:171988 deps += [ "//third_party/flac" ]
[email protected]743530f2014-06-12 19:38:501989 }
1990
1991 if (is_mac) {
jiangj2bd42fd2015-04-18 13:29:061992 deps += [
rsesek02aa51c2016-05-11 02:13:571993 "//media",
jiangj2bd42fd2015-04-18 13:29:061994 "//sandbox/mac:sandbox",
1995 "//third_party/mozilla",
jiangj2bd42fd2015-04-18 13:29:061996 "//ui/accelerated_widget_mac",
1997 ]
rsesek02aa51c2016-05-11 02:13:571998 libs += [
1999 "Carbon.framework",
2000 "QuartzCore.framework",
2001 "IOSurface.framework",
2002 ]
[email protected]743530f2014-06-12 19:38:502003 }
2004
2005 if (is_chromeos) {
mukai2dc70ed32014-10-29 01:01:432006 deps += [
2007 "//chromeos",
2008 "//chromeos:power_manager_proto",
2009 ]
[email protected]743530f2014-06-12 19:38:502010 }
2011
2012 if (use_aura) {
2013 deps += [
ben6b0453d12016-07-02 04:27:192014 "//services/ui/public/cpp",
2015 "//services/ui/public/interfaces",
[email protected]743530f2014-06-12 19:38:502016 "//ui/aura",
mohsen166a9182015-02-09 18:19:092017 "//ui/aura_extra",
[email protected]743530f2014-06-12 19:38:502018 "//ui/strings",
James Robinson060f2e32014-09-10 22:31:372019 "//ui/wm",
[email protected]743530f2014-06-12 19:38:502020 ]
rjkroegec109de612015-11-19 01:40:472021 sources += [
sky52a39e342016-12-17 17:23:222022 "renderer_host/delegated_frame_host_client_aura.cc",
2023 "renderer_host/delegated_frame_host_client_aura.h",
jonross2843ae362016-10-21 16:48:232024 "renderer_host/render_widget_host_view_event_handler.cc",
2025 "renderer_host/render_widget_host_view_event_handler.h",
rjkroegec109de612015-11-19 01:40:472026 ]
[email protected]743530f2014-06-12 19:38:502027 } else { # Not aura.
2028 sources -= [
[email protected]c528d872014-06-27 03:17:162029 "renderer_host/input/synthetic_gesture_target_aura.cc",
2030 "renderer_host/input/synthetic_gesture_target_aura.h",
mohsenb0eeba72015-08-09 06:20:082031 "renderer_host/input/touch_selection_controller_client_aura.cc",
2032 "renderer_host/input/touch_selection_controller_client_aura.h",
[email protected]c528d872014-06-27 03:17:162033 "renderer_host/native_web_keyboard_event_aura.cc",
[email protected]743530f2014-06-12 19:38:502034 "renderer_host/render_widget_host_view_aura.cc",
2035 "renderer_host/render_widget_host_view_aura.h",
[email protected]743530f2014-06-12 19:38:502036 "renderer_host/ui_events_helper.cc",
2037 "renderer_host/ui_events_helper.h",
[email protected]c528d872014-06-27 03:17:162038 "web_contents/aura/gesture_nav_simple.cc",
2039 "web_contents/aura/gesture_nav_simple.h",
[email protected]c528d872014-06-27 03:17:162040 "web_contents/aura/overscroll_navigation_overlay.cc",
2041 "web_contents/aura/overscroll_navigation_overlay.h",
nsatragnoc0b2fa52015-04-09 22:30:512042 "web_contents/aura/overscroll_window_animation.cc",
2043 "web_contents/aura/overscroll_window_animation.h",
2044 "web_contents/aura/overscroll_window_delegate.cc",
2045 "web_contents/aura/overscroll_window_delegate.h",
[email protected]c528d872014-06-27 03:17:162046 "web_contents/aura/shadow_layer_delegate.cc",
2047 "web_contents/aura/shadow_layer_delegate.h",
[email protected]c528d872014-06-27 03:17:162048 "web_contents/web_contents_view_aura.cc",
2049 "web_contents/web_contents_view_aura.h",
[email protected]743530f2014-06-12 19:38:502050 ]
2051 }
2052
2053 if (use_aura || is_mac) {
brettwb167c7332016-09-07 22:52:462054 sources += [
2055 "compositor/browser_compositor_output_surface.cc",
2056 "compositor/browser_compositor_output_surface.h",
2057 "compositor/gpu_browser_compositor_output_surface.cc",
2058 "compositor/gpu_browser_compositor_output_surface.h",
2059 "compositor/gpu_output_surface_mac.h",
2060 "compositor/gpu_output_surface_mac.mm",
2061 "compositor/gpu_process_transport_factory.cc",
2062 "compositor/gpu_process_transport_factory.h",
2063 "compositor/gpu_surfaceless_browser_compositor_output_surface.cc",
2064 "compositor/gpu_surfaceless_browser_compositor_output_surface.h",
stanisc49501732017-02-22 22:51:562065 "compositor/gpu_vsync_begin_frame_source.cc",
2066 "compositor/gpu_vsync_begin_frame_source.h",
brettwb167c7332016-09-07 22:52:462067 "compositor/image_transport_factory.cc",
2068 "compositor/image_transport_factory.h",
2069 "compositor/offscreen_browser_compositor_output_surface.cc",
2070 "compositor/offscreen_browser_compositor_output_surface.h",
2071 "compositor/owned_mailbox.cc",
2072 "compositor/owned_mailbox.h",
2073 "compositor/reflector_impl.cc",
2074 "compositor/reflector_impl.h",
2075 "compositor/reflector_texture.cc",
2076 "compositor/reflector_texture.h",
2077 "compositor/software_browser_compositor_output_surface.cc",
2078 "compositor/software_browser_compositor_output_surface.h",
2079 "compositor/software_output_device_mac.h",
2080 "compositor/software_output_device_mac.mm",
2081 "compositor/software_output_device_ozone.cc",
2082 "compositor/software_output_device_ozone.h",
2083 "compositor/software_output_device_win.cc",
2084 "compositor/software_output_device_win.h",
2085 "compositor/software_output_device_x11.cc",
2086 "compositor/software_output_device_x11.h",
2087 "context_factory.cc",
2088 "renderer_host/browser_compositor_view_mac.h",
2089 "renderer_host/browser_compositor_view_mac.mm",
danakjea89dd542017-03-29 23:30:472090 "renderer_host/compositor_resize_lock.cc",
2091 "renderer_host/compositor_resize_lock.h",
brettwb167c7332016-09-07 22:52:462092 "renderer_host/delegated_frame_host.cc",
2093 "renderer_host/delegated_frame_host.h",
brettwb167c7332016-09-07 22:52:462094 ]
sohan.jyoti86c41c72016-04-26 15:33:202095 if (enable_vulkan) {
2096 sources += [
2097 "compositor/vulkan_browser_compositor_output_surface.cc",
2098 "compositor/vulkan_browser_compositor_output_surface.h",
2099 ]
2100 }
[email protected]886323c2014-06-14 20:34:162101 if (!use_x11) {
2102 sources -= [
2103 "compositor/software_output_device_x11.cc",
2104 "compositor/software_output_device_x11.h",
2105 ]
2106 }
[email protected]743530f2014-06-12 19:38:502107
[email protected]b1867c92014-08-13 00:22:042108 if (!use_ozone) {
2109 sources -= [
[email protected]b1867c92014-08-13 00:22:042110 "compositor/software_output_device_ozone.cc",
2111 "compositor/software_output_device_ozone.h",
2112 ]
2113 }
samans72b2a282016-12-17 02:44:152114 deps += [
2115 "//cc/surfaces:surfaces",
2116 "//ui/compositor",
2117 ]
[email protected]604b1272014-07-24 11:27:532118 }
2119
cmasonedb5203e2014-09-11 18:18:382120 if (is_linux && use_dbus) {
ppi2438a3e2014-10-28 21:55:102121 deps += [ "//dbus" ]
[email protected]743530f2014-06-12 19:38:502122 }
cjhopman2fd48fd2014-09-24 00:52:562123
davidbenee55ed442015-10-02 17:06:112124 if (is_linux) {
davidbenb983d4b2015-01-07 16:39:442125 deps += [ "//third_party/boringssl" ]
2126 }
xhwange6117332015-01-28 08:51:162127
xhwangbe720032016-02-19 18:45:312128 if (enable_mojo_media) {
2129 configs += [ "//media/mojo/services:mojo_media_config" ]
xhwangfb22df12015-10-13 23:13:462130 }
2131
jbroman79c079be2016-04-20 00:17:272132 if (use_ozone) {
2133 deps += [ "//ui/ozone" ]
2134 }
pimana333e3d2016-04-27 02:37:252135
ochangdd89a1e2016-06-08 16:39:012136 if (enable_ipc_fuzzer) {
2137 configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ]
2138 }
kojii30add38f2016-07-14 02:10:322139
2140 if (use_minikin_hyphenation) {
2141 sources += [
2142 "hyphenation/hyphenation_impl.cc",
2143 "hyphenation/hyphenation_impl.h",
2144 ]
kojii30add38f2016-07-14 02:10:322145 }
[email protected]4db51ec2014-05-29 21:08:322146}
ben66696d12016-03-08 17:48:002147
brettwb78fc9e2016-03-25 21:02:512148# See comment at the top of //content/BUILD.gn for how this works.
2149group("for_content_tests") {
2150 visibility = [ "//content/test/*" ]
2151 if (!is_component_build) {
2152 public_deps = [
2153 ":browser",
2154 ]
jam447407fb2016-05-06 17:57:402155 } else {
2156 public_deps = [
2157 "//third_party/leveldatabase",
2158 ]
brettwb78fc9e2016-03-25 21:02:512159 }
2160}