[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 1 | # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
Tim Brown | 07e062e8 | 2017-06-26 19:38:03 | [diff] [blame] | 5 | import("//build/buildflag_header.gni") |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 6 | import("//build/config/features.gni") |
Daniel Bratell | 5de17f6 | 2017-11-14 22:09:02 | [diff] [blame] | 7 | import("//build/config/jumbo.gni") |
Nico Weber | 8e55956 | 2017-10-03 01:25:26 | [diff] [blame] | 8 | import("//build/config/linux/pangocairo/pangocairo.gni") |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 9 | import("//build/config/ui.gni") |
qyearsley | db0a3487 | 2017-03-14 03:24:31 | [diff] [blame] | 10 | import("//gpu/vulkan/features.gni") |
cjhopman | 2fd48fd | 2014-09-24 00:52:56 | [diff] [blame] | 11 | import("//media/media_options.gni") |
Julia Tuttle | f9602834 | 2018-01-29 23:28:52 | [diff] [blame] | 12 | import("//net/features.gni") |
Scott Violet | 02e38b9 | 2018-03-27 23:42:14 | [diff] [blame] | 13 | import("//ppapi/buildflags/buildflags.gni") |
Scott Violet | 318a55f | 2018-03-30 19:08:19 | [diff] [blame] | 14 | import("//printing/buildflags/buildflags.gni") |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 15 | import("//third_party/blink/public/public_features.gni") |
ochang | dd89a1e | 2016-06-08 16:39:01 | [diff] [blame] | 16 | import("//tools/ipc_fuzzer/ipc_fuzzer.gni") |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 17 | |
Daniel Bratell | 5de17f6 | 2017-11-14 22:09:02 | [diff] [blame] | 18 | jumbo_source_set("browser") { |
Brett Wilson | 8f132304 | 2014-09-11 16:58:56 | [diff] [blame] | 19 | # Only the public target should depend on this. All other targets (even |
| 20 | # internal content ones) should depend on the public one. |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 21 | visibility = [ |
| 22 | ":for_content_tests", # See top of //content/BUILD.gn for why. |
jam | ce6dd211 | 2017-02-15 19:31:42 | [diff] [blame] | 23 | "//content/app:*", |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 24 | "//content/public/browser:browser_sources", |
| 25 | ] |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 26 | |
ben | 3f5f999 | 2015-11-19 10:38:30 | [diff] [blame] | 27 | configs += [ |
| 28 | "//build/config:precompiled_headers", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 29 | "//content:content_implementation", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 30 | "//v8:external_startup_data", |
ben | 3f5f999 | 2015-11-19 10:38:30 | [diff] [blame] | 31 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 32 | defines = [] |
| 33 | libs = [] |
| 34 | ldflags = [] |
[email protected] | 9786502 | 2014-06-13 23:18:04 | [diff] [blame] | 35 | |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 36 | deps = [ |
| 37 | "//base", |
[email protected] | 22fe91d | 2014-08-12 17:07:12 | [diff] [blame] | 38 | "//base:base_static", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 39 | "//base/third_party/dynamic_annotations", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 40 | "//cc", |
loyso | 3dd2089 | 2016-11-22 07:11:01 | [diff] [blame] | 41 | "//cc/animation", |
danakj | 7b631be | 2018-05-25 19:14:20 | [diff] [blame] | 42 | "//cc/mojo_embedder", |
enne | 34f6084c | 2017-02-02 22:39:08 | [diff] [blame] | 43 | "//cc/paint", |
Kouhei Ueno | 5fb546a | 2018-02-05 08:54:50 | [diff] [blame] | 44 | "//components/cbor", |
penghuang | d81c1a6 | 2016-11-02 20:06:06 | [diff] [blame] | 45 | "//components/discardable_memory/common", |
| 46 | "//components/discardable_memory/service", |
Min Qin | 826f29b | 2018-05-26 06:36:19 | [diff] [blame] | 47 | "//components/download/database", |
Min Qin | 0ca8e1ee | 2018-01-31 00:49:35 | [diff] [blame] | 48 | "//components/download/public/common:public", |
Min Qin | d103f115 | 2018-02-28 14:20:39 | [diff] [blame] | 49 | "//components/download/quarantine", |
Yafei Duan | 69ddcfd9 | 2018-02-02 00:03:42 | [diff] [blame] | 50 | "//components/filename_generation", |
mek | 9b28f42 | 2016-05-13 21:46:23 | [diff] [blame] | 51 | "//components/link_header_util", |
dalecurtis | 4a9839a | 2017-05-04 23:40:47 | [diff] [blame] | 52 | "//components/metrics", |
xunjieli | a592544 | 2017-05-08 20:01:44 | [diff] [blame] | 53 | "//components/metrics:single_sample_metrics", |
mmenke | 68a5021 | 2017-06-12 20:20:31 | [diff] [blame] | 54 | "//components/network_session_configurator/browser", |
Scott Violet | 9ae8289 | 2018-03-01 18:38:12 | [diff] [blame] | 55 | "//components/offline_pages/buildflags", |
Jian Li | e160326 | 2017-07-08 00:15:00 | [diff] [blame] | 56 | "//components/offline_pages/core/request_header", |
nzolghadr | d87a308d | 2016-12-07 15:45:56 | [diff] [blame] | 57 | "//components/rappor", |
Colin Blundell | 932b4374 | 2018-03-13 14:51:25 | [diff] [blame] | 58 | "//components/services/filesystem:lib", |
Colin Blundell | f14baf0 | 2018-03-13 09:24:00 | [diff] [blame] | 59 | "//components/services/leveldb:lib", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 60 | "//components/tracing", |
| 61 | "//components/tracing:startup_tracing", |
rsleevi | 24f64dc2 | 2015-08-07 21:39:21 | [diff] [blame] | 62 | "//components/url_formatter", |
altimin | 56bb594b | 2016-11-09 19:45:17 | [diff] [blame] | 63 | "//components/variations", |
Saman Sami | d9e17850 | 2017-09-28 04:54:00 | [diff] [blame] | 64 | "//components/viz/client", |
danakj | 8d87b63 | 2017-06-27 20:34:35 | [diff] [blame] | 65 | "//components/viz/common", |
kylechar | cb5882d | 2017-06-05 13:41:34 | [diff] [blame] | 66 | "//components/viz/host", |
Fady Samuel | 279f5f0 | 2017-06-14 23:23:00 | [diff] [blame] | 67 | "//components/viz/service", |
[email protected] | d28b3cb8 | 2014-05-31 04:46:18 | [diff] [blame] | 68 | "//content:resources", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 69 | "//content/app/resources", |
| 70 | "//content/app/strings", |
John Mellor | e8df348 | 2017-09-06 19:00:58 | [diff] [blame] | 71 | "//content/browser/background_fetch:background_fetch_proto", |
jkarlin | 34ee23cf | 2015-03-26 13:58:50 | [diff] [blame] | 72 | "//content/browser/background_sync:background_sync_proto", |
jsbell | 279efb4 | 2015-03-31 17:02:46 | [diff] [blame] | 73 | "//content/browser/cache_storage:cache_storage_proto", |
Victor Costan | 7184272a | 2018-05-15 13:17:43 | [diff] [blame] | 74 | "//content/browser/cookie_store:cookie_store_proto", |
alexclarke | 79a55e4 | 2017-05-11 11:38:20 | [diff] [blame] | 75 | "//content/browser/devtools:devtools_resources", |
dgozman | dc4d4172 | 2016-11-15 22:40:56 | [diff] [blame] | 76 | "//content/browser/devtools:protocol_sources", |
mek | e722a7c | 2016-12-29 19:05:03 | [diff] [blame] | 77 | "//content/browser/dom_storage:local_storage_proto", |
peter | 05cb4db | 2015-03-13 14:33:38 | [diff] [blame] | 78 | "//content/browser/notifications:notification_proto", |
jinho.bang | 5c1f7a293 | 2016-11-18 05:29:14 | [diff] [blame] | 79 | "//content/browser/payments:payment_app_proto", |
Nasko Oskov | 3e19fbd | 2018-06-13 00:13:29 | [diff] [blame] | 80 | "//content/browser/process_internals:mojo_bindings", |
jkarlin | d678ae4b | 2015-01-27 15:04:53 | [diff] [blame] | 81 | "//content/browser/service_worker:service_worker_proto", |
[email protected] | b506cdf | 2014-06-09 17:13:21 | [diff] [blame] | 82 | "//content/browser/speech/proto", |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 83 | "//content/common", |
Scott Violet | c78fef73 | 2018-03-06 17:42:53 | [diff] [blame] | 84 | "//content/common:buildflags", |
chiniforooshan | 614d70a | 2017-03-17 01:19:33 | [diff] [blame] | 85 | "//content/common:mojo_bindings", |
Brett Wilson | 8f132304 | 2014-09-11 16:58:56 | [diff] [blame] | 86 | "//content/public/common:common_sources", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 87 | "//crypto", |
Jun Choi | f45741d | 2018-06-08 20:58:31 | [diff] [blame] | 88 | "//device/base", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 89 | "//device/bluetooth", |
jdoerrie | 3e74774 | 2018-02-05 16:04:16 | [diff] [blame] | 90 | "//device/fido", |
bajones | b9bb4c4 | 2016-07-07 00:10:51 | [diff] [blame] | 91 | "//device/gamepad", |
Reilly Grant | fa93b14 | 2018-02-01 02:13:48 | [diff] [blame] | 92 | "//device/vr/public/mojom", |
[email protected] | 44a5a36 | 2014-05-30 20:01:51 | [diff] [blame] | 93 | "//google_apis", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 94 | "//gpu", |
| 95 | "//gpu/command_buffer/client:gles2_implementation", |
jbroman | 84ba684 | 2016-04-28 00:34:50 | [diff] [blame] | 96 | "//gpu/command_buffer/client:gles2_interface", |
Victor Miura | 3a4ad4f8 | 2017-12-13 06:03:45 | [diff] [blame] | 97 | "//gpu/command_buffer/client:raster_interface", |
Sadrul Habib Chowdhury | 7102df0b | 2018-05-30 03:04:17 | [diff] [blame] | 98 | "//gpu/ipc:gl_in_process_context", |
sadrul | 6a76942 | 2016-12-08 04:54:32 | [diff] [blame] | 99 | "//gpu/ipc/host", |
Scott Violet | a35f9a4 | 2018-03-22 22:00:44 | [diff] [blame] | 100 | "//gpu/vulkan:buildflags", |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 101 | "//jingle:jingle_glue", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 102 | "//media", |
Scott Violet | a35f9a4 | 2018-03-22 22:00:44 | [diff] [blame] | 103 | "//media:media_buildflags", |
mcasas | e40d752 | 2016-06-21 16:11:40 | [diff] [blame] | 104 | "//media/capture", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 105 | "//media/midi", |
sammc | 64324c3a | 2017-01-05 00:40:15 | [diff] [blame] | 106 | "//media/midi:mojo", |
Scott Violet | a35f9a4 | 2018-03-22 22:00:44 | [diff] [blame] | 107 | "//media/mojo:buildflags", |
Miguel Casas | d9f6e09 | 2017-11-21 22:43:31 | [diff] [blame] | 108 | "//media/mojo/clients:jpeg_decode_accelerator", |
ben | dd157e1a | 2016-07-22 03:15:57 | [diff] [blame] | 109 | "//media/mojo/interfaces", |
Xiaohan Wang | 3fcfc15 | 2017-07-06 00:51:55 | [diff] [blame] | 110 | "//media/mojo/interfaces:constants", |
maxmorin | 2781f5ff | 2017-04-04 08:29:41 | [diff] [blame] | 111 | "//media/mojo/services", |
Ken Rockot | 8a7f35f | 2018-07-04 19:40:56 | [diff] [blame] | 112 | "//mojo/core/embedder", |
rockot | 85dce086 | 2015-11-13 01:33:59 | [diff] [blame] | 113 | "//mojo/public/cpp/bindings", |
Ken Rockot | 756098194 | 2018-05-25 16:13:07 | [diff] [blame] | 114 | "//mojo/public/cpp/platform", |
| 115 | "//mojo/public/cpp/system", |
Yuzhu Shen | 2efe4277 | 2017-11-11 02:01:09 | [diff] [blame] | 116 | "//mojo/public/js:resources", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 117 | "//net", |
rohitrao | 1860223c | 2015-05-16 01:07:14 | [diff] [blame] | 118 | "//net:extras", |
Helen Li | c51db4c | 2018-06-14 22:05:04 | [diff] [blame] | 119 | "//net/server:http_server", |
Scott Violet | 02e38b9 | 2018-03-27 23:42:14 | [diff] [blame] | 120 | "//ppapi/buildflags", |
Scott Violet | 318a55f | 2018-03-30 19:08:19 | [diff] [blame] | 121 | "//printing/buildflags", |
Olga Sharonova | a234a0a | 2018-02-16 11:12:23 | [diff] [blame] | 122 | "//services/audio:lib", |
| 123 | "//services/audio/public/cpp", |
Max Morin | a3e13eb | 2018-05-02 09:26:05 | [diff] [blame] | 124 | "//services/audio/public/mojom", |
jcivelli | dad0cef | 2017-02-16 18:38:59 | [diff] [blame] | 125 | "//services/catalog:constants", |
| 126 | "//services/catalog/public/cpp", |
Ken Rockot | 881e082 | 2018-02-10 04:18:08 | [diff] [blame] | 127 | "//services/catalog/public/mojom:constants", |
Ken Rockot | 84f58fd | 2018-06-22 21:54:14 | [diff] [blame] | 128 | "//services/content:impl", |
| 129 | "//services/content/public/mojom", |
gogerald | d8c5af34 | 2017-06-14 02:22:36 | [diff] [blame] | 130 | "//services/data_decoder/public/cpp", |
Ken Rockot | 19db638 | 2018-02-10 01:41:02 | [diff] [blame] | 131 | "//services/data_decoder/public/mojom", |
blundell | 372d47d28 | 2016-11-01 01:34:30 | [diff] [blame] | 132 | "//services/device:lib", |
Yuzhu Shen | 2802973 | 2017-07-14 21:20:37 | [diff] [blame] | 133 | "//services/device/public/cpp:device_features", |
Ke He | f417339 | 2018-06-29 07:44:15 | [diff] [blame] | 134 | "//services/device/public/cpp/geolocation", |
Ke He | 31d0bb0 | 2018-02-24 07:16:24 | [diff] [blame] | 135 | "//services/device/public/mojom", |
| 136 | "//services/device/public/mojom:generic_sensor", |
ben | 768c8dc | 2016-08-12 00:26:50 | [diff] [blame] | 137 | "//services/file:lib", |
Ken Rockot | 21142de | 2018-02-10 01:45:30 | [diff] [blame] | 138 | "//services/file/public/mojom", |
Steven Holte | 1fe496e | 2017-12-09 01:49:05 | [diff] [blame] | 139 | "//services/metrics", |
Mounir Lamouri | fd9dcefa | 2017-07-06 10:26:55 | [diff] [blame] | 140 | "//services/metrics/public/cpp:metrics_cpp", |
John Abd-El-Malek | 3bbbdf9 | 2018-01-30 03:27:35 | [diff] [blame] | 141 | "//services/network:network_service", |
Marijn Kruisselbrink | 9c36621a | 2017-08-12 03:36:22 | [diff] [blame] | 142 | "//services/network/public/cpp", |
Ken Rockot | 54311e6 | 2018-02-10 19:01:52 | [diff] [blame] | 143 | "//services/network/public/mojom", |
chiniforooshan | 6e4c507 | 2017-03-17 07:56:56 | [diff] [blame] | 144 | "//services/resource_coordinator:lib", |
oysteine | 8c8d3b70 | 2017-05-18 15:18:17 | [diff] [blame] | 145 | "//services/resource_coordinator/public/cpp:resource_coordinator_cpp", |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 146 | "//services/service_manager", |
Jay Civelli | 668c097f | 2018-05-16 20:44:13 | [diff] [blame] | 147 | "//services/service_manager/embedder:embedder_result_codes", |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 148 | "//services/service_manager/public/cpp", |
Ken Rockot | 543f5e3 | 2018-02-04 02:13:50 | [diff] [blame] | 149 | "//services/service_manager/public/mojom", |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 150 | "//services/service_manager/runner/common", |
| 151 | "//services/service_manager/runner/host:lib", |
Jay Civelli | 668c097f | 2018-05-16 20:44:13 | [diff] [blame] | 152 | "//services/service_manager/zygote:zygote_buildflags", |
xianglu | 6dd8f46 | 2017-01-25 04:30:41 | [diff] [blame] | 153 | "//services/shape_detection:lib", |
Ken Rockot | d7e999b | 2018-02-11 15:48:21 | [diff] [blame] | 154 | "//services/shape_detection/public/mojom", |
Oystein Eftevaag | 6410f1a | 2018-03-01 18:06:30 | [diff] [blame] | 155 | "//services/tracing:lib", |
| 156 | "//services/tracing/public/cpp", |
sadrul | 85cc5d8 | 2016-12-20 03:37:41 | [diff] [blame] | 157 | "//services/ui/public/cpp/gpu", |
Christian Fremerey | 542c8817 | 2018-01-29 19:54:01 | [diff] [blame] | 158 | "//services/video_capture:lib", |
chfremer | 70b40e512 | 2017-05-23 15:13:57 | [diff] [blame] | 159 | "//services/video_capture/public/cpp", |
Christian Fremerey | 5e7d1e51 | 2018-02-14 22:13:19 | [diff] [blame] | 160 | "//services/video_capture/public/mojom:constants", |
Christian Fremerey | b43741a | 2017-07-06 00:46:46 | [diff] [blame] | 161 | "//services/video_capture/public/uma", |
Sadrul Habib Chowdhury | 55fc2f0 | 2017-10-27 02:40:06 | [diff] [blame] | 162 | "//services/viz/privileged/interfaces", |
danakj | ab9ef4d | 2017-10-31 23:38:33 | [diff] [blame] | 163 | "//services/viz/public/interfaces", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 164 | "//skia", |
| 165 | "//sql", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 166 | "//storage/browser", |
| 167 | "//storage/common", |
jbroman | 79c079be | 2016-04-20 00:17:27 | [diff] [blame] | 168 | "//third_party/angle:angle_common", |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 169 | "//third_party/blink/public:blink_headers", |
| 170 | "//third_party/blink/public:buildflags", |
| 171 | "//third_party/blink/public:core_mojo_bindings", |
| 172 | "//third_party/blink/public:mojo_bindings", |
| 173 | "//third_party/blink/public:resources", |
| 174 | "//third_party/blink/public:scaled_resources", |
| 175 | "//third_party/blink/public/common", |
Adam Langley | bef849c | 2017-12-20 21:26:13 | [diff] [blame] | 176 | "//third_party/boringssl", |
alexclarke | 79a55e4 | 2017-05-11 11:38:20 | [diff] [blame] | 177 | "//third_party/brotli:dec", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 178 | "//third_party/icu", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 179 | "//third_party/libyuv", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 180 | "//third_party/re2", |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 181 | "//third_party/webrtc/media:rtc_media_base", |
| 182 | "//third_party/webrtc/modules/desktop_capture:primitives", |
| 183 | "//third_party/webrtc/rtc_base:rtc_base", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 184 | "//third_party/zlib", |
Thiago Farina | d8a8a07 | 2017-05-19 18:41:48 | [diff] [blame] | 185 | "//third_party/zlib/google:compression_utils", |
| 186 | "//third_party/zlib/google:zip", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 187 | "//ui/accessibility", |
Dominic Mazzoni | dcef1b73 | 2018-01-26 17:57:04 | [diff] [blame] | 188 | "//ui/accessibility:ax_enums_mojo", |
[email protected] | 52140d88 | 2014-05-30 19:22:40 | [diff] [blame] | 189 | "//ui/base", |
Scott Violet | 2eb9229 | 2017-11-06 22:53:10 | [diff] [blame] | 190 | "//ui/base:ui_features", |
spang | 1c36fac | 2015-02-05 19:55:12 | [diff] [blame] | 191 | "//ui/base/ime", |
robliao | 8d63729c | 2016-03-29 17:49:47 | [diff] [blame] | 192 | "//ui/display", |
dcastagna | 0a50f64 | 2016-08-10 20:12:22 | [diff] [blame] | 193 | "//ui/display/types", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 194 | "//ui/events", |
| 195 | "//ui/events:gesture_detection", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 196 | "//ui/events/blink", |
alexis.menard | b12ba34 | 2017-04-15 09:01:19 | [diff] [blame] | 197 | "//ui/events/devices", |
Sahel Sharify | a29ee211 | 2017-12-15 23:22:54 | [diff] [blame] | 198 | "//ui/events/gestures/blink", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 199 | "//ui/gfx", |
chrishtr | bdbe318 | 2017-03-15 15:15:43 | [diff] [blame] | 200 | "//ui/gfx/animation", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 201 | "//ui/gfx/geometry", |
ben | 7a77e85 | 2016-05-26 05:50:44 | [diff] [blame] | 202 | "//ui/gfx/geometry/mojo", |
Brett Wilson | e748794 | 2014-09-09 23:37:29 | [diff] [blame] | 203 | "//ui/gl", |
sugoi | 842efc69 | 2017-03-14 18:10:39 | [diff] [blame] | 204 | "//ui/gl:gl_features", |
mfomitchev | 598a769 | 2017-04-11 00:30:31 | [diff] [blame] | 205 | "//ui/latency", |
Brett Wilson | e748794 | 2014-09-09 23:37:29 | [diff] [blame] | 206 | "//ui/native_theme", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 207 | "//ui/resources", |
brettw | c15ed73 | 2016-03-21 23:14:29 | [diff] [blame] | 208 | "//ui/shell_dialogs", |
[email protected] | d28b3cb8 | 2014-05-31 04:46:18 | [diff] [blame] | 209 | "//ui/snapshot", |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 210 | "//ui/touch_selection", |
scottmg | 1b07532 | 2017-01-16 17:22:10 | [diff] [blame] | 211 | "//v8:v8_version", |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 212 | ] |
| 213 | |
jam | 447407fb | 2016-05-06 17:57:40 | [diff] [blame] | 214 | public_deps = [ |
Scott Violet | c78fef73 | 2018-03-06 17:42:53 | [diff] [blame] | 215 | ":accessibility_buildflags", |
rockot | 38e46dd | 2017-03-24 16:55:13 | [diff] [blame] | 216 | "//ipc", |
miu | 54dca6c | 2016-11-17 10:59:38 | [diff] [blame] | 217 | "//media/mojo/interfaces:remoting", |
kylechar | c576df7 | 2018-05-02 18:57:35 | [diff] [blame] | 218 | "//third_party/blink/public:embedded_frame_sink_mojo_bindings", |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 219 | "//third_party/blink/public:media_devices_mojo_bindings", |
jam | 447407fb | 2016-05-06 17:57:40 | [diff] [blame] | 220 | "//third_party/leveldatabase", |
| 221 | ] |
| 222 | |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 223 | sources = [ |
Andrey Lushnikov | 370cbea6 | 2017-08-12 04:51:54 | [diff] [blame] | 224 | "$target_gen_dir/devtools/protocol/browser.cc", |
| 225 | "$target_gen_dir/devtools/protocol/browser.h", |
dgozman | b4f43e4 | 2016-12-13 06:12:40 | [diff] [blame] | 226 | "$target_gen_dir/devtools/protocol/dom.cc", |
| 227 | "$target_gen_dir/devtools/protocol/dom.h", |
| 228 | "$target_gen_dir/devtools/protocol/emulation.cc", |
| 229 | "$target_gen_dir/devtools/protocol/emulation.h", |
dgozman | dc4d4172 | 2016-11-15 22:40:56 | [diff] [blame] | 230 | "$target_gen_dir/devtools/protocol/forward.h", |
dgozman | 111fdd03 | 2016-12-18 00:49:26 | [diff] [blame] | 231 | "$target_gen_dir/devtools/protocol/input.cc", |
| 232 | "$target_gen_dir/devtools/protocol/input.h", |
dgozman | b4f43e4 | 2016-12-13 06:12:40 | [diff] [blame] | 233 | "$target_gen_dir/devtools/protocol/inspector.cc", |
| 234 | "$target_gen_dir/devtools/protocol/inspector.h", |
dgozman | dc4d4172 | 2016-11-15 22:40:56 | [diff] [blame] | 235 | "$target_gen_dir/devtools/protocol/io.cc", |
| 236 | "$target_gen_dir/devtools/protocol/io.h", |
dgozman | abbad67b | 2016-11-22 02:37:02 | [diff] [blame] | 237 | "$target_gen_dir/devtools/protocol/memory.cc", |
| 238 | "$target_gen_dir/devtools/protocol/memory.h", |
dgozman | b4f43e4 | 2016-12-13 06:12:40 | [diff] [blame] | 239 | "$target_gen_dir/devtools/protocol/network.cc", |
| 240 | "$target_gen_dir/devtools/protocol/network.h", |
| 241 | "$target_gen_dir/devtools/protocol/page.cc", |
| 242 | "$target_gen_dir/devtools/protocol/page.h", |
dgozman | dc4d4172 | 2016-11-15 22:40:56 | [diff] [blame] | 243 | "$target_gen_dir/devtools/protocol/protocol.cc", |
| 244 | "$target_gen_dir/devtools/protocol/protocol.h", |
horo | 6f9e15e | 2017-01-27 03:07:40 | [diff] [blame] | 245 | "$target_gen_dir/devtools/protocol/runtime.cc", |
| 246 | "$target_gen_dir/devtools/protocol/runtime.h", |
dgozman | b4f43e4 | 2016-12-13 06:12:40 | [diff] [blame] | 247 | "$target_gen_dir/devtools/protocol/schema.cc", |
| 248 | "$target_gen_dir/devtools/protocol/schema.h", |
dgozman | 581dd5b7 | 2016-12-14 01:15:13 | [diff] [blame] | 249 | "$target_gen_dir/devtools/protocol/security.cc", |
| 250 | "$target_gen_dir/devtools/protocol/security.h", |
dgozman | b31e773 | 2016-12-16 04:08:39 | [diff] [blame] | 251 | "$target_gen_dir/devtools/protocol/service_worker.cc", |
| 252 | "$target_gen_dir/devtools/protocol/service_worker.h", |
dgozman | d5a5b2c | 2016-12-14 20:37:24 | [diff] [blame] | 253 | "$target_gen_dir/devtools/protocol/storage.cc", |
| 254 | "$target_gen_dir/devtools/protocol/storage.h", |
dgozman | abbad67b | 2016-11-22 02:37:02 | [diff] [blame] | 255 | "$target_gen_dir/devtools/protocol/system_info.cc", |
| 256 | "$target_gen_dir/devtools/protocol/system_info.h", |
dgozman | b35728c5 | 2016-12-16 05:31:43 | [diff] [blame] | 257 | "$target_gen_dir/devtools/protocol/target.cc", |
| 258 | "$target_gen_dir/devtools/protocol/target.h", |
dgozman | abbad67b | 2016-11-22 02:37:02 | [diff] [blame] | 259 | "$target_gen_dir/devtools/protocol/tethering.cc", |
| 260 | "$target_gen_dir/devtools/protocol/tethering.h", |
dgozman | dc4d4172 | 2016-11-15 22:40:56 | [diff] [blame] | 261 | "$target_gen_dir/devtools/protocol/tracing.cc", |
| 262 | "$target_gen_dir/devtools/protocol/tracing.h", |
ben | d32292b | 2016-10-07 00:21:58 | [diff] [blame] | 263 | "../common/service_manager/child_connection.cc", |
| 264 | "../common/service_manager/child_connection.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 265 | "accessibility/accessibility_tree_formatter.cc", |
| 266 | "accessibility/accessibility_tree_formatter.h", |
| 267 | "accessibility/accessibility_tree_formatter_blink.cc", |
| 268 | "accessibility/accessibility_tree_formatter_blink.h", |
Aaron Leventhal | 39f5602 | 2017-09-29 20:42:36 | [diff] [blame] | 269 | "accessibility/accessibility_tree_formatter_browser.cc", |
| 270 | "accessibility/accessibility_tree_formatter_browser.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 271 | "accessibility/accessibility_tree_formatter_mac.mm", |
| 272 | "accessibility/accessibility_tree_formatter_stub.cc", |
| 273 | "accessibility/accessibility_tree_formatter_utils_win.cc", |
| 274 | "accessibility/accessibility_tree_formatter_utils_win.h", |
| 275 | "accessibility/accessibility_tree_formatter_win.cc", |
| 276 | "accessibility/accessibility_ui.cc", |
| 277 | "accessibility/accessibility_ui.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 278 | "accessibility/browser_accessibility.cc", |
| 279 | "accessibility/browser_accessibility.h", |
| 280 | "accessibility/browser_accessibility_cocoa.h", |
| 281 | "accessibility/browser_accessibility_cocoa.mm", |
dougt | 6b5b4cd | 2017-05-10 06:03:54 | [diff] [blame] | 282 | "accessibility/browser_accessibility_com_win.cc", |
| 283 | "accessibility/browser_accessibility_com_win.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 284 | "accessibility/browser_accessibility_mac.h", |
| 285 | "accessibility/browser_accessibility_mac.mm", |
| 286 | "accessibility/browser_accessibility_manager.cc", |
| 287 | "accessibility/browser_accessibility_manager.h", |
| 288 | "accessibility/browser_accessibility_manager_mac.h", |
| 289 | "accessibility/browser_accessibility_manager_mac.mm", |
| 290 | "accessibility/browser_accessibility_manager_win.cc", |
| 291 | "accessibility/browser_accessibility_manager_win.h", |
Doug Turner | f4f6706 | 2017-10-28 02:33:24 | [diff] [blame] | 292 | "accessibility/browser_accessibility_position.cc", |
| 293 | "accessibility/browser_accessibility_position.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 294 | "accessibility/browser_accessibility_state_impl.cc", |
| 295 | "accessibility/browser_accessibility_state_impl.h", |
| 296 | "accessibility/browser_accessibility_state_impl_mac.mm", |
| 297 | "accessibility/browser_accessibility_state_impl_win.cc", |
| 298 | "accessibility/browser_accessibility_win.cc", |
| 299 | "accessibility/browser_accessibility_win.h", |
| 300 | "accessibility/one_shot_accessibility_tree_search.cc", |
| 301 | "accessibility/one_shot_accessibility_tree_search.h", |
Jinsuk Kim | c6c1d15d | 2017-06-13 08:19:26 | [diff] [blame] | 302 | "accessibility/web_contents_accessibility.h", |
Gabriel Charette | c8cca99 | 2017-08-10 18:21:49 | [diff] [blame] | 303 | "after_startup_task_utils.cc", |
| 304 | "after_startup_task_utils.h", |
[email protected] | 6746292f | 2017-06-07 17:45:23 | [diff] [blame] | 305 | "android/android_overlay_provider_impl.cc", |
| 306 | "android/android_overlay_provider_impl.h", |
darin | 2d145fe | 2017-02-16 15:22:35 | [diff] [blame] | 307 | "android/app_web_message_port.cc", |
| 308 | "android/app_web_message_port.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 309 | "android/background_sync_network_observer_android.cc", |
| 310 | "android/background_sync_network_observer_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 311 | "android/browser_startup_controller.cc", |
| 312 | "android/browser_startup_controller.h", |
chongz | 8bdf2092 | 2017-03-16 20:44:04 | [diff] [blame] | 313 | "android/content_feature_list.cc", |
| 314 | "android/content_feature_list.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 315 | "android/content_protocol_handler_impl.cc", |
| 316 | "android/content_protocol_handler_impl.h", |
| 317 | "android/content_startup_flags.cc", |
| 318 | "android/content_startup_flags.h", |
| 319 | "android/content_video_view.cc", |
| 320 | "android/content_video_view.h", |
| 321 | "android/devtools_auth.cc", |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 322 | "android/dialog_overlay_impl.cc", |
| 323 | "android/dialog_overlay_impl.h", |
jcivelli | 27d06a6 | 2017-03-22 01:40:37 | [diff] [blame] | 324 | "android/gpu_process_callback.cc", |
sammc | f5f1b0f | 2016-09-20 23:05:11 | [diff] [blame] | 325 | "android/java_interfaces_impl.cc", |
| 326 | "android/java_interfaces_impl.h", |
boliu | 61687ec5 | 2017-03-29 20:09:34 | [diff] [blame] | 327 | "android/launcher_thread.cc", |
| 328 | "android/launcher_thread.h", |
tguilbert | f08485bf | 2016-09-21 04:11:41 | [diff] [blame] | 329 | "android/scoped_surface_request_manager.cc", |
| 330 | "android/scoped_surface_request_manager.h", |
rlanday | e4a6ec8 | 2017-07-26 01:03:20 | [diff] [blame] | 331 | "android/text_suggestion_host_android.cc", |
| 332 | "android/text_suggestion_host_android.h", |
| 333 | "android/text_suggestion_host_mojo_impl_android.cc", |
| 334 | "android/text_suggestion_host_mojo_impl_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 335 | "android/url_request_content_job.cc", |
| 336 | "android/url_request_content_job.h", |
| 337 | "appcache/appcache.cc", |
| 338 | "appcache/appcache.h", |
| 339 | "appcache/appcache_backend_impl.cc", |
| 340 | "appcache/appcache_backend_impl.h", |
| 341 | "appcache/appcache_database.cc", |
| 342 | "appcache/appcache_database.h", |
| 343 | "appcache/appcache_disk_cache.cc", |
| 344 | "appcache/appcache_disk_cache.h", |
| 345 | "appcache/appcache_dispatcher_host.cc", |
| 346 | "appcache/appcache_dispatcher_host.h", |
| 347 | "appcache/appcache_entry.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 348 | "appcache/appcache_frontend_proxy.cc", |
| 349 | "appcache/appcache_frontend_proxy.h", |
| 350 | "appcache/appcache_group.cc", |
| 351 | "appcache/appcache_group.h", |
| 352 | "appcache/appcache_histograms.cc", |
| 353 | "appcache/appcache_histograms.h", |
| 354 | "appcache/appcache_host.cc", |
| 355 | "appcache/appcache_host.h", |
| 356 | "appcache/appcache_interceptor.cc", |
| 357 | "appcache/appcache_interceptor.h", |
| 358 | "appcache/appcache_internals_ui.cc", |
| 359 | "appcache/appcache_internals_ui.h", |
ananta | 46f3e94 | 2017-05-09 04:56:30 | [diff] [blame] | 360 | "appcache/appcache_job.cc", |
| 361 | "appcache/appcache_job.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 362 | "appcache/appcache_manifest_parser.cc", |
| 363 | "appcache/appcache_manifest_parser.h", |
ananta | 292a917 | 2016-12-07 01:29:27 | [diff] [blame] | 364 | "appcache/appcache_navigation_handle.cc", |
| 365 | "appcache/appcache_navigation_handle.h", |
| 366 | "appcache/appcache_navigation_handle_core.cc", |
| 367 | "appcache/appcache_navigation_handle_core.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 368 | "appcache/appcache_policy.h", |
| 369 | "appcache/appcache_quota_client.cc", |
| 370 | "appcache/appcache_quota_client.h", |
ananta | 4e8a529 | 2017-05-04 03:07:15 | [diff] [blame] | 371 | "appcache/appcache_request.cc", |
| 372 | "appcache/appcache_request.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 373 | "appcache/appcache_request_handler.cc", |
| 374 | "appcache/appcache_request_handler.h", |
| 375 | "appcache/appcache_response.cc", |
| 376 | "appcache/appcache_response.h", |
| 377 | "appcache/appcache_service_impl.cc", |
| 378 | "appcache/appcache_service_impl.h", |
| 379 | "appcache/appcache_storage.cc", |
| 380 | "appcache/appcache_storage.h", |
| 381 | "appcache/appcache_storage_impl.cc", |
| 382 | "appcache/appcache_storage_impl.h", |
ananta | e60d1d4 | 2017-06-20 04:16:27 | [diff] [blame] | 383 | "appcache/appcache_subresource_url_factory.cc", |
| 384 | "appcache/appcache_subresource_url_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 385 | "appcache/appcache_update_job.cc", |
| 386 | "appcache/appcache_update_job.h", |
Anantanarayanan Iyengar | d42af8f | 2017-08-01 23:09:36 | [diff] [blame] | 387 | "appcache/appcache_update_request_base.cc", |
| 388 | "appcache/appcache_update_request_base.h", |
ananta | 609d977 | 2017-07-21 02:12:53 | [diff] [blame] | 389 | "appcache/appcache_update_url_fetcher.cc", |
| 390 | "appcache/appcache_update_url_fetcher.h", |
Anantanarayanan Iyengar | d42af8f | 2017-08-01 23:09:36 | [diff] [blame] | 391 | "appcache/appcache_update_url_loader_request.cc", |
| 392 | "appcache/appcache_update_url_loader_request.h", |
| 393 | "appcache/appcache_update_url_request.cc", |
| 394 | "appcache/appcache_update_url_request.h", |
ananta | 46f3e94 | 2017-05-09 04:56:30 | [diff] [blame] | 395 | "appcache/appcache_url_loader_job.cc", |
| 396 | "appcache/appcache_url_loader_job.h", |
ananta | 4e8a529 | 2017-05-04 03:07:15 | [diff] [blame] | 397 | "appcache/appcache_url_loader_request.cc", |
| 398 | "appcache/appcache_url_loader_request.h", |
| 399 | "appcache/appcache_url_request.cc", |
| 400 | "appcache/appcache_url_request.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 401 | "appcache/appcache_url_request_job.cc", |
| 402 | "appcache/appcache_url_request_job.h", |
| 403 | "appcache/appcache_working_set.cc", |
| 404 | "appcache/appcache_working_set.h", |
| 405 | "appcache/chrome_appcache_service.cc", |
| 406 | "appcache/chrome_appcache_service.h", |
harkness | 7b36c43 | 2017-02-15 20:05:36 | [diff] [blame] | 407 | "background_fetch/background_fetch_context.cc", |
| 408 | "background_fetch/background_fetch_context.h", |
peter | bbecee16 | 2017-04-14 17:09:55 | [diff] [blame] | 409 | "background_fetch/background_fetch_cross_origin_filter.cc", |
| 410 | "background_fetch/background_fetch_cross_origin_filter.h", |
harkness | 7b36c43 | 2017-02-15 20:05:36 | [diff] [blame] | 411 | "background_fetch/background_fetch_data_manager.cc", |
| 412 | "background_fetch/background_fetch_data_manager.h", |
Dan Elphick | 5e7e295 | 2017-07-18 14:25:08 | [diff] [blame] | 413 | "background_fetch/background_fetch_delegate_proxy.cc", |
| 414 | "background_fetch/background_fetch_delegate_proxy.h", |
peter | ef079770 | 2017-03-19 04:06:40 | [diff] [blame] | 415 | "background_fetch/background_fetch_event_dispatcher.cc", |
| 416 | "background_fetch/background_fetch_event_dispatcher.h", |
harkness | a247d9bf | 2017-02-28 17:01:53 | [diff] [blame] | 417 | "background_fetch/background_fetch_job_controller.cc", |
| 418 | "background_fetch/background_fetch_job_controller.h", |
Rayan Kanso | 0f48a4a | 2018-04-23 14:27:30 | [diff] [blame] | 419 | "background_fetch/background_fetch_metrics.cc", |
| 420 | "background_fetch/background_fetch_metrics.h", |
peter | 6965a1a1 | 2017-03-27 08:59:27 | [diff] [blame] | 421 | "background_fetch/background_fetch_registration_id.cc", |
| 422 | "background_fetch/background_fetch_registration_id.h", |
Peter Beverloo | 83ee664 | 2017-10-11 20:23:17 | [diff] [blame] | 423 | "background_fetch/background_fetch_registration_notifier.cc", |
| 424 | "background_fetch/background_fetch_registration_notifier.h", |
harkness | a247d9bf | 2017-02-28 17:01:53 | [diff] [blame] | 425 | "background_fetch/background_fetch_request_info.cc", |
| 426 | "background_fetch/background_fetch_request_info.h", |
Dan Elphick | d28d18a | 2017-11-07 14:26:37 | [diff] [blame] | 427 | "background_fetch/background_fetch_request_manager.h", |
Dan Elphick | 1465585 | 2018-01-03 16:13:29 | [diff] [blame] | 428 | "background_fetch/background_fetch_scheduler.cc", |
| 429 | "background_fetch/background_fetch_scheduler.h", |
peter | 3226ce8 | 2017-03-16 18:06:28 | [diff] [blame] | 430 | "background_fetch/background_fetch_service_impl.cc", |
| 431 | "background_fetch/background_fetch_service_impl.h", |
Dan Elphick | 260f3f6 | 2017-11-02 15:21:41 | [diff] [blame] | 432 | "background_fetch/storage/cleanup_task.cc", |
| 433 | "background_fetch/storage/cleanup_task.h", |
Rayan Kanso | 4ca46f7 | 2018-04-10 21:16:53 | [diff] [blame] | 434 | "background_fetch/storage/create_metadata_task.cc", |
| 435 | "background_fetch/storage/create_metadata_task.h", |
Dan Elphick | 260f3f6 | 2017-11-02 15:21:41 | [diff] [blame] | 436 | "background_fetch/storage/database_helpers.cc", |
| 437 | "background_fetch/storage/database_helpers.h", |
| 438 | "background_fetch/storage/database_task.cc", |
| 439 | "background_fetch/storage/database_task.h", |
| 440 | "background_fetch/storage/delete_registration_task.cc", |
| 441 | "background_fetch/storage/delete_registration_task.h", |
Dan Elphick | a26d0f7 | 2017-11-14 13:31:59 | [diff] [blame] | 442 | "background_fetch/storage/get_developer_ids_task.cc", |
| 443 | "background_fetch/storage/get_developer_ids_task.h", |
Rayan Kanso | 3d49275 | 2018-07-05 15:05:42 | [diff] [blame] | 444 | "background_fetch/storage/get_initialization_data_task.cc", |
| 445 | "background_fetch/storage/get_initialization_data_task.h", |
Rayan Kanso | 4ca46f7 | 2018-04-10 21:16:53 | [diff] [blame] | 446 | "background_fetch/storage/get_metadata_task.cc", |
| 447 | "background_fetch/storage/get_metadata_task.h", |
Rayan Kanso | da53ad5d | 2018-05-23 12:44:25 | [diff] [blame] | 448 | "background_fetch/storage/get_num_requests_task.cc", |
| 449 | "background_fetch/storage/get_num_requests_task.h", |
Rayan Kanso | f8eda31 | 2018-05-21 18:14:52 | [diff] [blame] | 450 | "background_fetch/storage/get_settled_fetches_task.cc", |
| 451 | "background_fetch/storage/get_settled_fetches_task.h", |
Dan Elphick | 260f3f6 | 2017-11-02 15:21:41 | [diff] [blame] | 452 | "background_fetch/storage/mark_registration_for_deletion_task.cc", |
| 453 | "background_fetch/storage/mark_registration_for_deletion_task.h", |
Rayan Kanso | 731a791 | 2018-05-02 21:00:40 | [diff] [blame] | 454 | "background_fetch/storage/mark_request_complete_task.cc", |
| 455 | "background_fetch/storage/mark_request_complete_task.h", |
Rayan Kanso | aa1821d8 | 2018-05-02 16:38:49 | [diff] [blame] | 456 | "background_fetch/storage/start_next_pending_request_task.cc", |
| 457 | "background_fetch/storage/start_next_pending_request_task.h", |
Rayan Kanso | d5166ee | 2018-03-28 13:09:31 | [diff] [blame] | 458 | "background_fetch/storage/update_registration_ui_task.cc", |
| 459 | "background_fetch/storage/update_registration_ui_task.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 460 | "background_sync/background_sync_context.cc", |
| 461 | "background_sync/background_sync_context.h", |
| 462 | "background_sync/background_sync_manager.cc", |
| 463 | "background_sync/background_sync_manager.h", |
| 464 | "background_sync/background_sync_metrics.cc", |
| 465 | "background_sync/background_sync_metrics.h", |
| 466 | "background_sync/background_sync_network_observer.cc", |
| 467 | "background_sync/background_sync_network_observer.h", |
| 468 | "background_sync/background_sync_registration.cc", |
| 469 | "background_sync/background_sync_registration.h", |
| 470 | "background_sync/background_sync_registration_options.cc", |
| 471 | "background_sync/background_sync_registration_options.h", |
| 472 | "background_sync/background_sync_service_impl.cc", |
| 473 | "background_sync/background_sync_service_impl.h", |
| 474 | "background_sync/background_sync_status.h", |
| 475 | "bad_message.cc", |
| 476 | "bad_message.h", |
| 477 | "blob_storage/blob_dispatcher_host.cc", |
| 478 | "blob_storage/blob_dispatcher_host.h", |
jam | d654ee5 | 2017-05-09 22:00:52 | [diff] [blame] | 479 | "blob_storage/blob_internals_url_loader.cc", |
| 480 | "blob_storage/blob_internals_url_loader.h", |
Marijn Kruisselbrink | 76098688 | 2017-07-11 17:06:51 | [diff] [blame] | 481 | "blob_storage/blob_registry_wrapper.cc", |
| 482 | "blob_storage/blob_registry_wrapper.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 483 | "blob_storage/chrome_blob_storage_context.cc", |
| 484 | "blob_storage/chrome_blob_storage_context.h", |
juncai | f70c5117 | 2017-02-10 23:49:17 | [diff] [blame] | 485 | "bluetooth/bluetooth_allowed_devices.cc", |
| 486 | "bluetooth/bluetooth_allowed_devices.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 487 | "bluetooth/bluetooth_allowed_devices_map.cc", |
| 488 | "bluetooth/bluetooth_allowed_devices_map.h", |
beaufort.francois | 01135bf | 2016-11-23 14:37:36 | [diff] [blame] | 489 | "bluetooth/bluetooth_blocklist.cc", |
| 490 | "bluetooth/bluetooth_blocklist.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 491 | "bluetooth/bluetooth_device_chooser_controller.cc", |
| 492 | "bluetooth/bluetooth_device_chooser_controller.h", |
| 493 | "bluetooth/bluetooth_metrics.cc", |
| 494 | "bluetooth/bluetooth_metrics.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 495 | "bluetooth/frame_connected_bluetooth_devices.cc", |
| 496 | "bluetooth/frame_connected_bluetooth_devices.h", |
| 497 | "bluetooth/web_bluetooth_service_impl.cc", |
| 498 | "bluetooth/web_bluetooth_service_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 499 | "broadcast_channel/broadcast_channel_provider.cc", |
| 500 | "broadcast_channel/broadcast_channel_provider.h", |
| 501 | "browser_child_process_host_impl.cc", |
| 502 | "browser_child_process_host_impl.h", |
| 503 | "browser_context.cc", |
| 504 | "browser_ipc_logging.cc", |
| 505 | "browser_main.cc", |
| 506 | "browser_main.h", |
| 507 | "browser_main_loop.cc", |
| 508 | "browser_main_loop.h", |
Xi Han | b2c9713c | 2018-05-10 19:19:17 | [diff] [blame] | 509 | "browser_main_runner_impl.cc", |
Xi Han | 6740d62 | 2018-05-22 19:21:07 | [diff] [blame] | 510 | "browser_main_runner_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 511 | "browser_plugin/browser_plugin_embedder.cc", |
| 512 | "browser_plugin/browser_plugin_embedder.h", |
| 513 | "browser_plugin/browser_plugin_guest.cc", |
| 514 | "browser_plugin/browser_plugin_guest.h", |
| 515 | "browser_plugin/browser_plugin_message_filter.cc", |
| 516 | "browser_plugin/browser_plugin_message_filter.h", |
| 517 | "browser_plugin/browser_plugin_popup_menu_helper_mac.h", |
| 518 | "browser_plugin/browser_plugin_popup_menu_helper_mac.mm", |
| 519 | "browser_process_sub_thread.cc", |
| 520 | "browser_process_sub_thread.h", |
| 521 | "browser_shutdown_profile_dumper.cc", |
| 522 | "browser_shutdown_profile_dumper.h", |
| 523 | "browser_thread_impl.cc", |
| 524 | "browser_thread_impl.h", |
| 525 | "browser_url_handler_impl.cc", |
| 526 | "browser_url_handler_impl.h", |
msramek | a3c7cfd | 2017-02-03 13:34:13 | [diff] [blame] | 527 | "browsing_data/browsing_data_filter_builder_impl.cc", |
| 528 | "browsing_data/browsing_data_filter_builder_impl.h", |
msramek | e169ccb | 2017-04-26 05:21:41 | [diff] [blame] | 529 | "browsing_data/browsing_data_remover_impl.cc", |
| 530 | "browsing_data/browsing_data_remover_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 531 | "browsing_data/clear_site_data_throttle.cc", |
| 532 | "browsing_data/clear_site_data_throttle.h", |
msramek | ee2be6e | 2017-03-27 19:28:01 | [diff] [blame] | 533 | "browsing_data/conditional_cache_deletion_helper.cc", |
| 534 | "browsing_data/conditional_cache_deletion_helper.h", |
| 535 | "browsing_data/storage_partition_http_cache_data_remover.cc", |
| 536 | "browsing_data/storage_partition_http_cache_data_remover.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 537 | "browsing_instance.cc", |
| 538 | "browsing_instance.h", |
| 539 | "byte_stream.cc", |
| 540 | "byte_stream.h", |
| 541 | "cache_storage/cache_storage.cc", |
| 542 | "cache_storage/cache_storage.h", |
| 543 | "cache_storage/cache_storage_blob_to_disk_cache.cc", |
| 544 | "cache_storage/cache_storage_blob_to_disk_cache.h", |
| 545 | "cache_storage/cache_storage_cache.cc", |
| 546 | "cache_storage/cache_storage_cache.h", |
| 547 | "cache_storage/cache_storage_cache_handle.cc", |
| 548 | "cache_storage/cache_storage_cache_handle.h", |
cmumford | ffb8a16 | 2016-12-22 15:26:50 | [diff] [blame] | 549 | "cache_storage/cache_storage_cache_observer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 550 | "cache_storage/cache_storage_context_impl.cc", |
| 551 | "cache_storage/cache_storage_context_impl.h", |
| 552 | "cache_storage/cache_storage_dispatcher_host.cc", |
| 553 | "cache_storage/cache_storage_dispatcher_host.h", |
| 554 | "cache_storage/cache_storage_histogram_macros.h", |
cmumford | ffb8a16 | 2016-12-22 15:26:50 | [diff] [blame] | 555 | "cache_storage/cache_storage_index.cc", |
| 556 | "cache_storage/cache_storage_index.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 557 | "cache_storage/cache_storage_manager.cc", |
| 558 | "cache_storage/cache_storage_manager.h", |
| 559 | "cache_storage/cache_storage_operation.cc", |
| 560 | "cache_storage/cache_storage_operation.h", |
| 561 | "cache_storage/cache_storage_quota_client.cc", |
| 562 | "cache_storage/cache_storage_quota_client.h", |
| 563 | "cache_storage/cache_storage_scheduler.cc", |
| 564 | "cache_storage/cache_storage_scheduler.h", |
| 565 | "cache_storage/cache_storage_scheduler_client.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 566 | "child_process_launcher.cc", |
| 567 | "child_process_launcher.h", |
jcivelli | 828cd7f | 2017-01-18 19:50:46 | [diff] [blame] | 568 | "child_process_launcher_helper.cc", |
| 569 | "child_process_launcher_helper.h", |
| 570 | "child_process_launcher_helper_android.cc", |
| 571 | "child_process_launcher_helper_linux.cc", |
| 572 | "child_process_launcher_helper_mac.cc", |
jcivelli | 828cd7f | 2017-01-18 19:50:46 | [diff] [blame] | 573 | "child_process_launcher_helper_win.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 574 | "child_process_security_policy_impl.cc", |
| 575 | "child_process_security_policy_impl.h", |
| 576 | "cocoa/system_hotkey_helper_mac.h", |
| 577 | "cocoa/system_hotkey_helper_mac.mm", |
| 578 | "cocoa/system_hotkey_map.h", |
| 579 | "cocoa/system_hotkey_map.mm", |
Xi Han | 4fbe7c3 | 2018-07-10 22:09:12 | [diff] [blame] | 580 | "startup_data_impl.cc", |
| 581 | "startup_data_impl.h", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 582 | |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 583 | # NOTE: These files are here instead of in compositor_browser_sources |
| 584 | # because the latter is not built on Android, whereas these files are |
| 585 | # needed on all platforms. |
| 586 | "compositor/surface_utils.cc", |
| 587 | "compositor/surface_utils.h", |
Ken Rockot | 84f58fd | 2018-06-22 21:54:14 | [diff] [blame] | 588 | "content_service_delegate_impl.cc", |
| 589 | "content_service_delegate_impl.h", |
Victor Costan | 7184272a | 2018-05-15 13:17:43 | [diff] [blame] | 590 | "cookie_store/cookie_change_subscription.cc", |
| 591 | "cookie_store/cookie_change_subscription.h", |
| 592 | "cookie_store/cookie_store_context.cc", |
| 593 | "cookie_store/cookie_store_context.h", |
| 594 | "cookie_store/cookie_store_host.cc", |
| 595 | "cookie_store/cookie_store_host.h", |
| 596 | "cookie_store/cookie_store_manager.cc", |
| 597 | "cookie_store/cookie_store_manager.h", |
Sam McNally | ee8cceda6 | 2017-10-18 12:00:15 | [diff] [blame] | 598 | "dedicated_worker/dedicated_worker_host.cc", |
| 599 | "dedicated_worker/dedicated_worker_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 600 | "devtools/browser_devtools_agent_host.cc", |
| 601 | "devtools/browser_devtools_agent_host.h", |
| 602 | "devtools/devtools_agent_host_impl.cc", |
| 603 | "devtools/devtools_agent_host_impl.h", |
| 604 | "devtools/devtools_frame_trace_recorder.cc", |
| 605 | "devtools/devtools_frame_trace_recorder.h", |
pfeldman | 1062876 | 2016-09-08 07:59:26 | [diff] [blame] | 606 | "devtools/devtools_http_handler.cc", |
| 607 | "devtools/devtools_http_handler.h", |
Andrey Kosyakov | 120a228f | 2017-11-06 22:38:35 | [diff] [blame] | 608 | "devtools/devtools_interceptor_controller.cc", |
| 609 | "devtools/devtools_interceptor_controller.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 610 | "devtools/devtools_io_context.cc", |
| 611 | "devtools/devtools_io_context.h", |
| 612 | "devtools/devtools_manager.cc", |
| 613 | "devtools/devtools_manager.h", |
Andrey Kosyakov | 3dfc0cc | 2018-02-17 00:02:08 | [diff] [blame] | 614 | "devtools/devtools_network_interceptor.cc", |
| 615 | "devtools/devtools_network_interceptor.h", |
Andrey Kosyakov | 24f3316 | 2017-09-14 22:41:40 | [diff] [blame] | 616 | "devtools/devtools_network_transaction_factory.cc", |
Pavel Feldman | 2b11e235 | 2017-10-25 05:24:01 | [diff] [blame] | 617 | "devtools/devtools_pipe_handler.cc", |
| 618 | "devtools/devtools_pipe_handler.h", |
dgozman | d7718863 | 2016-11-16 01:34:39 | [diff] [blame] | 619 | "devtools/devtools_session.cc", |
| 620 | "devtools/devtools_session.h", |
Andrey Kosyakov | 2c256c9 | 2018-04-13 03:36:21 | [diff] [blame] | 621 | "devtools/devtools_stream_blob.cc", |
| 622 | "devtools/devtools_stream_blob.h", |
| 623 | "devtools/devtools_stream_file.cc", |
| 624 | "devtools/devtools_stream_file.h", |
Andrey Kosyakov | fd7c7ce | 2018-04-25 19:26:50 | [diff] [blame] | 625 | "devtools/devtools_stream_pipe.cc", |
| 626 | "devtools/devtools_stream_pipe.h", |
Andrey Kosyakov | 2c0c08bb | 2017-10-25 03:19:09 | [diff] [blame] | 627 | "devtools/devtools_target_registry.cc", |
| 628 | "devtools/devtools_target_registry.h", |
Saman Sami | 1b9a9c8 | 2018-02-21 04:13:28 | [diff] [blame] | 629 | "devtools/devtools_traceable_screenshot.cc", |
| 630 | "devtools/devtools_traceable_screenshot.h", |
alexclarke | 6f5b3053 | 2017-06-02 14:32:30 | [diff] [blame] | 631 | "devtools/devtools_url_interceptor_request_job.cc", |
| 632 | "devtools/devtools_url_interceptor_request_job.h", |
Andrey Kosyakov | 8d49c506 | 2018-03-15 19:50:49 | [diff] [blame] | 633 | "devtools/devtools_url_loader_interceptor.cc", |
| 634 | "devtools/devtools_url_loader_interceptor.h", |
alexclarke | 6f5b3053 | 2017-06-02 14:32:30 | [diff] [blame] | 635 | "devtools/devtools_url_request_interceptor.cc", |
| 636 | "devtools/devtools_url_request_interceptor.h", |
Shridhar Sundarraj | 2af6bca | 2018-04-12 09:26:20 | [diff] [blame] | 637 | "devtools/devtools_video_consumer.cc", |
| 638 | "devtools/devtools_video_consumer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 639 | "devtools/forwarding_agent_host.cc", |
| 640 | "devtools/forwarding_agent_host.h", |
Andrey Lushnikov | 370cbea6 | 2017-08-12 04:51:54 | [diff] [blame] | 641 | "devtools/protocol/browser_handler.cc", |
| 642 | "devtools/protocol/browser_handler.h", |
dgozman | 39d9d9a | 2016-12-28 18:56:30 | [diff] [blame] | 643 | "devtools/protocol/devtools_domain_handler.cc", |
| 644 | "devtools/protocol/devtools_domain_handler.h", |
David Vallet | 1168352 | 2017-08-23 03:20:46 | [diff] [blame] | 645 | "devtools/protocol/devtools_download_manager_delegate.cc", |
| 646 | "devtools/protocol/devtools_download_manager_delegate.h", |
| 647 | "devtools/protocol/devtools_download_manager_helper.cc", |
| 648 | "devtools/protocol/devtools_download_manager_helper.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 649 | "devtools/protocol/dom_handler.cc", |
| 650 | "devtools/protocol/dom_handler.h", |
| 651 | "devtools/protocol/emulation_handler.cc", |
| 652 | "devtools/protocol/emulation_handler.h", |
| 653 | "devtools/protocol/input_handler.cc", |
| 654 | "devtools/protocol/input_handler.h", |
| 655 | "devtools/protocol/inspector_handler.cc", |
| 656 | "devtools/protocol/inspector_handler.h", |
| 657 | "devtools/protocol/io_handler.cc", |
| 658 | "devtools/protocol/io_handler.h", |
| 659 | "devtools/protocol/memory_handler.cc", |
| 660 | "devtools/protocol/memory_handler.h", |
Blaise | bcad00c | 2017-07-25 00:19:49 | [diff] [blame] | 661 | "devtools/protocol/native_input_event_builder.h", |
| 662 | "devtools/protocol/native_input_event_builder_mac.mm", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 663 | "devtools/protocol/network_handler.cc", |
| 664 | "devtools/protocol/network_handler.h", |
| 665 | "devtools/protocol/page_handler.cc", |
| 666 | "devtools/protocol/page_handler.h", |
| 667 | "devtools/protocol/schema_handler.cc", |
| 668 | "devtools/protocol/schema_handler.h", |
| 669 | "devtools/protocol/security_handler.cc", |
| 670 | "devtools/protocol/security_handler.h", |
| 671 | "devtools/protocol/service_worker_handler.cc", |
| 672 | "devtools/protocol/service_worker_handler.h", |
| 673 | "devtools/protocol/storage_handler.cc", |
| 674 | "devtools/protocol/storage_handler.h", |
| 675 | "devtools/protocol/system_info_handler.cc", |
| 676 | "devtools/protocol/system_info_handler.h", |
dgozman | 9f20416 | 2017-07-14 00:55:31 | [diff] [blame] | 677 | "devtools/protocol/target_auto_attacher.cc", |
| 678 | "devtools/protocol/target_auto_attacher.h", |
dgozman | c2cea7d | 2016-09-28 03:27:55 | [diff] [blame] | 679 | "devtools/protocol/target_handler.cc", |
| 680 | "devtools/protocol/target_handler.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 681 | "devtools/protocol/tethering_handler.cc", |
| 682 | "devtools/protocol/tethering_handler.h", |
| 683 | "devtools/protocol/tracing_handler.cc", |
| 684 | "devtools/protocol/tracing_handler.h", |
dgozman | dc4d4172 | 2016-11-15 22:40:56 | [diff] [blame] | 685 | "devtools/protocol_string.cc", |
| 686 | "devtools/protocol_string.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 687 | "devtools/render_frame_devtools_agent_host.cc", |
| 688 | "devtools/render_frame_devtools_agent_host.h", |
| 689 | "devtools/service_worker_devtools_agent_host.cc", |
| 690 | "devtools/service_worker_devtools_agent_host.h", |
| 691 | "devtools/service_worker_devtools_manager.cc", |
| 692 | "devtools/service_worker_devtools_manager.h", |
| 693 | "devtools/shared_worker_devtools_agent_host.cc", |
| 694 | "devtools/shared_worker_devtools_agent_host.h", |
| 695 | "devtools/shared_worker_devtools_manager.cc", |
| 696 | "devtools/shared_worker_devtools_manager.h", |
Pavel Feldman | 3be811e7 | 2018-07-04 15:24:09 | [diff] [blame] | 697 | "devtools/target_registry.cc", |
| 698 | "devtools/target_registry.h", |
Scott Violet | 8af2ef7 | 2017-08-02 21:59:26 | [diff] [blame] | 699 | "discardable_shared_memory_manager.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 700 | "dom_storage/dom_storage_area.cc", |
| 701 | "dom_storage/dom_storage_area.h", |
| 702 | "dom_storage/dom_storage_context_impl.cc", |
| 703 | "dom_storage/dom_storage_context_impl.h", |
| 704 | "dom_storage/dom_storage_context_wrapper.cc", |
| 705 | "dom_storage/dom_storage_context_wrapper.h", |
| 706 | "dom_storage/dom_storage_database.cc", |
| 707 | "dom_storage/dom_storage_database.h", |
| 708 | "dom_storage/dom_storage_database_adapter.h", |
| 709 | "dom_storage/dom_storage_host.cc", |
| 710 | "dom_storage/dom_storage_host.h", |
| 711 | "dom_storage/dom_storage_message_filter.cc", |
| 712 | "dom_storage/dom_storage_message_filter.h", |
| 713 | "dom_storage/dom_storage_namespace.cc", |
| 714 | "dom_storage/dom_storage_namespace.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 715 | "dom_storage/dom_storage_task_runner.cc", |
| 716 | "dom_storage/dom_storage_task_runner.h", |
mek | 876c5c6 | 2016-12-22 17:40:46 | [diff] [blame] | 717 | "dom_storage/local_storage_context_mojo.cc", |
| 718 | "dom_storage/local_storage_context_mojo.h", |
Marijn Kruisselbrink | 87ab0fb | 2018-06-13 00:18:29 | [diff] [blame] | 719 | "dom_storage/session_storage_area_impl.cc", |
| 720 | "dom_storage/session_storage_area_impl.h", |
Daniel Murphy | 0ce6e2c3 | 2017-11-21 01:54:26 | [diff] [blame] | 721 | "dom_storage/session_storage_context_mojo.cc", |
| 722 | "dom_storage/session_storage_context_mojo.h", |
Daniel Murphy | b979f2c | 2018-04-13 22:40:37 | [diff] [blame] | 723 | "dom_storage/session_storage_data_map.cc", |
| 724 | "dom_storage/session_storage_data_map.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 725 | "dom_storage/session_storage_database.cc", |
| 726 | "dom_storage/session_storage_database.h", |
| 727 | "dom_storage/session_storage_database_adapter.cc", |
| 728 | "dom_storage/session_storage_database_adapter.h", |
Daniel Murphy | dab0c20 | 2018-04-13 01:09:40 | [diff] [blame] | 729 | "dom_storage/session_storage_metadata.cc", |
| 730 | "dom_storage/session_storage_metadata.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 731 | "dom_storage/session_storage_namespace_impl.cc", |
| 732 | "dom_storage/session_storage_namespace_impl.h", |
Daniel Murphy | bdbd066 | 2018-04-25 22:24:10 | [diff] [blame] | 733 | "dom_storage/session_storage_namespace_impl_mojo.cc", |
| 734 | "dom_storage/session_storage_namespace_impl_mojo.h", |
Marijn Kruisselbrink | 87ab0fb | 2018-06-13 00:18:29 | [diff] [blame] | 735 | "dom_storage/storage_area_impl.cc", |
| 736 | "dom_storage/storage_area_impl.h", |
Min Qin | 745839d | 2018-03-09 00:09:40 | [diff] [blame] | 737 | "download/byte_stream_input_stream.cc", |
| 738 | "download/byte_stream_input_stream.h", |
Min Qin | a9f48787 | 2018-02-09 20:43:23 | [diff] [blame] | 739 | "download/download_item_utils.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 740 | "download/download_manager_impl.cc", |
| 741 | "download/download_manager_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 742 | "download/download_request_core.cc", |
| 743 | "download/download_request_core.h", |
| 744 | "download/download_request_handle.cc", |
| 745 | "download/download_request_handle.h", |
Min Qin | a904f330 | 2018-02-13 23:33:34 | [diff] [blame] | 746 | "download/download_request_utils.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 747 | "download/download_resource_handler.cc", |
| 748 | "download/download_resource_handler.h", |
Marijn Kruisselbrink | 4d4aa99 | 2018-04-27 18:03:27 | [diff] [blame] | 749 | "download/download_url_loader_factory_getter_impl.cc", |
| 750 | "download/download_url_loader_factory_getter_impl.h", |
Min Qin | 5c5ebc2 | 2017-08-09 16:30:24 | [diff] [blame] | 751 | "download/download_utils.cc", |
| 752 | "download/download_utils.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 753 | "download/drag_download_file.cc", |
| 754 | "download/drag_download_file.h", |
| 755 | "download/drag_download_util.cc", |
| 756 | "download/drag_download_util.h", |
Jay Civelli | 2578ebe | 2018-06-05 18:44:31 | [diff] [blame] | 757 | "download/file_download_url_loader_factory_getter.cc", |
| 758 | "download/file_download_url_loader_factory_getter.h", |
petewil | 2abcf04 | 2017-04-10 21:45:00 | [diff] [blame] | 759 | "download/mhtml_extra_parts_impl.cc", |
| 760 | "download/mhtml_extra_parts_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 761 | "download/mhtml_generation_manager.cc", |
| 762 | "download/mhtml_generation_manager.h", |
Min Qin | 0cb03a3 | 2018-04-12 14:48:18 | [diff] [blame] | 763 | "download/network_download_url_loader_factory_getter.cc", |
| 764 | "download/network_download_url_loader_factory_getter.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 765 | "download/save_file.cc", |
| 766 | "download/save_file.h", |
| 767 | "download/save_file_manager.cc", |
| 768 | "download/save_file_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 769 | "download/save_item.cc", |
| 770 | "download/save_item.h", |
| 771 | "download/save_package.cc", |
| 772 | "download/save_package.h", |
| 773 | "download/save_types.cc", |
| 774 | "download/save_types.h", |
| 775 | "download/url_downloader.cc", |
| 776 | "download/url_downloader.h", |
Min Qin | d9f3bbd14 | 2018-03-23 20:42:15 | [diff] [blame] | 777 | "download/url_downloader_factory.cc", |
| 778 | "download/url_downloader_factory.h", |
John Abd-El-Malek | c8b32bc | 2018-07-10 21:20:36 | [diff] [blame] | 779 | "download/web_ui_download_url_loader_factory_getter.cc", |
| 780 | "download/web_ui_download_url_loader_factory_getter.h", |
chiniforooshan | 614d70a | 2017-03-17 01:19:33 | [diff] [blame] | 781 | "field_trial_recorder.cc", |
| 782 | "field_trial_recorder.h", |
Ken Rockot | 314714c | 2017-11-05 23:36:24 | [diff] [blame] | 783 | "file_url_loader_factory.cc", |
| 784 | "file_url_loader_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 785 | "fileapi/browser_file_system_helper.cc", |
| 786 | "fileapi/browser_file_system_helper.h", |
Chris Mumford | 942075ad | 2018-05-19 00:22:04 | [diff] [blame] | 787 | "fileapi/file_system_url_loader_factory.cc", |
| 788 | "fileapi/file_system_url_loader_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 789 | "fileapi/fileapi_message_filter.cc", |
| 790 | "fileapi/fileapi_message_filter.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 791 | "find_request_manager.cc", |
| 792 | "find_request_manager.h", |
| 793 | "font_list_async.cc", |
arthursonzogni | c5a2f12 | 2016-12-21 08:47:16 | [diff] [blame] | 794 | "frame_host/ancestor_throttle.cc", |
| 795 | "frame_host/ancestor_throttle.h", |
Mustafa Emre Acer | 5440020 | 2018-04-30 19:38:11 | [diff] [blame] | 796 | "frame_host/blocked_scheme_navigation_throttle.cc", |
| 797 | "frame_host/blocked_scheme_navigation_throttle.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 798 | "frame_host/cross_process_frame_connector.cc", |
| 799 | "frame_host/cross_process_frame_connector.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 800 | "frame_host/debug_urls.cc", |
| 801 | "frame_host/debug_urls.h", |
arthursonzogni | 7cc34c5 | 2017-03-18 09:00:53 | [diff] [blame] | 802 | "frame_host/form_submission_throttle.cc", |
| 803 | "frame_host/form_submission_throttle.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 804 | "frame_host/frame_navigation_entry.cc", |
| 805 | "frame_host/frame_navigation_entry.h", |
| 806 | "frame_host/frame_tree.cc", |
| 807 | "frame_host/frame_tree.h", |
| 808 | "frame_host/frame_tree_node.cc", |
| 809 | "frame_host/frame_tree_node.h", |
| 810 | "frame_host/frame_tree_node_blame_context.cc", |
| 811 | "frame_host/frame_tree_node_blame_context.h", |
Dave Tapuska | f238a1a | 2017-08-28 21:24:39 | [diff] [blame] | 812 | "frame_host/input/input_injector_impl.cc", |
| 813 | "frame_host/input/input_injector_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 814 | "frame_host/interstitial_page_impl.cc", |
| 815 | "frame_host/interstitial_page_impl.h", |
| 816 | "frame_host/interstitial_page_navigator_impl.cc", |
| 817 | "frame_host/interstitial_page_navigator_impl.h", |
Yutaka Hirano | f7f2f63 | 2017-09-06 10:40:08 | [diff] [blame] | 818 | "frame_host/keep_alive_handle_factory.cc", |
| 819 | "frame_host/keep_alive_handle_factory.h", |
carlosk | d9d9794 | 2017-02-16 08:58:09 | [diff] [blame] | 820 | "frame_host/mixed_content_navigation_throttle.cc", |
| 821 | "frame_host/mixed_content_navigation_throttle.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 822 | "frame_host/navigation_controller_android.cc", |
| 823 | "frame_host/navigation_controller_android.h", |
| 824 | "frame_host/navigation_controller_delegate.h", |
| 825 | "frame_host/navigation_controller_impl.cc", |
| 826 | "frame_host/navigation_controller_impl.h", |
| 827 | "frame_host/navigation_entry_impl.cc", |
| 828 | "frame_host/navigation_entry_impl.h", |
| 829 | "frame_host/navigation_entry_screenshot_manager.cc", |
| 830 | "frame_host/navigation_entry_screenshot_manager.h", |
| 831 | "frame_host/navigation_handle_impl.cc", |
| 832 | "frame_host/navigation_handle_impl.h", |
| 833 | "frame_host/navigation_request.cc", |
| 834 | "frame_host/navigation_request.h", |
| 835 | "frame_host/navigation_request_info.cc", |
| 836 | "frame_host/navigation_request_info.h", |
| 837 | "frame_host/navigator.cc", |
| 838 | "frame_host/navigator.h", |
| 839 | "frame_host/navigator_delegate.cc", |
| 840 | "frame_host/navigator_delegate.h", |
| 841 | "frame_host/navigator_impl.cc", |
| 842 | "frame_host/navigator_impl.h", |
Daniel Vogelheim | afe93f4 | 2018-06-22 12:09:01 | [diff] [blame] | 843 | "frame_host/origin_policy_throttle.cc", |
| 844 | "frame_host/origin_policy_throttle.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 845 | "frame_host/popup_menu_helper_mac.h", |
| 846 | "frame_host/popup_menu_helper_mac.mm", |
| 847 | "frame_host/render_frame_host_delegate.cc", |
| 848 | "frame_host/render_frame_host_delegate.h", |
| 849 | "frame_host/render_frame_host_factory.cc", |
| 850 | "frame_host/render_frame_host_factory.h", |
| 851 | "frame_host/render_frame_host_impl.cc", |
| 852 | "frame_host/render_frame_host_impl.h", |
| 853 | "frame_host/render_frame_host_manager.cc", |
| 854 | "frame_host/render_frame_host_manager.h", |
| 855 | "frame_host/render_frame_message_filter.cc", |
| 856 | "frame_host/render_frame_message_filter.h", |
| 857 | "frame_host/render_frame_proxy_host.cc", |
| 858 | "frame_host/render_frame_proxy_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 859 | "frame_host/render_widget_host_view_guest.cc", |
| 860 | "frame_host/render_widget_host_view_guest.h", |
Nasko Oskov | a50ec57 | 2018-04-27 00:12:08 | [diff] [blame] | 861 | "frame_host/webui_navigation_throttle.cc", |
| 862 | "frame_host/webui_navigation_throttle.h", |
Eero Häkkinen | b1907a76 | 2017-08-21 08:37:57 | [diff] [blame] | 863 | "generic_sensor/sensor_provider_proxy_impl.cc", |
| 864 | "generic_sensor/sensor_provider_proxy_impl.h", |
Conley Owens | 47f4fbf1 | 2017-08-02 01:56:52 | [diff] [blame] | 865 | "geolocation/geolocation_service_impl.cc", |
| 866 | "geolocation/geolocation_service_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 867 | "gpu/browser_gpu_channel_host_factory.cc", |
| 868 | "gpu/browser_gpu_channel_host_factory.h", |
| 869 | "gpu/browser_gpu_memory_buffer_manager.cc", |
| 870 | "gpu/browser_gpu_memory_buffer_manager.h", |
| 871 | "gpu/compositor_util.cc", |
| 872 | "gpu/compositor_util.h", |
Scott Violet | 3c5af67 | 2018-05-01 18:24:26 | [diff] [blame] | 873 | "gpu/gpu_client_impl.cc", |
| 874 | "gpu/gpu_client_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 875 | "gpu/gpu_data_manager_impl.cc", |
| 876 | "gpu/gpu_data_manager_impl.h", |
| 877 | "gpu/gpu_data_manager_impl_private.cc", |
| 878 | "gpu/gpu_data_manager_impl_private.h", |
michaelpg | 67362b5 | 2017-02-15 06:18:27 | [diff] [blame] | 879 | "gpu/gpu_feature_checker_impl.cc", |
| 880 | "gpu/gpu_feature_checker_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 881 | "gpu/gpu_internals_ui.cc", |
| 882 | "gpu/gpu_internals_ui.h", |
tapted | 4091f2f | 2017-02-07 00:47:19 | [diff] [blame] | 883 | "gpu/gpu_main_thread_factory.cc", |
| 884 | "gpu/gpu_main_thread_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 885 | "gpu/gpu_process_host.cc", |
| 886 | "gpu/gpu_process_host.h", |
sadrul | 75d671b | 2016-12-13 06:14:39 | [diff] [blame] | 887 | "gpu/shader_cache_factory.cc", |
| 888 | "gpu/shader_cache_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 889 | "histogram_controller.cc", |
| 890 | "histogram_controller.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 891 | "histogram_subscriber.h", |
| 892 | "histogram_synchronizer.cc", |
| 893 | "histogram_synchronizer.h", |
Mathieu Perreault | 18170a4 | 2018-05-17 12:48:15 | [diff] [blame] | 894 | "histograms_internals_ui.cc", |
| 895 | "histograms_internals_ui.h", |
mcasas | 18de502 | 2017-03-10 22:45:50 | [diff] [blame] | 896 | "image_capture/image_capture_impl.cc", |
| 897 | "image_capture/image_capture_impl.h", |
reillyg | 39fb466 | 2016-11-22 20:27:17 | [diff] [blame] | 898 | "indexed_db/cursor_impl.cc", |
| 899 | "indexed_db/cursor_impl.h", |
reillyg | 963ec6df | 2016-11-05 01:10:58 | [diff] [blame] | 900 | "indexed_db/database_impl.cc", |
| 901 | "indexed_db/database_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 902 | "indexed_db/indexed_db.h", |
| 903 | "indexed_db/indexed_db_active_blob_registry.cc", |
| 904 | "indexed_db/indexed_db_active_blob_registry.h", |
| 905 | "indexed_db/indexed_db_backing_store.cc", |
| 906 | "indexed_db/indexed_db_backing_store.h", |
| 907 | "indexed_db/indexed_db_blob_info.cc", |
| 908 | "indexed_db/indexed_db_blob_info.h", |
| 909 | "indexed_db/indexed_db_callbacks.cc", |
| 910 | "indexed_db/indexed_db_callbacks.h", |
| 911 | "indexed_db/indexed_db_class_factory.cc", |
| 912 | "indexed_db/indexed_db_class_factory.h", |
| 913 | "indexed_db/indexed_db_connection.cc", |
| 914 | "indexed_db/indexed_db_connection.h", |
| 915 | "indexed_db/indexed_db_context_impl.cc", |
| 916 | "indexed_db/indexed_db_context_impl.h", |
| 917 | "indexed_db/indexed_db_cursor.cc", |
| 918 | "indexed_db/indexed_db_cursor.h", |
jbroman | 3ee0c8ab | 2017-04-20 14:25:03 | [diff] [blame] | 919 | "indexed_db/indexed_db_data_format_version.cc", |
| 920 | "indexed_db/indexed_db_data_format_version.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 921 | "indexed_db/indexed_db_data_loss_info.h", |
| 922 | "indexed_db/indexed_db_database.cc", |
| 923 | "indexed_db/indexed_db_database.h", |
| 924 | "indexed_db/indexed_db_database_callbacks.cc", |
| 925 | "indexed_db/indexed_db_database_callbacks.h", |
| 926 | "indexed_db/indexed_db_database_error.cc", |
| 927 | "indexed_db/indexed_db_database_error.h", |
| 928 | "indexed_db/indexed_db_dispatcher_host.cc", |
| 929 | "indexed_db/indexed_db_dispatcher_host.h", |
| 930 | "indexed_db/indexed_db_factory.h", |
| 931 | "indexed_db/indexed_db_factory_impl.cc", |
| 932 | "indexed_db/indexed_db_factory_impl.h", |
| 933 | "indexed_db/indexed_db_index_writer.cc", |
| 934 | "indexed_db/indexed_db_index_writer.h", |
| 935 | "indexed_db/indexed_db_internals_ui.cc", |
| 936 | "indexed_db/indexed_db_internals_ui.h", |
| 937 | "indexed_db/indexed_db_leveldb_coding.cc", |
| 938 | "indexed_db/indexed_db_leveldb_coding.h", |
Daniel Murphy | 532ef16 | 2017-10-04 20:12:43 | [diff] [blame] | 939 | "indexed_db/indexed_db_leveldb_operations.cc", |
| 940 | "indexed_db/indexed_db_leveldb_operations.h", |
Daniel Murphy | d36cedf | 2017-10-12 00:04:54 | [diff] [blame] | 941 | "indexed_db/indexed_db_metadata_coding.cc", |
| 942 | "indexed_db/indexed_db_metadata_coding.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 943 | "indexed_db/indexed_db_observer.cc", |
| 944 | "indexed_db/indexed_db_observer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 945 | "indexed_db/indexed_db_pending_connection.cc", |
| 946 | "indexed_db/indexed_db_pending_connection.h", |
Daniel Murphy | 66da98b | 2017-08-17 21:21:06 | [diff] [blame] | 947 | "indexed_db/indexed_db_pre_close_task_queue.cc", |
| 948 | "indexed_db/indexed_db_pre_close_task_queue.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 949 | "indexed_db/indexed_db_quota_client.cc", |
| 950 | "indexed_db/indexed_db_quota_client.h", |
Daniel Murphy | 532ef16 | 2017-10-04 20:12:43 | [diff] [blame] | 951 | "indexed_db/indexed_db_reporting.cc", |
| 952 | "indexed_db/indexed_db_reporting.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 953 | "indexed_db/indexed_db_return_value.h", |
Daniel Murphy | 66da98b | 2017-08-17 21:21:06 | [diff] [blame] | 954 | "indexed_db/indexed_db_tombstone_sweeper.cc", |
| 955 | "indexed_db/indexed_db_tombstone_sweeper.h", |
wychen | 589d05e | 2017-03-31 00:06:36 | [diff] [blame] | 956 | "indexed_db/indexed_db_tracing.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 957 | "indexed_db/indexed_db_transaction.cc", |
| 958 | "indexed_db/indexed_db_transaction.h", |
| 959 | "indexed_db/indexed_db_transaction_coordinator.cc", |
| 960 | "indexed_db/indexed_db_transaction_coordinator.h", |
| 961 | "indexed_db/indexed_db_value.cc", |
| 962 | "indexed_db/indexed_db_value.h", |
| 963 | "indexed_db/leveldb/leveldb_comparator.h", |
| 964 | "indexed_db/leveldb/leveldb_database.cc", |
| 965 | "indexed_db/leveldb/leveldb_database.h", |
| 966 | "indexed_db/leveldb/leveldb_env.cc", |
| 967 | "indexed_db/leveldb/leveldb_env.h", |
| 968 | "indexed_db/leveldb/leveldb_factory.h", |
dmurph | ec76405 | 2017-03-27 23:12:47 | [diff] [blame] | 969 | "indexed_db/leveldb/leveldb_iterator.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 970 | "indexed_db/leveldb/leveldb_iterator.h", |
| 971 | "indexed_db/leveldb/leveldb_iterator_impl.cc", |
| 972 | "indexed_db/leveldb/leveldb_iterator_impl.h", |
| 973 | "indexed_db/leveldb/leveldb_transaction.cc", |
| 974 | "indexed_db/leveldb/leveldb_transaction.h", |
| 975 | "indexed_db/leveldb/leveldb_write_batch.cc", |
| 976 | "indexed_db/leveldb/leveldb_write_batch.h", |
wychen | 589d05e | 2017-03-31 00:06:36 | [diff] [blame] | 977 | "indexed_db/list_set.h", |
Andy Paicu | cd1e4e0 | 2018-05-16 09:59:20 | [diff] [blame] | 978 | "initiator_csp_context.cc", |
| 979 | "initiator_csp_context.h", |
mgiuca | 35f4c715 | 2017-03-14 08:30:30 | [diff] [blame] | 980 | "installedapp/installed_app_provider_impl_default.cc", |
| 981 | "installedapp/installed_app_provider_impl_default.h", |
Sam McNally | b37168ae | 2017-10-24 06:39:20 | [diff] [blame] | 982 | "interface_provider_filtering.cc", |
| 983 | "interface_provider_filtering.h", |
alexmos | 4bc2632 | 2017-07-01 00:57:14 | [diff] [blame] | 984 | "isolated_origin_util.cc", |
| 985 | "isolated_origin_util.h", |
Joe Downing | c1a57efe | 2018-05-09 18:23:54 | [diff] [blame] | 986 | "keyboard_lock/keyboard_lock_metrics.h", |
zijiehe | 6016778 | 2017-04-28 22:31:02 | [diff] [blame] | 987 | "keyboard_lock/keyboard_lock_service_impl.cc", |
| 988 | "keyboard_lock/keyboard_lock_service_impl.h", |
Charles Reis | 358baf47 | 2017-12-06 05:30:43 | [diff] [blame] | 989 | "loader/cross_site_document_resource_handler.cc", |
| 990 | "loader/cross_site_document_resource_handler.h", |
Kinuko Yasuda | aa4534d7 | 2018-02-01 09:49:46 | [diff] [blame] | 991 | "loader/data_pipe_to_source_stream.cc", |
| 992 | "loader/data_pipe_to_source_stream.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 993 | "loader/detachable_resource_handler.cc", |
| 994 | "loader/detachable_resource_handler.h", |
Robbie McElrath | a5adc4e | 2018-07-03 23:53:09 | [diff] [blame] | 995 | "loader/download_utils_impl.cc", |
| 996 | "loader/download_utils_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 997 | "loader/global_routing_id.h", |
| 998 | "loader/intercepting_resource_handler.cc", |
| 999 | "loader/intercepting_resource_handler.h", |
| 1000 | "loader/layered_resource_handler.cc", |
| 1001 | "loader/layered_resource_handler.h", |
| 1002 | "loader/loader_delegate.h", |
| 1003 | "loader/loader_io_thread_notifier.cc", |
| 1004 | "loader/loader_io_thread_notifier.h", |
Kunihiko Sakamoto | 101743d | 2018-01-31 04:40:53 | [diff] [blame] | 1005 | "loader/merkle_integrity_source_stream.cc", |
| 1006 | "loader/merkle_integrity_source_stream.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1007 | "loader/mime_sniffing_resource_handler.cc", |
| 1008 | "loader/mime_sniffing_resource_handler.h", |
| 1009 | "loader/mojo_async_resource_handler.cc", |
| 1010 | "loader/mojo_async_resource_handler.h", |
Kinuko Yasuda | 7f3e172 | 2018-03-26 08:58:58 | [diff] [blame] | 1011 | "loader/navigation_loader_interceptor.cc", |
| 1012 | "loader/navigation_loader_interceptor.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1013 | "loader/navigation_url_loader.cc", |
| 1014 | "loader/navigation_url_loader.h", |
| 1015 | "loader/navigation_url_loader_delegate.h", |
| 1016 | "loader/navigation_url_loader_factory.h", |
arthursonzogni | 1fd60e6 | 2018-05-09 15:57:32 | [diff] [blame] | 1017 | "loader/navigation_url_loader_impl.cc", |
| 1018 | "loader/navigation_url_loader_impl.h", |
mmenke | 87f5c77a | 2017-01-31 16:11:26 | [diff] [blame] | 1019 | "loader/null_resource_controller.cc", |
| 1020 | "loader/null_resource_controller.h", |
Kinuko Yasuda | db67b53 | 2018-02-19 09:11:52 | [diff] [blame] | 1021 | "loader/prefetch_url_loader.cc", |
| 1022 | "loader/prefetch_url_loader.h", |
Kinuko Yasuda | eeae697 | 2018-02-20 08:38:11 | [diff] [blame] | 1023 | "loader/prefetch_url_loader_service.cc", |
| 1024 | "loader/prefetch_url_loader_service.h", |
tyoshino | 3b3ee8e9 | 2016-12-07 16:04:07 | [diff] [blame] | 1025 | "loader/resource_controller.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1026 | "loader/resource_dispatcher_host_impl.cc", |
| 1027 | "loader/resource_dispatcher_host_impl.h", |
| 1028 | "loader/resource_handler.cc", |
| 1029 | "loader/resource_handler.h", |
| 1030 | "loader/resource_hints_impl.cc", |
| 1031 | "loader/resource_loader.cc", |
| 1032 | "loader/resource_loader.h", |
| 1033 | "loader/resource_loader_delegate.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1034 | "loader/resource_message_filter.cc", |
| 1035 | "loader/resource_message_filter.h", |
| 1036 | "loader/resource_request_info_impl.cc", |
| 1037 | "loader/resource_request_info_impl.h", |
horo | 227286f7 | 2016-11-29 11:10:33 | [diff] [blame] | 1038 | "loader/resource_requester_info.cc", |
| 1039 | "loader/resource_requester_info.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1040 | "loader/resource_scheduler_filter.cc", |
| 1041 | "loader/resource_scheduler_filter.h", |
Kinuko Yasuda | aa4534d7 | 2018-02-01 09:49:46 | [diff] [blame] | 1042 | "loader/source_stream_to_data_pipe.cc", |
| 1043 | "loader/source_stream_to_data_pipe.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1044 | "loader/stream_resource_handler.cc", |
| 1045 | "loader/stream_resource_handler.h", |
| 1046 | "loader/stream_writer.cc", |
| 1047 | "loader/stream_writer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1048 | "loader/throttling_resource_handler.cc", |
| 1049 | "loader/throttling_resource_handler.h", |
| 1050 | "loader/upload_data_stream_builder.cc", |
| 1051 | "loader/upload_data_stream_builder.h", |
| 1052 | "loader/url_loader_factory_impl.cc", |
| 1053 | "loader/url_loader_factory_impl.h", |
ke.he | 91eabe2 | 2017-05-19 04:02:11 | [diff] [blame] | 1054 | "loader/wake_lock_resource_throttle.cc", |
| 1055 | "loader/wake_lock_resource_throttle.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1056 | "loader_delegate_impl.cc", |
| 1057 | "loader_delegate_impl.h", |
Joshua Bell | fdfe23e | 2017-12-07 19:54:34 | [diff] [blame] | 1058 | "locks/lock_manager.cc", |
| 1059 | "locks/lock_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1060 | "mach_broker_mac.h", |
| 1061 | "mach_broker_mac.mm", |
jinho.bang | 84cadc8 | 2017-06-14 16:59:34 | [diff] [blame] | 1062 | "manifest/manifest_icon_downloader.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1063 | "manifest/manifest_manager_host.cc", |
| 1064 | "manifest/manifest_manager_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1065 | "media/android/browser_media_player_manager.cc", |
| 1066 | "media/android/browser_media_player_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1067 | "media/android/browser_surface_view_manager.cc", |
| 1068 | "media/android/browser_surface_view_manager.h", |
| 1069 | "media/android/media_player_renderer.cc", |
| 1070 | "media/android/media_player_renderer.h", |
Tommy Steimel | 0325da8 | 2017-10-17 02:35:28 | [diff] [blame] | 1071 | "media/android/media_player_renderer_web_contents_observer.cc", |
| 1072 | "media/android/media_player_renderer_web_contents_observer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1073 | "media/android/media_resource_getter_impl.cc", |
| 1074 | "media/android/media_resource_getter_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1075 | "media/android/media_web_contents_observer_android.cc", |
| 1076 | "media/android/media_web_contents_observer_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1077 | "media/audible_metrics.cc", |
| 1078 | "media/audible_metrics.h", |
Marina Ciocea | 003ff60f | 2018-05-07 11:51:33 | [diff] [blame] | 1079 | "media/audio_input_stream_broker.cc", |
| 1080 | "media/audio_input_stream_broker.h", |
Guido Urdaneta | ee6cfd0 | 2018-07-12 09:19:34 | [diff] [blame] | 1081 | "media/audio_log_factory.cc", |
| 1082 | "media/audio_log_factory.h", |
Olga Sharonova | 2ebc174 | 2018-05-15 12:39:19 | [diff] [blame] | 1083 | "media/audio_loopback_stream_broker.cc", |
| 1084 | "media/audio_loopback_stream_broker.h", |
| 1085 | "media/audio_muting_session.cc", |
| 1086 | "media/audio_muting_session.h", |
Max Morin | a3e13eb | 2018-05-02 09:26:05 | [diff] [blame] | 1087 | "media/audio_output_stream_broker.cc", |
| 1088 | "media/audio_output_stream_broker.h", |
| 1089 | "media/audio_stream_broker.cc", |
| 1090 | "media/audio_stream_broker.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1091 | "media/audio_stream_monitor.cc", |
| 1092 | "media/audio_stream_monitor.h", |
| 1093 | "media/capture/audio_mirroring_manager.cc", |
| 1094 | "media/capture/audio_mirroring_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1095 | "media/capture/desktop_capture_device_uma_types.cc", |
| 1096 | "media/capture/desktop_capture_device_uma_types.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1097 | "media/capture/web_contents_audio_input_stream.cc", |
| 1098 | "media/capture/web_contents_audio_input_stream.h", |
| 1099 | "media/capture/web_contents_audio_muter.cc", |
| 1100 | "media/capture/web_contents_audio_muter.h", |
| 1101 | "media/capture/web_contents_tracker.cc", |
| 1102 | "media/capture/web_contents_tracker.h", |
xhwang | 5ba56be | 2016-12-13 07:13:03 | [diff] [blame] | 1103 | "media/cdm_registry_impl.cc", |
| 1104 | "media/cdm_registry_impl.h", |
Thomas Guilbert | 130188c17 | 2018-04-18 20:10:18 | [diff] [blame] | 1105 | "media/flinging_renderer.cc", |
| 1106 | "media/flinging_renderer.h", |
Max Morin | a3e13eb | 2018-05-02 09:26:05 | [diff] [blame] | 1107 | "media/forwarding_audio_stream_factory.cc", |
| 1108 | "media/forwarding_audio_stream_factory.h", |
guidou | df036b3 | 2016-10-31 14:51:14 | [diff] [blame] | 1109 | "media/media_devices_permission_checker.cc", |
| 1110 | "media/media_devices_permission_checker.h", |
guidou | 8a440b84 | 2017-01-30 13:58:43 | [diff] [blame] | 1111 | "media/media_devices_util.cc", |
| 1112 | "media/media_devices_util.h", |
xhwang | aa0bf6d | 2016-12-03 01:19:15 | [diff] [blame] | 1113 | "media/media_interface_proxy.cc", |
| 1114 | "media/media_interface_proxy.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1115 | "media/media_internals.cc", |
| 1116 | "media/media_internals.h", |
| 1117 | "media/media_internals_handler.cc", |
| 1118 | "media/media_internals_handler.h", |
| 1119 | "media/media_internals_proxy.cc", |
| 1120 | "media/media_internals_proxy.h", |
| 1121 | "media/media_internals_ui.cc", |
| 1122 | "media/media_internals_ui.h", |
| 1123 | "media/media_web_contents_observer.cc", |
| 1124 | "media/media_web_contents_observer.h", |
| 1125 | "media/midi_host.cc", |
| 1126 | "media/midi_host.h", |
zqzhang | a2147f8 | 2016-10-18 22:53:26 | [diff] [blame] | 1127 | "media/session/audio_focus_delegate.h", |
| 1128 | "media/session/audio_focus_delegate_android.cc", |
| 1129 | "media/session/audio_focus_delegate_android.h", |
| 1130 | "media/session/audio_focus_delegate_default.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1131 | "media/session/audio_focus_manager.cc", |
| 1132 | "media/session/audio_focus_manager.h", |
zqzhang | d84e7287 | 2016-10-07 19:22:03 | [diff] [blame] | 1133 | "media/session/media_metadata_sanitizer.cc", |
| 1134 | "media/session/media_metadata_sanitizer.h", |
zqzhang | 1adf3cb | 2016-11-01 11:26:45 | [diff] [blame] | 1135 | "media/session/media_session_android.cc", |
| 1136 | "media/session/media_session_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1137 | "media/session/media_session_controller.cc", |
| 1138 | "media/session/media_session_controller.h", |
| 1139 | "media/session/media_session_controllers_manager.cc", |
| 1140 | "media/session/media_session_controllers_manager.h", |
zqzhang | 1adf3cb | 2016-11-01 11:26:45 | [diff] [blame] | 1141 | "media/session/media_session_impl.cc", |
| 1142 | "media/session/media_session_impl.h", |
zqzhang | a2147f8 | 2016-10-18 22:53:26 | [diff] [blame] | 1143 | "media/session/media_session_player_observer.h", |
zqzhang | d84e7287 | 2016-10-07 19:22:03 | [diff] [blame] | 1144 | "media/session/media_session_service_impl.cc", |
| 1145 | "media/session/media_session_service_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1146 | "media/session/media_session_uma_helper.cc", |
| 1147 | "media/session/media_session_uma_helper.h", |
slan | a0da430 | 2016-11-07 17:37:01 | [diff] [blame] | 1148 | "media/url_provision_fetcher.cc", |
| 1149 | "media/url_provision_fetcher.h", |
bashi | 810232f5 | 2017-03-03 04:38:02 | [diff] [blame] | 1150 | "memory/memory_condition_observer.cc", |
| 1151 | "memory/memory_condition_observer.h", |
bashi | c5106fd | 2017-05-12 09:38:32 | [diff] [blame] | 1152 | "memory/memory_coordinator_default_policy.cc", |
| 1153 | "memory/memory_coordinator_default_policy.h", |
bashi | 529cb14c | 2016-10-17 21:53:57 | [diff] [blame] | 1154 | "memory/memory_coordinator_impl.cc", |
| 1155 | "memory/memory_coordinator_impl.h", |
bashi | a626404 | 2016-09-15 04:49:51 | [diff] [blame] | 1156 | "memory/memory_monitor.cc", |
| 1157 | "memory/memory_monitor.h", |
bashi | 6626414 | 2016-09-27 06:26:40 | [diff] [blame] | 1158 | "memory/memory_monitor_android.cc", |
| 1159 | "memory/memory_monitor_android.h", |
bashi | a626404 | 2016-09-15 04:49:51 | [diff] [blame] | 1160 | "memory/memory_monitor_win.cc", |
| 1161 | "memory/memory_monitor_win.h", |
Scott Haseley | 7a02fce | 2017-08-01 21:55:01 | [diff] [blame] | 1162 | "memory/swap_metrics_delegate_uma.cc", |
| 1163 | "memory/swap_metrics_delegate_uma.h", |
| 1164 | "memory/swap_metrics_driver_impl.cc", |
| 1165 | "memory/swap_metrics_driver_impl.h", |
| 1166 | "memory/swap_metrics_driver_impl_linux.cc", |
| 1167 | "memory/swap_metrics_driver_impl_linux.h", |
| 1168 | "memory/swap_metrics_driver_impl_mac.cc", |
| 1169 | "memory/swap_metrics_driver_impl_mac.h", |
| 1170 | "memory/swap_metrics_driver_impl_win.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1171 | "message_port_provider.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1172 | "mime_registry_impl.cc", |
| 1173 | "mime_registry_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1174 | "net/browser_online_state_observer.cc", |
| 1175 | "net/browser_online_state_observer.h", |
| 1176 | "net/network_errors_listing_ui.cc", |
| 1177 | "net/network_errors_listing_ui.h", |
tbansal | 15973c3 | 2017-05-10 18:40:44 | [diff] [blame] | 1178 | "net/network_quality_observer_impl.cc", |
| 1179 | "net/network_quality_observer_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1180 | "net/quota_policy_cookie_store.cc", |
| 1181 | "net/quota_policy_cookie_store.h", |
| 1182 | "net/view_blob_internals_job_factory.cc", |
| 1183 | "net/view_blob_internals_job_factory.h", |
John Abd-El-Malek | 576c613 | 2017-11-04 00:33:58 | [diff] [blame] | 1184 | "network_service_client.cc", |
| 1185 | "network_service_client.h", |
John Abd-El-Malek | deec008 | 2017-12-20 20:47:47 | [diff] [blame] | 1186 | "network_service_instance.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1187 | "notification_service_impl.cc", |
| 1188 | "notification_service_impl.h", |
| 1189 | "notifications/blink_notification_service_impl.cc", |
| 1190 | "notifications/blink_notification_service_impl.h", |
| 1191 | "notifications/notification_database.cc", |
| 1192 | "notifications/notification_database.h", |
| 1193 | "notifications/notification_database_data_conversions.cc", |
| 1194 | "notifications/notification_database_data_conversions.h", |
| 1195 | "notifications/notification_event_dispatcher_impl.cc", |
| 1196 | "notifications/notification_event_dispatcher_impl.h", |
| 1197 | "notifications/notification_id_generator.cc", |
| 1198 | "notifications/notification_id_generator.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1199 | "notifications/platform_notification_context_impl.cc", |
| 1200 | "notifications/platform_notification_context_impl.h", |
jinho.bang | 745d987b | 2016-12-14 19:06:54 | [diff] [blame] | 1201 | "payments/payment_app_context_impl.cc", |
| 1202 | "payments/payment_app_context_impl.h", |
jinho.bang | ab43057 | 2016-12-16 14:33:58 | [diff] [blame] | 1203 | "payments/payment_app_database.cc", |
| 1204 | "payments/payment_app_database.h", |
gogerald | 70b9dcb | 2017-07-05 05:28:49 | [diff] [blame] | 1205 | "payments/payment_app_info_fetcher.cc", |
| 1206 | "payments/payment_app_info_fetcher.h", |
gogerald | 84ae626 | 2018-02-06 06:21:46 | [diff] [blame] | 1207 | "payments/payment_app_installer.cc", |
| 1208 | "payments/payment_app_installer.h", |
jinho.bang | ac34b3a3 | 2017-01-05 12:51:21 | [diff] [blame] | 1209 | "payments/payment_app_provider_impl.cc", |
| 1210 | "payments/payment_app_provider_impl.h", |
gogerald | d8c5af34 | 2017-06-14 02:22:36 | [diff] [blame] | 1211 | "payments/payment_instrument_icon_fetcher.cc", |
| 1212 | "payments/payment_instrument_icon_fetcher.h", |
jinho.bang | bbb00c3 | 2017-03-30 15:09:09 | [diff] [blame] | 1213 | "payments/payment_manager.cc", |
| 1214 | "payments/payment_manager.h", |
Andrey Lushnikov | ebff044 | 2018-07-12 20:02:58 | [diff] [blame^] | 1215 | "permissions/permission_controller_impl.cc", |
| 1216 | "permissions/permission_controller_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1217 | "permissions/permission_service_context.cc", |
| 1218 | "permissions/permission_service_context.h", |
| 1219 | "permissions/permission_service_impl.cc", |
| 1220 | "permissions/permission_service_impl.h", |
Jennifer Apacible | 4f854a8 | 2018-04-06 22:22:11 | [diff] [blame] | 1221 | "picture_in_picture/overlay_surface_embedder.cc", |
| 1222 | "picture_in_picture/overlay_surface_embedder.h", |
| 1223 | "picture_in_picture/picture_in_picture_window_controller_impl.cc", |
| 1224 | "picture_in_picture/picture_in_picture_window_controller_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1225 | "presentation/presentation_service_impl.cc", |
| 1226 | "presentation/presentation_service_impl.h", |
Nasko Oskov | 3e19fbd | 2018-06-13 00:13:29 | [diff] [blame] | 1227 | "process_internals/process_internals_handler_impl.cc", |
| 1228 | "process_internals/process_internals_handler_impl.h", |
| 1229 | "process_internals/process_internals_ui.cc", |
| 1230 | "process_internals/process_internals_ui.h", |
awdf | 5f7440c | 2017-01-09 12:38:56 | [diff] [blame] | 1231 | "push_messaging/push_messaging_context.cc", |
| 1232 | "push_messaging/push_messaging_context.h", |
ke.he | 5f426e32 | 2017-02-22 12:37:12 | [diff] [blame] | 1233 | "push_messaging/push_messaging_manager.cc", |
| 1234 | "push_messaging/push_messaging_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1235 | "push_messaging/push_messaging_router.cc", |
| 1236 | "push_messaging/push_messaging_router.h", |
| 1237 | "quota_dispatcher_host.cc", |
| 1238 | "quota_dispatcher_host.h", |
Stuart Langley | e830001 | 2017-11-24 01:16:18 | [diff] [blame] | 1239 | "renderer_host/clipboard_host_impl.cc", |
| 1240 | "renderer_host/clipboard_host_impl.h", |
| 1241 | "renderer_host/clipboard_host_impl_mac.mm", |
Ken Buchanan | 520f29c | 2017-07-13 23:29:51 | [diff] [blame] | 1242 | "renderer_host/cursor_manager.cc", |
| 1243 | "renderer_host/cursor_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1244 | "renderer_host/dip_util.cc", |
| 1245 | "renderer_host/dip_util.h", |
Christopher Cameron | fb701e10 | 2018-02-13 19:32:23 | [diff] [blame] | 1246 | "renderer_host/display_util.cc", |
| 1247 | "renderer_host/display_util.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1248 | "renderer_host/dwrite_font_proxy_message_filter_win.cc", |
| 1249 | "renderer_host/dwrite_font_proxy_message_filter_win.h", |
kylechar | c576df7 | 2018-05-02 18:57:35 | [diff] [blame] | 1250 | "renderer_host/embedded_frame_sink_impl.cc", |
| 1251 | "renderer_host/embedded_frame_sink_impl.h", |
| 1252 | "renderer_host/embedded_frame_sink_provider_impl.cc", |
| 1253 | "renderer_host/embedded_frame_sink_provider_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1254 | "renderer_host/event_with_latency_info.h", |
Stuart Langley | e6f32c59 | 2017-09-27 04:35:18 | [diff] [blame] | 1255 | "renderer_host/file_utilities_host_impl.cc", |
| 1256 | "renderer_host/file_utilities_host_impl.h", |
Ken Buchanan | daef006b | 2017-08-17 18:32:15 | [diff] [blame] | 1257 | "renderer_host/frame_connector_delegate.cc", |
| 1258 | "renderer_host/frame_connector_delegate.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1259 | "renderer_host/frame_metadata_util.cc", |
| 1260 | "renderer_host/frame_metadata_util.h", |
samans | 2040988b | 2017-04-11 23:58:35 | [diff] [blame] | 1261 | "renderer_host/frame_sink_provider_impl.cc", |
| 1262 | "renderer_host/frame_sink_provider_impl.h", |
jonross | 20fecc46 | 2018-02-23 05:32:21 | [diff] [blame] | 1263 | "renderer_host/frame_token_message_queue.cc", |
| 1264 | "renderer_host/frame_token_message_queue.h", |
Sahel Sharify | 0b47aa6 | 2017-08-22 21:24:08 | [diff] [blame] | 1265 | "renderer_host/input/fling_controller.cc", |
| 1266 | "renderer_host/input/fling_controller.h", |
Sahel Sharify | 9e8570d | 2018-05-09 14:15:39 | [diff] [blame] | 1267 | "renderer_host/input/fling_scheduler.cc", |
| 1268 | "renderer_host/input/fling_scheduler.h", |
Saman Sami | 7d53de12 | 2018-06-11 23:58:30 | [diff] [blame] | 1269 | "renderer_host/input/fling_scheduler_base.h", |
Sahel Sharify | 9e8570d | 2018-05-09 14:15:39 | [diff] [blame] | 1270 | "renderer_host/input/fling_scheduler_mac.h", |
| 1271 | "renderer_host/input/fling_scheduler_mac.mm", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1272 | "renderer_host/input/gesture_event_queue.cc", |
| 1273 | "renderer_host/input/gesture_event_queue.h", |
alexis.menard | b12ba34 | 2017-04-15 09:01:19 | [diff] [blame] | 1274 | "renderer_host/input/input_device_change_observer.cc", |
| 1275 | "renderer_host/input/input_device_change_observer.h", |
Hayley Ferr | bb5c015 | 2017-07-27 22:57:19 | [diff] [blame] | 1276 | "renderer_host/input/input_disposition_handler.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1277 | "renderer_host/input/input_router.h", |
| 1278 | "renderer_host/input/input_router_client.h", |
| 1279 | "renderer_host/input/input_router_config_helper.cc", |
| 1280 | "renderer_host/input/input_router_config_helper.h", |
Dave Tapuska | 8a11233 | 2017-07-24 17:23:18 | [diff] [blame] | 1281 | "renderer_host/input/input_router_impl.cc", |
| 1282 | "renderer_host/input/input_router_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1283 | "renderer_host/input/motion_event_web.cc", |
| 1284 | "renderer_host/input/motion_event_web.h", |
| 1285 | "renderer_host/input/mouse_wheel_event_queue.cc", |
| 1286 | "renderer_host/input/mouse_wheel_event_queue.h", |
sahel | 09de0d01 | 2017-06-07 16:09:44 | [diff] [blame] | 1287 | "renderer_host/input/mouse_wheel_phase_handler.cc", |
| 1288 | "renderer_host/input/mouse_wheel_phase_handler.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1289 | "renderer_host/input/mouse_wheel_rails_filter_mac.cc", |
| 1290 | "renderer_host/input/mouse_wheel_rails_filter_mac.h", |
Ken Buchanan | 2d3141fd | 2018-01-17 23:08:39 | [diff] [blame] | 1291 | "renderer_host/input/one_shot_timeout_monitor.cc", |
| 1292 | "renderer_host/input/one_shot_timeout_monitor.h", |
dtapuska | 53f9f4ee | 2017-02-27 01:14:26 | [diff] [blame] | 1293 | "renderer_host/input/passthrough_touch_event_queue.cc", |
| 1294 | "renderer_host/input/passthrough_touch_event_queue.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1295 | "renderer_host/input/render_widget_host_latency_tracker.cc", |
| 1296 | "renderer_host/input/render_widget_host_latency_tracker.h", |
| 1297 | "renderer_host/input/stylus_text_selector.cc", |
| 1298 | "renderer_host/input/stylus_text_selector.h", |
| 1299 | "renderer_host/input/synthetic_gesture.cc", |
| 1300 | "renderer_host/input/synthetic_gesture.h", |
| 1301 | "renderer_host/input/synthetic_gesture_controller.cc", |
| 1302 | "renderer_host/input/synthetic_gesture_controller.h", |
| 1303 | "renderer_host/input/synthetic_gesture_target.h", |
| 1304 | "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 1305 | "renderer_host/input/synthetic_gesture_target_aura.h", |
| 1306 | "renderer_host/input/synthetic_gesture_target_base.cc", |
| 1307 | "renderer_host/input/synthetic_gesture_target_base.h", |
| 1308 | "renderer_host/input/synthetic_gesture_target_mac.h", |
| 1309 | "renderer_host/input/synthetic_gesture_target_mac.mm", |
lanwei | 1060f1f | 2016-11-28 23:00:31 | [diff] [blame] | 1310 | "renderer_host/input/synthetic_mouse_driver.cc", |
| 1311 | "renderer_host/input/synthetic_mouse_driver.h", |
lanwei | d7de40d1 | 2017-01-26 22:52:19 | [diff] [blame] | 1312 | "renderer_host/input/synthetic_pen_driver.cc", |
| 1313 | "renderer_host/input/synthetic_pen_driver.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1314 | "renderer_host/input/synthetic_pinch_gesture.cc", |
| 1315 | "renderer_host/input/synthetic_pinch_gesture.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1316 | "renderer_host/input/synthetic_pointer_action.cc", |
| 1317 | "renderer_host/input/synthetic_pointer_action.h", |
lanwei | 1060f1f | 2016-11-28 23:00:31 | [diff] [blame] | 1318 | "renderer_host/input/synthetic_pointer_driver.cc", |
| 1319 | "renderer_host/input/synthetic_pointer_driver.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1320 | "renderer_host/input/synthetic_smooth_drag_gesture.cc", |
| 1321 | "renderer_host/input/synthetic_smooth_drag_gesture.h", |
| 1322 | "renderer_host/input/synthetic_smooth_move_gesture.cc", |
| 1323 | "renderer_host/input/synthetic_smooth_move_gesture.h", |
| 1324 | "renderer_host/input/synthetic_smooth_scroll_gesture.cc", |
| 1325 | "renderer_host/input/synthetic_smooth_scroll_gesture.h", |
| 1326 | "renderer_host/input/synthetic_tap_gesture.cc", |
| 1327 | "renderer_host/input/synthetic_tap_gesture.h", |
lanwei | 1060f1f | 2016-11-28 23:00:31 | [diff] [blame] | 1328 | "renderer_host/input/synthetic_touch_driver.cc", |
| 1329 | "renderer_host/input/synthetic_touch_driver.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1330 | "renderer_host/input/synthetic_touchpad_pinch_gesture.cc", |
| 1331 | "renderer_host/input/synthetic_touchpad_pinch_gesture.h", |
| 1332 | "renderer_host/input/synthetic_touchscreen_pinch_gesture.cc", |
| 1333 | "renderer_host/input/synthetic_touchscreen_pinch_gesture.h", |
| 1334 | "renderer_host/input/tap_suppression_controller.cc", |
| 1335 | "renderer_host/input/tap_suppression_controller.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1336 | "renderer_host/input/timeout_monitor.cc", |
| 1337 | "renderer_host/input/timeout_monitor.h", |
| 1338 | "renderer_host/input/touch_action_filter.cc", |
| 1339 | "renderer_host/input/touch_action_filter.h", |
| 1340 | "renderer_host/input/touch_emulator.cc", |
| 1341 | "renderer_host/input/touch_emulator.h", |
| 1342 | "renderer_host/input/touch_emulator_client.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1343 | "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 1344 | "renderer_host/input/touch_selection_controller_client_aura.h", |
wjmaclean | 9a65831 | 2017-05-25 17:03:57 | [diff] [blame] | 1345 | "renderer_host/input/touch_selection_controller_client_child_frame.cc", |
| 1346 | "renderer_host/input/touch_selection_controller_client_child_frame.h", |
dtapuska | 48fd5b9 | 2017-02-22 15:16:04 | [diff] [blame] | 1347 | "renderer_host/input/touch_timeout_handler.cc", |
| 1348 | "renderer_host/input/touch_timeout_handler.h", |
Kevin McNee | 297980d | 2018-06-04 21:32:14 | [diff] [blame] | 1349 | "renderer_host/input/touchpad_pinch_event_queue.cc", |
| 1350 | "renderer_host/input/touchpad_pinch_event_queue.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1351 | "renderer_host/input/touchpad_tap_suppression_controller.cc", |
| 1352 | "renderer_host/input/touchpad_tap_suppression_controller.h", |
| 1353 | "renderer_host/input/touchscreen_tap_suppression_controller.cc", |
| 1354 | "renderer_host/input/touchscreen_tap_suppression_controller.h", |
| 1355 | "renderer_host/input/web_input_event_builders_android.cc", |
| 1356 | "renderer_host/input/web_input_event_builders_android.h", |
| 1357 | "renderer_host/input/web_input_event_builders_mac.h", |
| 1358 | "renderer_host/input/web_input_event_builders_mac.mm", |
| 1359 | "renderer_host/legacy_render_widget_host_win.cc", |
| 1360 | "renderer_host/legacy_render_widget_host_win.h", |
Max Morin | fbcab29 | 2017-10-20 09:57:12 | [diff] [blame] | 1361 | "renderer_host/media/audio_input_delegate_impl.cc", |
| 1362 | "renderer_host/media/audio_input_delegate_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1363 | "renderer_host/media/audio_input_device_manager.cc", |
| 1364 | "renderer_host/media/audio_input_device_manager.h", |
Max Morin | 70fb1d6 | 2017-12-14 07:52:29 | [diff] [blame] | 1365 | "renderer_host/media/audio_input_stream_handle.cc", |
| 1366 | "renderer_host/media/audio_input_stream_handle.h", |
maxmorin | b08e842 | 2016-11-18 09:34:01 | [diff] [blame] | 1367 | "renderer_host/media/audio_output_authorization_handler.cc", |
| 1368 | "renderer_host/media/audio_output_authorization_handler.h", |
maxmorin | 5d6f36b | 2017-02-01 08:51:21 | [diff] [blame] | 1369 | "renderer_host/media/audio_output_delegate_impl.cc", |
| 1370 | "renderer_host/media/audio_output_delegate_impl.h", |
Guido Urdaneta | a79f734 | 2017-12-01 23:16:10 | [diff] [blame] | 1371 | "renderer_host/media/audio_output_stream_observer_impl.cc", |
| 1372 | "renderer_host/media/audio_output_stream_observer_impl.h", |
Marina Ciocea | 0dc6c40 | 2018-05-18 18:44:27 | [diff] [blame] | 1373 | "renderer_host/media/audio_service_listener.cc", |
| 1374 | "renderer_host/media/audio_service_listener.h", |
chfremer | c914815 | 2017-04-17 17:10:26 | [diff] [blame] | 1375 | "renderer_host/media/in_process_launched_video_capture_device.cc", |
| 1376 | "renderer_host/media/in_process_launched_video_capture_device.h", |
| 1377 | "renderer_host/media/in_process_video_capture_device_launcher.cc", |
| 1378 | "renderer_host/media/in_process_video_capture_device_launcher.h", |
chfremer | 3b09981 | 2017-04-11 17:30:50 | [diff] [blame] | 1379 | "renderer_host/media/in_process_video_capture_provider.cc", |
| 1380 | "renderer_host/media/in_process_video_capture_provider.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1381 | "renderer_host/media/media_capture_devices_impl.cc", |
| 1382 | "renderer_host/media/media_capture_devices_impl.h", |
guidou | 9357cc5 | 2016-10-11 19:53:36 | [diff] [blame] | 1383 | "renderer_host/media/media_devices_dispatcher_host.cc", |
| 1384 | "renderer_host/media/media_devices_dispatcher_host.h", |
guidou | cc6d460 | 2016-09-23 21:28:43 | [diff] [blame] | 1385 | "renderer_host/media/media_devices_manager.cc", |
| 1386 | "renderer_host/media/media_devices_manager.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1387 | "renderer_host/media/media_stream_dispatcher_host.cc", |
| 1388 | "renderer_host/media/media_stream_dispatcher_host.h", |
| 1389 | "renderer_host/media/media_stream_manager.cc", |
| 1390 | "renderer_host/media/media_stream_manager.h", |
| 1391 | "renderer_host/media/media_stream_provider.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1392 | "renderer_host/media/media_stream_track_metrics_host.cc", |
| 1393 | "renderer_host/media/media_stream_track_metrics_host.h", |
| 1394 | "renderer_host/media/media_stream_ui_proxy.cc", |
| 1395 | "renderer_host/media/media_stream_ui_proxy.h", |
Max Morin | 7f99801 | 2018-05-11 17:45:40 | [diff] [blame] | 1396 | "renderer_host/media/old_render_frame_audio_input_stream_factory.cc", |
| 1397 | "renderer_host/media/old_render_frame_audio_input_stream_factory.h", |
Max Morin | 59f892f | 2018-05-10 10:55:21 | [diff] [blame] | 1398 | "renderer_host/media/old_render_frame_audio_output_stream_factory.cc", |
| 1399 | "renderer_host/media/old_render_frame_audio_output_stream_factory.h", |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 1400 | "renderer_host/media/peer_connection_tracker_host.cc", |
| 1401 | "renderer_host/media/peer_connection_tracker_host.h", |
Max Morin | 70fb1d6 | 2017-12-14 07:52:29 | [diff] [blame] | 1402 | "renderer_host/media/render_frame_audio_input_stream_factory.cc", |
| 1403 | "renderer_host/media/render_frame_audio_input_stream_factory.h", |
maxmorin | 2781f5ff | 2017-04-04 08:29:41 | [diff] [blame] | 1404 | "renderer_host/media/render_frame_audio_output_stream_factory.cc", |
| 1405 | "renderer_host/media/render_frame_audio_output_stream_factory.h", |
| 1406 | "renderer_host/media/renderer_audio_output_stream_factory_context.h", |
| 1407 | "renderer_host/media/renderer_audio_output_stream_factory_context_impl.cc", |
| 1408 | "renderer_host/media/renderer_audio_output_stream_factory_context_impl.h", |
chfremer | 70b40e512 | 2017-05-23 15:13:57 | [diff] [blame] | 1409 | "renderer_host/media/service_launched_video_capture_device.cc", |
| 1410 | "renderer_host/media/service_launched_video_capture_device.h", |
| 1411 | "renderer_host/media/service_video_capture_device_launcher.cc", |
| 1412 | "renderer_host/media/service_video_capture_device_launcher.h", |
| 1413 | "renderer_host/media/service_video_capture_provider.cc", |
| 1414 | "renderer_host/media/service_video_capture_provider.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1415 | "renderer_host/media/video_capture_controller.cc", |
| 1416 | "renderer_host/media/video_capture_controller.h", |
| 1417 | "renderer_host/media/video_capture_controller_event_handler.h", |
Christian Fremerey | 40cd31d | 2018-06-06 17:23:51 | [diff] [blame] | 1418 | "renderer_host/media/video_capture_dependencies.cc", |
| 1419 | "renderer_host/media/video_capture_dependencies.h", |
chfremer | c914815 | 2017-04-17 17:10:26 | [diff] [blame] | 1420 | "renderer_host/media/video_capture_device_launch_observer.h", |
Christian Fremerey | ee5b6422 | 2017-08-29 14:57:22 | [diff] [blame] | 1421 | "renderer_host/media/video_capture_factory_delegate.cc", |
| 1422 | "renderer_host/media/video_capture_factory_delegate.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1423 | "renderer_host/media/video_capture_host.cc", |
| 1424 | "renderer_host/media/video_capture_host.h", |
| 1425 | "renderer_host/media/video_capture_manager.cc", |
| 1426 | "renderer_host/media/video_capture_manager.h", |
chfremer | 3b09981 | 2017-04-11 17:30:50 | [diff] [blame] | 1427 | "renderer_host/media/video_capture_provider.h", |
chfremer | 70b40e512 | 2017-05-23 15:13:57 | [diff] [blame] | 1428 | "renderer_host/media/video_capture_provider_switcher.cc", |
| 1429 | "renderer_host/media/video_capture_provider_switcher.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1430 | "renderer_host/native_web_keyboard_event_aura.cc", |
| 1431 | "renderer_host/native_web_keyboard_event_mac.mm", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1432 | "renderer_host/overscroll_configuration.cc", |
| 1433 | "renderer_host/overscroll_controller.cc", |
| 1434 | "renderer_host/overscroll_controller.h", |
| 1435 | "renderer_host/overscroll_controller_delegate.h", |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 1436 | "renderer_host/p2p/socket_dispatcher_host.cc", |
| 1437 | "renderer_host/p2p/socket_dispatcher_host.h", |
| 1438 | "renderer_host/p2p/socket_host.cc", |
| 1439 | "renderer_host/p2p/socket_host.h", |
| 1440 | "renderer_host/p2p/socket_host_tcp.cc", |
| 1441 | "renderer_host/p2p/socket_host_tcp.h", |
| 1442 | "renderer_host/p2p/socket_host_tcp_server.cc", |
| 1443 | "renderer_host/p2p/socket_host_tcp_server.h", |
| 1444 | "renderer_host/p2p/socket_host_throttler.cc", |
| 1445 | "renderer_host/p2p/socket_host_throttler.h", |
| 1446 | "renderer_host/p2p/socket_host_udp.cc", |
| 1447 | "renderer_host/p2p/socket_host_udp.h", |
jonross | a2ff4f8 | 2018-02-16 17:27:46 | [diff] [blame] | 1448 | "renderer_host/render_frame_metadata_provider_impl.cc", |
| 1449 | "renderer_host/render_frame_metadata_provider_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1450 | "renderer_host/render_message_filter.cc", |
| 1451 | "renderer_host/render_message_filter.h", |
| 1452 | "renderer_host/render_process_host_impl.cc", |
| 1453 | "renderer_host/render_process_host_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1454 | "renderer_host/render_view_host_delegate.cc", |
| 1455 | "renderer_host/render_view_host_delegate.h", |
rlanday | 7f2ec7f | 2016-12-14 02:28:34 | [diff] [blame] | 1456 | "renderer_host/render_view_host_delegate_view.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1457 | "renderer_host/render_view_host_delegate_view.h", |
| 1458 | "renderer_host/render_view_host_factory.cc", |
| 1459 | "renderer_host/render_view_host_factory.h", |
| 1460 | "renderer_host/render_view_host_impl.cc", |
| 1461 | "renderer_host/render_view_host_impl.h", |
| 1462 | "renderer_host/render_widget_helper.cc", |
| 1463 | "renderer_host/render_widget_helper.h", |
| 1464 | "renderer_host/render_widget_host_delegate.cc", |
| 1465 | "renderer_host/render_widget_host_delegate.h", |
Dave Tapuska | 8eccc8c | 2017-11-20 18:49:00 | [diff] [blame] | 1466 | "renderer_host/render_widget_host_factory.cc", |
| 1467 | "renderer_host/render_widget_host_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1468 | "renderer_host/render_widget_host_impl.cc", |
| 1469 | "renderer_host/render_widget_host_impl.h", |
| 1470 | "renderer_host/render_widget_host_input_event_router.cc", |
| 1471 | "renderer_host/render_widget_host_input_event_router.h", |
| 1472 | "renderer_host/render_widget_host_owner_delegate.h", |
| 1473 | "renderer_host/render_widget_host_view_aura.cc", |
| 1474 | "renderer_host/render_widget_host_view_aura.h", |
| 1475 | "renderer_host/render_widget_host_view_base.cc", |
| 1476 | "renderer_host/render_widget_host_view_base.h", |
| 1477 | "renderer_host/render_widget_host_view_base_observer.cc", |
| 1478 | "renderer_host/render_widget_host_view_base_observer.h", |
Ken Buchanan | daef006b | 2017-08-17 18:32:15 | [diff] [blame] | 1479 | "renderer_host/render_widget_host_view_child_frame.cc", |
| 1480 | "renderer_host/render_widget_host_view_child_frame.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1481 | "renderer_host/render_widget_host_view_mac.h", |
| 1482 | "renderer_host/render_widget_host_view_mac.mm", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1483 | "renderer_host/render_widget_host_view_mac_editcommand_helper.h", |
| 1484 | "renderer_host/render_widget_host_view_mac_editcommand_helper.mm", |
Sadrul Habib Chowdhury | 8e8ae37 | 2017-12-23 20:11:23 | [diff] [blame] | 1485 | "renderer_host/render_widget_targeter.cc", |
| 1486 | "renderer_host/render_widget_targeter.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1487 | "renderer_host/text_input_client_mac.h", |
| 1488 | "renderer_host/text_input_client_mac.mm", |
| 1489 | "renderer_host/text_input_client_message_filter.h", |
| 1490 | "renderer_host/text_input_client_message_filter.mm", |
| 1491 | "renderer_host/text_input_manager.cc", |
| 1492 | "renderer_host/text_input_manager.h", |
| 1493 | "renderer_host/ui_events_helper.cc", |
| 1494 | "renderer_host/ui_events_helper.h", |
Stuart Langley | 0454b95 | 2017-09-16 03:57:52 | [diff] [blame] | 1495 | "renderer_host/web_database_host_impl.cc", |
| 1496 | "renderer_host/web_database_host_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1497 | "renderer_host/webmenurunner_mac.h", |
| 1498 | "renderer_host/webmenurunner_mac.mm", |
Sam McNally | 8b4f74d | 2017-11-10 00:07:56 | [diff] [blame] | 1499 | "renderer_interface_binders.cc", |
| 1500 | "renderer_interface_binders.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1501 | "resolve_proxy_msg_helper.cc", |
| 1502 | "resolve_proxy_msg_helper.h", |
| 1503 | "resource_context_impl.cc", |
| 1504 | "resource_context_impl.h", |
Vladimir Levin | 11a23b1 | 2017-09-11 23:13:30 | [diff] [blame] | 1505 | "sandbox_host_linux.cc", |
| 1506 | "sandbox_host_linux.h", |
| 1507 | "sandbox_ipc_linux.cc", |
| 1508 | "sandbox_ipc_linux.h", |
kerrnel | 0f7a192 | 2017-06-26 23:40:58 | [diff] [blame] | 1509 | "sandbox_parameters_mac.h", |
| 1510 | "sandbox_parameters_mac.mm", |
Lukasz Anforowicz | 7359e0b | 2018-01-03 21:26:29 | [diff] [blame] | 1511 | "scoped_active_url.cc", |
| 1512 | "scoped_active_url.h", |
leon.han | 552e9de | 2017-02-09 14:37:30 | [diff] [blame] | 1513 | "screen_orientation/screen_orientation_provider.cc", |
| 1514 | "screen_orientation/screen_orientation_provider.h", |
Ken Rockot | c7a279c | 2017-05-04 23:51:45 | [diff] [blame] | 1515 | "service_manager/common_browser_interfaces.cc", |
| 1516 | "service_manager/common_browser_interfaces.h", |
ben | ff46163 | 2016-10-06 14:27:33 | [diff] [blame] | 1517 | "service_manager/service_manager_context.cc", |
| 1518 | "service_manager/service_manager_context.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1519 | "service_worker/embedded_worker_instance.cc", |
| 1520 | "service_worker/embedded_worker_instance.h", |
| 1521 | "service_worker/embedded_worker_registry.cc", |
| 1522 | "service_worker/embedded_worker_registry.h", |
| 1523 | "service_worker/embedded_worker_status.h", |
Han Leon | 293e035df | 2018-02-01 11:20:40 | [diff] [blame] | 1524 | "service_worker/payment_handler_support.cc", |
| 1525 | "service_worker/payment_handler_support.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1526 | "service_worker/service_worker_blob_reader.cc", |
| 1527 | "service_worker/service_worker_blob_reader.h", |
| 1528 | "service_worker/service_worker_cache_writer.cc", |
| 1529 | "service_worker/service_worker_cache_writer.h", |
| 1530 | "service_worker/service_worker_client_utils.cc", |
| 1531 | "service_worker/service_worker_client_utils.h", |
Mostyn Bramley-Moore | 940128b | 2017-11-09 00:49:46 | [diff] [blame] | 1532 | "service_worker/service_worker_consts.cc", |
| 1533 | "service_worker/service_worker_consts.h", |
Yuki Yamada | a20ac9c | 2017-08-10 08:04:20 | [diff] [blame] | 1534 | "service_worker/service_worker_content_settings_proxy_impl.cc", |
| 1535 | "service_worker/service_worker_content_settings_proxy_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1536 | "service_worker/service_worker_context_core.cc", |
| 1537 | "service_worker/service_worker_context_core.h", |
dominickn | eadb0e9 | 2017-06-13 03:23:37 | [diff] [blame] | 1538 | "service_worker/service_worker_context_core_observer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1539 | "service_worker/service_worker_context_request_handler.cc", |
| 1540 | "service_worker/service_worker_context_request_handler.h", |
| 1541 | "service_worker/service_worker_context_watcher.cc", |
| 1542 | "service_worker/service_worker_context_watcher.h", |
| 1543 | "service_worker/service_worker_context_wrapper.cc", |
| 1544 | "service_worker/service_worker_context_wrapper.h", |
| 1545 | "service_worker/service_worker_controllee_request_handler.cc", |
| 1546 | "service_worker/service_worker_controllee_request_handler.h", |
shimazu | 1ac68cf | 2017-04-20 06:03:46 | [diff] [blame] | 1547 | "service_worker/service_worker_data_pipe_reader.cc", |
| 1548 | "service_worker/service_worker_data_pipe_reader.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1549 | "service_worker/service_worker_database.cc", |
| 1550 | "service_worker/service_worker_database.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1551 | "service_worker/service_worker_disk_cache.cc", |
| 1552 | "service_worker/service_worker_disk_cache.h", |
| 1553 | "service_worker/service_worker_dispatcher_host.cc", |
| 1554 | "service_worker/service_worker_dispatcher_host.h", |
| 1555 | "service_worker/service_worker_fetch_dispatcher.cc", |
| 1556 | "service_worker/service_worker_fetch_dispatcher.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1557 | "service_worker/service_worker_info.cc", |
| 1558 | "service_worker/service_worker_info.h", |
Matt Falkenhagen | 10fde2d | 2018-02-27 17:17:56 | [diff] [blame] | 1559 | "service_worker/service_worker_installed_script_loader.cc", |
| 1560 | "service_worker/service_worker_installed_script_loader.h", |
Matt Falkenhagen | a39b8ba | 2018-02-23 07:51:30 | [diff] [blame] | 1561 | "service_worker/service_worker_installed_script_reader.cc", |
| 1562 | "service_worker/service_worker_installed_script_reader.h", |
Makoto Shimazu | 166906a | 2017-07-12 06:04:01 | [diff] [blame] | 1563 | "service_worker/service_worker_installed_scripts_sender.cc", |
| 1564 | "service_worker/service_worker_installed_scripts_sender.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1565 | "service_worker/service_worker_internals_ui.cc", |
| 1566 | "service_worker/service_worker_internals_ui.h", |
| 1567 | "service_worker/service_worker_job_coordinator.cc", |
| 1568 | "service_worker/service_worker_job_coordinator.h", |
falken | f93cb21f | 2017-03-17 03:05:30 | [diff] [blame] | 1569 | "service_worker/service_worker_lifetime_tracker.cc", |
| 1570 | "service_worker/service_worker_lifetime_tracker.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1571 | "service_worker/service_worker_metrics.cc", |
| 1572 | "service_worker/service_worker_metrics.h", |
clamy | df7927e | 2016-09-22 13:03:14 | [diff] [blame] | 1573 | "service_worker/service_worker_navigation_handle.cc", |
| 1574 | "service_worker/service_worker_navigation_handle.h", |
| 1575 | "service_worker/service_worker_navigation_handle_core.cc", |
| 1576 | "service_worker/service_worker_navigation_handle_core.h", |
Matt Falkenhagen | 7514e44 | 2018-02-28 01:32:58 | [diff] [blame] | 1577 | "service_worker/service_worker_navigation_loader.cc", |
| 1578 | "service_worker/service_worker_navigation_loader.h", |
| 1579 | "service_worker/service_worker_new_script_loader.cc", |
| 1580 | "service_worker/service_worker_new_script_loader.h", |
Richard | bc7bb1c7 | 2018-06-13 09:01:49 | [diff] [blame] | 1581 | "service_worker/service_worker_object_host.cc", |
| 1582 | "service_worker/service_worker_object_host.h", |
Matt Falkenhagen | c97713c4 | 2018-07-10 14:32:56 | [diff] [blame] | 1583 | "service_worker/service_worker_ping_controller.cc", |
| 1584 | "service_worker/service_worker_ping_controller.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1585 | "service_worker/service_worker_process_manager.cc", |
| 1586 | "service_worker/service_worker_process_manager.h", |
| 1587 | "service_worker/service_worker_provider_host.cc", |
| 1588 | "service_worker/service_worker_provider_host.h", |
| 1589 | "service_worker/service_worker_quota_client.cc", |
| 1590 | "service_worker/service_worker_quota_client.h", |
| 1591 | "service_worker/service_worker_read_from_cache_job.cc", |
| 1592 | "service_worker/service_worker_read_from_cache_job.h", |
| 1593 | "service_worker/service_worker_register_job.cc", |
| 1594 | "service_worker/service_worker_register_job.h", |
| 1595 | "service_worker/service_worker_register_job_base.h", |
| 1596 | "service_worker/service_worker_registration.cc", |
| 1597 | "service_worker/service_worker_registration.h", |
Han Leon | 4149b5c2 | 2017-11-15 12:18:37 | [diff] [blame] | 1598 | "service_worker/service_worker_registration_object_host.cc", |
| 1599 | "service_worker/service_worker_registration_object_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1600 | "service_worker/service_worker_registration_status.cc", |
| 1601 | "service_worker/service_worker_registration_status.h", |
| 1602 | "service_worker/service_worker_request_handler.cc", |
| 1603 | "service_worker/service_worker_request_handler.h", |
| 1604 | "service_worker/service_worker_response_info.cc", |
| 1605 | "service_worker/service_worker_response_info.h", |
| 1606 | "service_worker/service_worker_script_cache_map.cc", |
| 1607 | "service_worker/service_worker_script_cache_map.h", |
Matt Falkenhagen | 7514e44 | 2018-02-28 01:32:58 | [diff] [blame] | 1608 | "service_worker/service_worker_script_loader_factory.cc", |
| 1609 | "service_worker/service_worker_script_loader_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1610 | "service_worker/service_worker_storage.cc", |
| 1611 | "service_worker/service_worker_storage.h", |
xzhan96 | a59fb76 | 2017-09-27 17:51:39 | [diff] [blame] | 1612 | "service_worker/service_worker_type_converters.cc", |
| 1613 | "service_worker/service_worker_type_converters.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1614 | "service_worker/service_worker_unregister_job.cc", |
| 1615 | "service_worker/service_worker_unregister_job.h", |
scottmg | 30fc2c9 | 2017-05-18 08:42:02 | [diff] [blame] | 1616 | "service_worker/service_worker_url_job_wrapper.cc", |
| 1617 | "service_worker/service_worker_url_job_wrapper.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1618 | "service_worker/service_worker_url_request_job.cc", |
| 1619 | "service_worker/service_worker_url_request_job.h", |
| 1620 | "service_worker/service_worker_version.cc", |
| 1621 | "service_worker/service_worker_version.h", |
| 1622 | "service_worker/service_worker_write_to_cache_job.cc", |
| 1623 | "service_worker/service_worker_write_to_cache_job.h", |
Darin Fisher | 7d01ede | 2017-09-09 00:48:39 | [diff] [blame] | 1624 | "shared_worker/shared_worker_connector_impl.cc", |
| 1625 | "shared_worker/shared_worker_connector_impl.h", |
Yuki Yamada | 68992b0 | 2017-07-31 06:13:45 | [diff] [blame] | 1626 | "shared_worker/shared_worker_content_settings_proxy_impl.cc", |
| 1627 | "shared_worker/shared_worker_content_settings_proxy_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1628 | "shared_worker/shared_worker_host.cc", |
| 1629 | "shared_worker/shared_worker_host.h", |
| 1630 | "shared_worker/shared_worker_instance.cc", |
| 1631 | "shared_worker/shared_worker_instance.h", |
Matt Falkenhagen | 9823f09 | 2018-04-12 12:33:06 | [diff] [blame] | 1632 | "shared_worker/shared_worker_script_loader.cc", |
| 1633 | "shared_worker/shared_worker_script_loader.h", |
| 1634 | "shared_worker/shared_worker_script_loader_factory.cc", |
| 1635 | "shared_worker/shared_worker_script_loader_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1636 | "shared_worker/shared_worker_service_impl.cc", |
| 1637 | "shared_worker/shared_worker_service_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1638 | "site_instance_impl.cc", |
| 1639 | "site_instance_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1640 | "speech/speech_recognition_dispatcher_host.cc", |
| 1641 | "speech/speech_recognition_dispatcher_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1642 | "speech/speech_recognition_manager_impl.cc", |
| 1643 | "speech/speech_recognition_manager_impl.h", |
| 1644 | "speech/speech_recognizer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1645 | "speech/speech_recognizer_impl_android.cc", |
| 1646 | "speech/speech_recognizer_impl_android.h", |
| 1647 | "ssl/ssl_client_auth_handler.cc", |
| 1648 | "ssl/ssl_client_auth_handler.h", |
| 1649 | "ssl/ssl_error_handler.cc", |
| 1650 | "ssl/ssl_error_handler.h", |
| 1651 | "ssl/ssl_manager.cc", |
| 1652 | "ssl/ssl_manager.h", |
Jun Cai | 9409ded | 2018-01-30 00:19:46 | [diff] [blame] | 1653 | "ssl_private_key_impl.cc", |
| 1654 | "ssl_private_key_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1655 | "startup_task_runner.cc", |
| 1656 | "startup_task_runner.h", |
| 1657 | "storage_partition_impl.cc", |
| 1658 | "storage_partition_impl.h", |
| 1659 | "storage_partition_impl_map.cc", |
| 1660 | "storage_partition_impl_map.h", |
| 1661 | "streams/stream.cc", |
| 1662 | "streams/stream.h", |
| 1663 | "streams/stream_context.cc", |
| 1664 | "streams/stream_context.h", |
| 1665 | "streams/stream_handle_impl.cc", |
| 1666 | "streams/stream_handle_impl.h", |
| 1667 | "streams/stream_read_observer.h", |
| 1668 | "streams/stream_register_observer.h", |
| 1669 | "streams/stream_registry.cc", |
| 1670 | "streams/stream_registry.h", |
| 1671 | "streams/stream_url_request_job.cc", |
| 1672 | "streams/stream_url_request_job.h", |
| 1673 | "streams/stream_write_observer.h", |
| 1674 | "theme_helper_mac.h", |
| 1675 | "theme_helper_mac.mm", |
ssid | eb54962 | 2017-03-29 21:46:00 | [diff] [blame] | 1676 | "tracing/background_memory_tracing_observer.cc", |
| 1677 | "tracing/background_memory_tracing_observer.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1678 | "tracing/background_tracing_config_impl.cc", |
| 1679 | "tracing/background_tracing_config_impl.h", |
| 1680 | "tracing/background_tracing_manager_impl.cc", |
| 1681 | "tracing/background_tracing_manager_impl.h", |
| 1682 | "tracing/background_tracing_rule.cc", |
| 1683 | "tracing/background_tracing_rule.h", |
| 1684 | "tracing/etw_tracing_agent_win.cc", |
| 1685 | "tracing/etw_tracing_agent_win.h", |
| 1686 | "tracing/file_tracing_provider_impl.cc", |
| 1687 | "tracing/file_tracing_provider_impl.h", |
| 1688 | "tracing/trace_message_filter.cc", |
| 1689 | "tracing/trace_message_filter.h", |
| 1690 | "tracing/tracing_controller_impl.cc", |
| 1691 | "tracing/tracing_controller_impl.h", |
Ehsan Chiniforooshan | c77b44e | 2017-10-10 18:12:10 | [diff] [blame] | 1692 | "tracing/tracing_controller_impl_data_endpoint.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1693 | "tracing/tracing_ui.cc", |
| 1694 | "tracing/tracing_ui.h", |
jam | c190586 | 2017-05-16 14:45:30 | [diff] [blame] | 1695 | "url_loader_factory_getter.cc", |
| 1696 | "url_loader_factory_getter.h", |
Jay Civelli | 14aced2a | 2018-03-14 23:44:33 | [diff] [blame] | 1697 | "utility_process_host.cc", |
| 1698 | "utility_process_host.h", |
blundell | e75a8f9 | 2017-03-27 08:11:17 | [diff] [blame] | 1699 | "wake_lock/wake_lock_context_host.cc", |
| 1700 | "wake_lock/wake_lock_context_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1701 | "web_contents/aura/gesture_nav_simple.cc", |
| 1702 | "web_contents/aura/gesture_nav_simple.h", |
| 1703 | "web_contents/aura/overscroll_navigation_overlay.cc", |
| 1704 | "web_contents/aura/overscroll_navigation_overlay.h", |
| 1705 | "web_contents/aura/overscroll_window_animation.cc", |
| 1706 | "web_contents/aura/overscroll_window_animation.h", |
| 1707 | "web_contents/aura/overscroll_window_delegate.cc", |
| 1708 | "web_contents/aura/overscroll_window_delegate.h", |
| 1709 | "web_contents/aura/shadow_layer_delegate.cc", |
| 1710 | "web_contents/aura/shadow_layer_delegate.h", |
mfomitchev | 06b84645 | 2017-07-25 23:39:09 | [diff] [blame] | 1711 | "web_contents/aura/types.cc", |
| 1712 | "web_contents/aura/types.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1713 | "web_contents/web_contents_impl.cc", |
| 1714 | "web_contents/web_contents_impl.h", |
| 1715 | "web_contents/web_contents_view.h", |
| 1716 | "web_contents/web_contents_view_aura.cc", |
| 1717 | "web_contents/web_contents_view_aura.h", |
| 1718 | "web_contents/web_contents_view_child_frame.cc", |
| 1719 | "web_contents/web_contents_view_child_frame.h", |
| 1720 | "web_contents/web_contents_view_guest.cc", |
| 1721 | "web_contents/web_contents_view_guest.h", |
| 1722 | "web_contents/web_contents_view_mac.h", |
| 1723 | "web_contents/web_contents_view_mac.mm", |
| 1724 | "web_contents/web_drag_dest_mac.h", |
| 1725 | "web_contents/web_drag_dest_mac.mm", |
| 1726 | "web_contents/web_drag_source_mac.h", |
| 1727 | "web_contents/web_drag_source_mac.mm", |
| 1728 | "web_contents/web_drag_utils_win.cc", |
| 1729 | "web_contents/web_drag_utils_win.h", |
Tsuyoshi Horo | b8580159 | 2018-02-19 22:18:07 | [diff] [blame] | 1730 | "web_package/signed_exchange_cert_fetcher.cc", |
| 1731 | "web_package/signed_exchange_cert_fetcher.h", |
Kunihiko Sakamoto | fc657a9f | 2018-03-16 05:57:31 | [diff] [blame] | 1732 | "web_package/signed_exchange_cert_fetcher_factory.cc", |
| 1733 | "web_package/signed_exchange_cert_fetcher_factory.h", |
Kunihiko Sakamoto | 4c759a7f | 2018-04-10 03:01:04 | [diff] [blame] | 1734 | "web_package/signed_exchange_certificate_chain.cc", |
| 1735 | "web_package/signed_exchange_certificate_chain.h", |
Tsuyoshi Horo | b8580159 | 2018-02-19 22:18:07 | [diff] [blame] | 1736 | "web_package/signed_exchange_consts.h", |
Tsuyoshi Horo | 4801e76 | 2018-04-25 07:36:57 | [diff] [blame] | 1737 | "web_package/signed_exchange_devtools_proxy.cc", |
| 1738 | "web_package/signed_exchange_devtools_proxy.h", |
Kouhei Ueno | f3419f0 | 2018-05-29 05:57:28 | [diff] [blame] | 1739 | "web_package/signed_exchange_envelope.cc", |
| 1740 | "web_package/signed_exchange_envelope.h", |
Tsuyoshi Horo | b40c7c3 | 2018-05-31 07:32:45 | [diff] [blame] | 1741 | "web_package/signed_exchange_error.cc", |
| 1742 | "web_package/signed_exchange_error.h", |
Tsuyoshi Horo | b8580159 | 2018-02-19 22:18:07 | [diff] [blame] | 1743 | "web_package/signed_exchange_handler.cc", |
| 1744 | "web_package/signed_exchange_handler.h", |
Kunihiko Sakamoto | fa9bdfa | 2018-06-15 03:21:53 | [diff] [blame] | 1745 | "web_package/signed_exchange_loader.cc", |
| 1746 | "web_package/signed_exchange_loader.h", |
Kunihiko Sakamoto | 66b91d4 | 2018-06-15 08:29:22 | [diff] [blame] | 1747 | "web_package/signed_exchange_prefetch_handler.cc", |
| 1748 | "web_package/signed_exchange_prefetch_handler.h", |
Kouhei Ueno | 91f8bc1 | 2018-05-31 10:43:30 | [diff] [blame] | 1749 | "web_package/signed_exchange_prologue.cc", |
| 1750 | "web_package/signed_exchange_prologue.h", |
Kunihiko Sakamoto | e6aa22e | 2018-06-15 03:26:55 | [diff] [blame] | 1751 | "web_package/signed_exchange_request_handler.cc", |
| 1752 | "web_package/signed_exchange_request_handler.h", |
Kouhei Ueno | d7cb6d1 | 2018-05-29 05:23:54 | [diff] [blame] | 1753 | "web_package/signed_exchange_signature_header_field.cc", |
| 1754 | "web_package/signed_exchange_signature_header_field.h", |
Tsuyoshi Horo | b8580159 | 2018-02-19 22:18:07 | [diff] [blame] | 1755 | "web_package/signed_exchange_signature_verifier.cc", |
| 1756 | "web_package/signed_exchange_signature_verifier.h", |
| 1757 | "web_package/signed_exchange_url_loader_factory_for_non_network_service.cc", |
| 1758 | "web_package/signed_exchange_url_loader_factory_for_non_network_service.h", |
Tsuyoshi Horo | cdbb490 | 2018-04-12 06:09:14 | [diff] [blame] | 1759 | "web_package/signed_exchange_utils.cc", |
| 1760 | "web_package/signed_exchange_utils.h", |
Tsuyoshi Horo | 8a81ad1 | 2018-04-07 06:35:29 | [diff] [blame] | 1761 | "web_package/web_package_context_impl.cc", |
| 1762 | "web_package/web_package_context_impl.h", |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 1763 | "webrtc/webrtc_internals.cc", |
| 1764 | "webrtc/webrtc_internals.h", |
| 1765 | "webrtc/webrtc_internals_message_handler.cc", |
| 1766 | "webrtc/webrtc_internals_message_handler.h", |
| 1767 | "webrtc/webrtc_internals_ui.cc", |
| 1768 | "webrtc/webrtc_internals_ui.h", |
| 1769 | "webrtc/webrtc_internals_ui_observer.h", |
yhirano | 4a59383 | 2016-10-24 18:58:22 | [diff] [blame] | 1770 | "websockets/websocket_handshake_request_info_impl.cc", |
| 1771 | "websockets/websocket_handshake_request_info_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1772 | "websockets/websocket_manager.cc", |
| 1773 | "websockets/websocket_manager.h", |
| 1774 | "webui/content_web_ui_controller_factory.cc", |
| 1775 | "webui/content_web_ui_controller_factory.h", |
| 1776 | "webui/generic_handler.cc", |
| 1777 | "webui/generic_handler.h", |
jam | 4374b95 | 2017-05-10 21:16:41 | [diff] [blame] | 1778 | "webui/network_error_url_loader.cc", |
| 1779 | "webui/network_error_url_loader.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1780 | "webui/shared_resources_data_source.cc", |
| 1781 | "webui/shared_resources_data_source.h", |
| 1782 | "webui/url_data_manager.cc", |
| 1783 | "webui/url_data_manager.h", |
| 1784 | "webui/url_data_manager_backend.cc", |
| 1785 | "webui/url_data_manager_backend.h", |
| 1786 | "webui/url_data_source_impl.cc", |
| 1787 | "webui/url_data_source_impl.h", |
| 1788 | "webui/web_ui_controller_factory_registry.cc", |
| 1789 | "webui/web_ui_controller_factory_registry.h", |
| 1790 | "webui/web_ui_data_source_impl.cc", |
| 1791 | "webui/web_ui_data_source_impl.h", |
| 1792 | "webui/web_ui_impl.cc", |
| 1793 | "webui/web_ui_impl.h", |
| 1794 | "webui/web_ui_message_handler.cc", |
jam | 8c4edd0 | 2017-05-06 18:50:33 | [diff] [blame] | 1795 | "webui/web_ui_url_loader_factory.cc", |
Chris Mumford | bae8a74 | 2018-03-01 23:02:23 | [diff] [blame] | 1796 | "webui/web_ui_url_loader_factory_internal.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1797 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1798 | |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 1799 | if (toolkit_views) { |
| 1800 | deps += [ "//ui/events" ] |
| 1801 | } |
| 1802 | |
Jay Civelli | 668c097f | 2018-05-16 20:44:13 | [diff] [blame] | 1803 | if (is_linux) { |
Ken Rockot | 7a295c6 | 2018-07-10 20:42:42 | [diff] [blame] | 1804 | deps += [ |
| 1805 | "//components/services/font/public/interfaces", |
| 1806 | "//services/service_manager/zygote", |
| 1807 | ] |
Jay Civelli | 668c097f | 2018-05-16 20:44:13 | [diff] [blame] | 1808 | } |
| 1809 | |
bcwhite | 98900b0 | 2016-09-19 20:13:03 | [diff] [blame] | 1810 | # ChromeOS also defines linux but their memory-monitors conflict. |
| 1811 | if (is_chromeos) { |
| 1812 | sources += [ |
Marina Ciocea | 35090794 | 2018-05-07 07:54:23 | [diff] [blame] | 1813 | "media/keyboard_mic_registration.cc", |
| 1814 | "media/keyboard_mic_registration.h", |
bcwhite | 98900b0 | 2016-09-19 20:13:03 | [diff] [blame] | 1815 | "memory/memory_monitor_chromeos.cc", |
| 1816 | "memory/memory_monitor_chromeos.h", |
Ehsan Chiniforooshan | c77b44e | 2017-10-10 18:12:10 | [diff] [blame] | 1817 | "tracing/cros_tracing_agent.cc", |
| 1818 | "tracing/cros_tracing_agent.h", |
bcwhite | 98900b0 | 2016-09-19 20:13:03 | [diff] [blame] | 1819 | ] |
| 1820 | } else { |
| 1821 | sources += [ |
| 1822 | "memory/memory_monitor_linux.cc", |
| 1823 | "memory/memory_monitor_linux.h", |
| 1824 | ] |
| 1825 | } |
| 1826 | |
Stephen Lanham | b3de0b4d | 2018-05-10 21:05:47 | [diff] [blame] | 1827 | if (is_chromeos || is_android || is_chromecast) { |
| 1828 | defines += [ "ENABLE_PROTECTED_MEDIA_IDENTIFIER_PERMISSION" ] |
| 1829 | } |
| 1830 | |
Michael Spang | 0436dc8 | 2017-12-01 20:25:27 | [diff] [blame] | 1831 | if (is_chromecast && is_linux) { |
| 1832 | sources += [ |
| 1833 | "tracing/cast_tracing_agent.cc", |
| 1834 | "tracing/cast_tracing_agent.h", |
| 1835 | ] |
| 1836 | |
| 1837 | deps += [ "//chromecast/tracing:system_tracer" ] |
| 1838 | |
| 1839 | defines += [ "CAST_TRACING_AGENT=1" ] |
| 1840 | } |
| 1841 | |
Kevin Marshall | 3caecccb7 | 2017-08-17 01:47:37 | [diff] [blame] | 1842 | if (is_fuchsia) { |
morrita | d95714f | 2014-10-01 02:37:24 | [diff] [blame] | 1843 | sources += [ |
Kevin Marshall | 3caecccb7 | 2017-08-17 01:47:37 | [diff] [blame] | 1844 | "child_process_launcher_helper_fuchsia.cc", |
| 1845 | "memory/memory_monitor_fuchsia.cc", |
| 1846 | ] |
| 1847 | } else if (is_posix) { |
| 1848 | sources += [ |
| 1849 | "child_process_launcher_helper_posix.cc", |
| 1850 | "child_process_launcher_helper_posix.h", |
brettw | 3c98c7d3 | 2017-07-25 01:44:20 | [diff] [blame] | 1851 | "posix_file_descriptor_info_impl.cc", |
| 1852 | "posix_file_descriptor_info_impl.h", |
morrita | d95714f | 2014-10-01 02:37:24 | [diff] [blame] | 1853 | ] |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 1854 | } |
| 1855 | |
Lei Zhang | 48a4a526 | 2018-04-17 20:18:44 | [diff] [blame] | 1856 | if (enable_basic_printing) { |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1857 | deps += [ "//printing" ] |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 1858 | } |
| 1859 | |
Sidney San MartÃn | 9387b40 | 2018-06-08 18:13:26 | [diff] [blame] | 1860 | if (is_mac) { |
| 1861 | sources += [ |
| 1862 | "gpu/ca_transaction_gpu_coordinator.cc", |
| 1863 | "gpu/ca_transaction_gpu_coordinator.h", |
| 1864 | ] |
Joe Downing | 5adea926 | 2018-06-12 01:40:09 | [diff] [blame] | 1865 | deps += [ "//ui/events:dom_keyboard_layout" ] |
Sidney San MartÃn | 9387b40 | 2018-06-08 18:13:26 | [diff] [blame] | 1866 | } |
| 1867 | |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 1868 | if (!is_mac) { |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1869 | deps += [ "//sandbox" ] |
| 1870 | } |
jam | b3c1195df | 2016-03-21 20:41:29 | [diff] [blame] | 1871 | if (!is_android) { |
mohsen | c8b9ca7e | 2017-02-14 05:39:41 | [diff] [blame] | 1872 | deps += [ |
Evan Stade | 619a89be | 2017-07-17 20:24:26 | [diff] [blame] | 1873 | "//components/vector_icons", |
mohsen | c8b9ca7e | 2017-02-14 05:39:41 | [diff] [blame] | 1874 | "//content/browser/tracing:resources", |
mohsen | c8b9ca7e | 2017-02-14 05:39:41 | [diff] [blame] | 1875 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1876 | } |
charliea | b997324 | 2016-02-02 16:22:16 | [diff] [blame] | 1877 | if ((use_udev && is_posix) || is_mac || is_win) { |
| 1878 | deps += [ "//tools/battor_agent:battor_agent_lib" ] |
| 1879 | sources += [ |
| 1880 | "tracing/power_tracing_agent.cc", |
| 1881 | "tracing/power_tracing_agent.h", |
| 1882 | ] |
| 1883 | } |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1884 | |
Yuri Wiitala | 5d58adb | 2018-01-18 23:44:05 | [diff] [blame] | 1885 | # Desktop/Window/WebContents screen capture implementations, conditionally |
| 1886 | # built depending on the available implementations for each platform. |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1887 | if (is_linux || is_mac || is_win) { |
| 1888 | defines += [ "ENABLE_SCREEN_CAPTURE=1" ] |
| 1889 | sources += [ |
braveyao | 2f9c8630 | 2017-01-06 18:06:28 | [diff] [blame] | 1890 | "media/capture/cursor_renderer.cc", |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1891 | "media/capture/cursor_renderer.h", |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 1892 | "media/capture/desktop_capture_device.cc", |
| 1893 | "media/capture/desktop_capture_device.h", |
Weiyong Yao | 5ac2e62 | 2017-11-30 02:14:11 | [diff] [blame] | 1894 | "media/capture/fake_webcontent_capture_machine.cc", |
| 1895 | "media/capture/fake_webcontent_capture_machine.h", |
Yuri Wiitala | 5d58adb | 2018-01-18 23:44:05 | [diff] [blame] | 1896 | "media/capture/frame_sink_video_capture_device.cc", |
| 1897 | "media/capture/frame_sink_video_capture_device.h", |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1898 | "media/capture/web_contents_video_capture_device.cc", |
| 1899 | "media/capture/web_contents_video_capture_device.h", |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1900 | ] |
Patrik Höglund | d98b020f | 2018-05-07 12:17:44 | [diff] [blame] | 1901 | public_deps += [ "//third_party/webrtc_overrides:init_webrtc" ] |
| 1902 | deps += [ "//third_party/webrtc/modules/desktop_capture" ] |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1903 | if (use_aura) { |
| 1904 | sources += [ |
| 1905 | "media/capture/aura_window_capture_machine.cc", |
| 1906 | "media/capture/aura_window_capture_machine.h", |
Yuri Wiitala | 45ed65e | 2018-05-18 22:39:51 | [diff] [blame] | 1907 | "media/capture/aura_window_video_capture_device.cc", |
| 1908 | "media/capture/aura_window_video_capture_device.h", |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1909 | "media/capture/cursor_renderer_aura.cc", |
| 1910 | "media/capture/cursor_renderer_aura.h", |
| 1911 | "media/capture/desktop_capture_device_aura.cc", |
| 1912 | "media/capture/desktop_capture_device_aura.h", |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1913 | ] |
| 1914 | } |
Yuri Wiitala | 45ed65e | 2018-05-18 22:39:51 | [diff] [blame] | 1915 | if (is_chromeos) { |
| 1916 | sources += [ |
| 1917 | "media/capture/lame_window_capturer_chromeos.cc", |
| 1918 | "media/capture/lame_window_capturer_chromeos.h", |
| 1919 | ] |
| 1920 | } |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1921 | if (is_mac) { |
| 1922 | sources += [ |
| 1923 | "media/capture/cursor_renderer_mac.h", |
| 1924 | "media/capture/cursor_renderer_mac.mm", |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1925 | ] |
Ken Rockot | db79117e | 2018-01-17 20:36:08 | [diff] [blame] | 1926 | deps += [ |
| 1927 | "//sandbox/mac:seatbelt", |
| 1928 | "//sandbox/mac:seatbelt_extension", |
| 1929 | ] |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 1930 | } |
| 1931 | } |
| 1932 | |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1933 | if (is_win) { |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1934 | defines += [ |
| 1935 | # This prevents the inclusion of atlhost.h which paired |
| 1936 | # with the windows 8 sdk it does the wrong thing. |
| 1937 | "__ATLHOST_H__", |
| 1938 | ] |
| 1939 | deps += [ |
[email protected] | bf94f9d | 2014-06-17 20:33:53 | [diff] [blame] | 1940 | "//third_party/iaccessible2", |
| 1941 | "//third_party/isimpledom", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1942 | ] |
| 1943 | libs += [ |
| 1944 | "comctl32.lib", |
| 1945 | "dinput8.lib", |
| 1946 | "dwmapi.lib", |
| 1947 | "dxguid.lib", |
jam | 6ce8049 | 2016-03-22 22:00:21 | [diff] [blame] | 1948 | "imm32.lib", |
brettw | 44a5cf8 | 2015-04-08 19:48:22 | [diff] [blame] | 1949 | "oleacc.lib", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1950 | "portabledeviceguids.lib", |
| 1951 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1952 | } |
| 1953 | |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1954 | if (use_udev) { |
mcasas | 9d206368 | 2016-02-11 22:12:39 | [diff] [blame] | 1955 | deps += [ |
| 1956 | "//device/udev_linux", |
mcasas | f261a50 | 2016-02-26 23:40:33 | [diff] [blame] | 1957 | "//media/capture", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 1958 | ] |
| 1959 | } |
| 1960 | |
| 1961 | if (enable_plugins) { |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 1962 | sources += [ |
| 1963 | "../public/browser/plugin_service.h", |
| 1964 | "media/session/pepper_playback_observer.cc", |
| 1965 | "media/session/pepper_playback_observer.h", |
| 1966 | "media/session/pepper_player_delegate.cc", |
| 1967 | "media/session/pepper_player_delegate.h", |
| 1968 | "pepper_flash_settings_helper_impl.cc", |
| 1969 | "pepper_flash_settings_helper_impl.h", |
| 1970 | "plugin_content_origin_whitelist.cc", |
| 1971 | "plugin_content_origin_whitelist.h", |
| 1972 | "plugin_data_remover_impl.cc", |
| 1973 | "plugin_data_remover_impl.h", |
| 1974 | "plugin_private_storage_helper.cc", |
| 1975 | "plugin_private_storage_helper.h", |
| 1976 | "plugin_service_impl.cc", |
| 1977 | "plugin_service_impl.h", |
| 1978 | "ppapi_plugin_process_host.cc", |
| 1979 | "ppapi_plugin_process_host.h", |
| 1980 | "renderer_host/pepper/browser_ppapi_host_impl.cc", |
| 1981 | "renderer_host/pepper/browser_ppapi_host_impl.h", |
| 1982 | "renderer_host/pepper/content_browser_pepper_host_factory.cc", |
| 1983 | "renderer_host/pepper/content_browser_pepper_host_factory.h", |
| 1984 | "renderer_host/pepper/pepper_browser_font_singleton_host.cc", |
| 1985 | "renderer_host/pepper/pepper_browser_font_singleton_host.h", |
| 1986 | "renderer_host/pepper/pepper_external_file_ref_backend.cc", |
| 1987 | "renderer_host/pepper/pepper_external_file_ref_backend.h", |
| 1988 | "renderer_host/pepper/pepper_file_io_host.cc", |
| 1989 | "renderer_host/pepper/pepper_file_io_host.h", |
| 1990 | "renderer_host/pepper/pepper_file_ref_host.cc", |
| 1991 | "renderer_host/pepper/pepper_file_ref_host.h", |
| 1992 | "renderer_host/pepper/pepper_file_system_browser_host.cc", |
| 1993 | "renderer_host/pepper/pepper_file_system_browser_host.h", |
| 1994 | "renderer_host/pepper/pepper_flash_file_message_filter.cc", |
| 1995 | "renderer_host/pepper/pepper_flash_file_message_filter.h", |
| 1996 | "renderer_host/pepper/pepper_gamepad_host.cc", |
| 1997 | "renderer_host/pepper/pepper_gamepad_host.h", |
| 1998 | "renderer_host/pepper/pepper_host_resolver_message_filter.cc", |
| 1999 | "renderer_host/pepper/pepper_host_resolver_message_filter.h", |
| 2000 | "renderer_host/pepper/pepper_internal_file_ref_backend.cc", |
| 2001 | "renderer_host/pepper/pepper_internal_file_ref_backend.h", |
| 2002 | "renderer_host/pepper/pepper_lookup_request.h", |
| 2003 | "renderer_host/pepper/pepper_message_filter.cc", |
| 2004 | "renderer_host/pepper/pepper_message_filter.h", |
| 2005 | "renderer_host/pepper/pepper_network_monitor_host.cc", |
| 2006 | "renderer_host/pepper/pepper_network_monitor_host.h", |
| 2007 | "renderer_host/pepper/pepper_network_proxy_host.cc", |
| 2008 | "renderer_host/pepper/pepper_network_proxy_host.h", |
| 2009 | "renderer_host/pepper/pepper_print_settings_manager.cc", |
| 2010 | "renderer_host/pepper/pepper_print_settings_manager.h", |
| 2011 | "renderer_host/pepper/pepper_printing_host.cc", |
| 2012 | "renderer_host/pepper/pepper_printing_host.h", |
| 2013 | "renderer_host/pepper/pepper_renderer_connection.cc", |
| 2014 | "renderer_host/pepper/pepper_renderer_connection.h", |
| 2015 | "renderer_host/pepper/pepper_security_helper.cc", |
| 2016 | "renderer_host/pepper/pepper_security_helper.h", |
| 2017 | "renderer_host/pepper/pepper_socket_utils.cc", |
| 2018 | "renderer_host/pepper/pepper_socket_utils.h", |
| 2019 | "renderer_host/pepper/pepper_tcp_server_socket_message_filter.cc", |
| 2020 | "renderer_host/pepper/pepper_tcp_server_socket_message_filter.h", |
| 2021 | "renderer_host/pepper/pepper_tcp_socket_message_filter.cc", |
| 2022 | "renderer_host/pepper/pepper_tcp_socket_message_filter.h", |
| 2023 | "renderer_host/pepper/pepper_truetype_font.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2024 | "renderer_host/pepper/pepper_truetype_font_host.cc", |
| 2025 | "renderer_host/pepper/pepper_truetype_font_host.h", |
| 2026 | "renderer_host/pepper/pepper_truetype_font_linux.cc", |
| 2027 | "renderer_host/pepper/pepper_truetype_font_list.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2028 | "renderer_host/pepper/pepper_truetype_font_list_host.cc", |
| 2029 | "renderer_host/pepper/pepper_truetype_font_list_host.h", |
| 2030 | "renderer_host/pepper/pepper_truetype_font_list_mac.mm", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2031 | "renderer_host/pepper/pepper_truetype_font_list_win.cc", |
| 2032 | "renderer_host/pepper/pepper_truetype_font_mac.mm", |
| 2033 | "renderer_host/pepper/pepper_truetype_font_win.cc", |
| 2034 | "renderer_host/pepper/pepper_udp_socket_message_filter.cc", |
| 2035 | "renderer_host/pepper/pepper_udp_socket_message_filter.h", |
| 2036 | "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.cc", |
| 2037 | "renderer_host/pepper/pepper_vpn_provider_message_filter_chromeos.h", |
| 2038 | "renderer_host/pepper/quota_reservation.cc", |
| 2039 | "renderer_host/pepper/quota_reservation.h", |
| 2040 | "renderer_host/pepper/ssl_context_helper.cc", |
| 2041 | "renderer_host/pepper/ssl_context_helper.h", |
Jeremy Roman | b702474 | 2018-06-18 22:00:22 | [diff] [blame] | 2042 | "renderer_host/plugin_registry_impl.cc", |
| 2043 | "renderer_host/plugin_registry_impl.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2044 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2045 | deps += [ |
tmoniuszko | 6cddaa9 | 2015-06-10 07:51:34 | [diff] [blame] | 2046 | "//ppapi/host", |
scottmg | 3cab0ba | 2017-01-25 18:34:16 | [diff] [blame] | 2047 | "//ppapi/proxy:common", |
brettw | f7eb6ca | 2015-02-14 01:37:31 | [diff] [blame] | 2048 | "//ppapi/proxy:ipc", |
| 2049 | "//ppapi/shared_impl", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2050 | ] |
Nico Weber | 8e55956 | 2017-10-03 01:25:26 | [diff] [blame] | 2051 | if (use_ozone) { |
| 2052 | sources += [ "renderer_host/pepper/pepper_truetype_font_list_ozone.cc" ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2053 | } |
Nico Weber | 8e55956 | 2017-10-03 01:25:26 | [diff] [blame] | 2054 | if (use_pangocairo) { |
| 2055 | sources += [ "renderer_host/pepper/pepper_truetype_font_list_pango.cc" ] |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2056 | } |
Lei Zhang | 0809cfd | 2018-07-10 18:05:41 | [diff] [blame] | 2057 | if (is_linux) { |
Dominik Röttsches | ac24004 | 2018-07-06 09:52:40 | [diff] [blame] | 2058 | deps += [ "//components/services/font:ppapi_fontconfig_matching" ] |
| 2059 | } |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2060 | } |
| 2061 | |
John Rummell | f0ab981 | 2017-10-11 20:00:49 | [diff] [blame] | 2062 | if (enable_library_cdms) { |
| 2063 | sources += [ |
John Rummell | aa05b9c | 2017-10-30 08:41:29 | [diff] [blame] | 2064 | "media/cdm_file_impl.cc", |
| 2065 | "media/cdm_file_impl.h", |
John Rummell | f0ab981 | 2017-10-11 20:00:49 | [diff] [blame] | 2066 | "media/cdm_storage_impl.cc", |
| 2067 | "media/cdm_storage_impl.h", |
John Rummell | f4b8cba | 2018-01-08 19:05:03 | [diff] [blame] | 2068 | "media/key_system_support_impl.cc", |
| 2069 | "media/key_system_support_impl.h", |
John Rummell | f0ab981 | 2017-10-11 20:00:49 | [diff] [blame] | 2070 | ] |
| 2071 | } |
| 2072 | |
shreeram.k | 792fba03 | 2015-07-20 11:43:37 | [diff] [blame] | 2073 | if (use_atk) { |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2074 | sources += [ |
| 2075 | "accessibility/accessibility_tree_formatter_auralinux.cc", |
| 2076 | "accessibility/browser_accessibility_auralinux.cc", |
| 2077 | "accessibility/browser_accessibility_auralinux.h", |
| 2078 | "accessibility/browser_accessibility_manager_auralinux.cc", |
| 2079 | "accessibility/browser_accessibility_manager_auralinux.h", |
| 2080 | ] |
shreeram.k | 792fba03 | 2015-07-20 11:43:37 | [diff] [blame] | 2081 | |
mostynb | 902b528 | 2016-08-17 23:01:00 | [diff] [blame] | 2082 | configs += [ "//build/config/linux/atk" ] |
mostynb | ebc6e12 | 2016-07-28 08:53:41 | [diff] [blame] | 2083 | |
mostynb | ebc6e12 | 2016-07-28 08:53:41 | [diff] [blame] | 2084 | if (use_glib) { |
| 2085 | configs += [ "//build/config/linux:glib" ] |
| 2086 | } |
shreeram.k | 792fba03 | 2015-07-20 11:43:37 | [diff] [blame] | 2087 | } |
| 2088 | |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2089 | if (is_linux && use_aura) { |
rch | fd3053f2 | 2017-06-08 22:34:15 | [diff] [blame] | 2090 | deps += [ "//third_party/fontconfig" ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2091 | } |
| 2092 | |
| 2093 | if (use_x11) { |
| 2094 | configs += [ "//build/config/linux:x11" ] |
jamesr | 4359db7 | 2015-01-21 12:40:00 | [diff] [blame] | 2095 | deps += [ "//ui/gfx/x" ] |
cmasone | db5203e | 2014-09-11 18:18:38 | [diff] [blame] | 2096 | } |
| 2097 | |
Nico Weber | 8e55956 | 2017-10-03 01:25:26 | [diff] [blame] | 2098 | if (use_pangocairo) { |
agrieve | 95ba444 | 2016-04-25 15:47:13 | [diff] [blame] | 2099 | configs += [ "//build/config/linux/pangocairo" ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2100 | } |
| 2101 | |
| 2102 | if (is_android) { |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2103 | sources += [ |
| 2104 | "accessibility/accessibility_tree_formatter_android.cc", |
| 2105 | "accessibility/browser_accessibility_android.cc", |
| 2106 | "accessibility/browser_accessibility_android.h", |
| 2107 | "accessibility/browser_accessibility_manager_android.cc", |
| 2108 | "accessibility/browser_accessibility_manager_android.h", |
Jinsuk Kim | 9f0a3c4 | 2018-03-22 01:27:46 | [diff] [blame] | 2109 | "accessibility/captioning_controller.cc", |
| 2110 | "accessibility/captioning_controller.h", |
Jinsuk Kim | c6c1d15d | 2017-06-13 08:19:26 | [diff] [blame] | 2111 | "accessibility/web_contents_accessibility_android.cc", |
| 2112 | "accessibility/web_contents_accessibility_android.h", |
Jinsuk Kim | 5a3ae93c | 2018-04-25 21:49:06 | [diff] [blame] | 2113 | "android/content_ui_event_handler.cc", |
| 2114 | "android/content_ui_event_handler.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2115 | "android/content_view_statics.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2116 | "android/date_time_chooser_android.cc", |
| 2117 | "android/date_time_chooser_android.h", |
Jinsuk Kim | d1f444a | 2017-12-12 22:43:34 | [diff] [blame] | 2118 | "android/gesture_listener_manager.cc", |
| 2119 | "android/gesture_listener_manager.h", |
jinsukkim | 48f82db7 | 2017-04-05 04:10:26 | [diff] [blame] | 2120 | "android/ime_adapter_android.cc", |
| 2121 | "android/ime_adapter_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2122 | "android/java/gin_java_bound_object.cc", |
| 2123 | "android/java/gin_java_bound_object.h", |
| 2124 | "android/java/gin_java_bound_object_delegate.cc", |
| 2125 | "android/java/gin_java_bound_object_delegate.h", |
| 2126 | "android/java/gin_java_bridge_dispatcher_host.cc", |
| 2127 | "android/java/gin_java_bridge_dispatcher_host.h", |
| 2128 | "android/java/gin_java_bridge_message_filter.cc", |
| 2129 | "android/java/gin_java_bridge_message_filter.h", |
| 2130 | "android/java/gin_java_method_invocation_helper.cc", |
| 2131 | "android/java/gin_java_method_invocation_helper.h", |
| 2132 | "android/java/gin_java_script_to_java_types_coercion.cc", |
| 2133 | "android/java/gin_java_script_to_java_types_coercion.h", |
| 2134 | "android/java/java_bridge_thread.cc", |
| 2135 | "android/java/java_bridge_thread.h", |
| 2136 | "android/java/java_method.cc", |
| 2137 | "android/java/java_method.h", |
| 2138 | "android/java/java_type.cc", |
| 2139 | "android/java/java_type.h", |
Torne (Richard Coles) | 8571d251 | 2018-02-16 20:17:33 | [diff] [blame] | 2140 | "android/java/jni_reflect.cc", |
| 2141 | "android/java/jni_reflect.h", |
Jinsuk Kim | a6490f8 | 2018-01-02 02:16:14 | [diff] [blame] | 2142 | "android/javascript_injector.cc", |
| 2143 | "android/javascript_injector.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2144 | "android/load_url_params.cc", |
blundell | f5316fc | 2017-05-15 11:49:03 | [diff] [blame] | 2145 | "android/nfc_host.cc", |
| 2146 | "android/nfc_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2147 | "android/overscroll_controller_android.cc", |
| 2148 | "android/overscroll_controller_android.h", |
jinsukkim | 7e37743 | 2017-04-18 08:52:52 | [diff] [blame] | 2149 | "android/render_widget_host_connector.cc", |
| 2150 | "android/render_widget_host_connector.h", |
Jinsuk Kim | 9b2be95 | 2018-03-02 05:43:04 | [diff] [blame] | 2151 | "android/select_popup.cc", |
| 2152 | "android/select_popup.h", |
Pedro Amaral | 54c9e08 | 2018-04-02 17:22:50 | [diff] [blame] | 2153 | "android/selection/composited_touch_handle_drawable.cc", |
| 2154 | "android/selection/composited_touch_handle_drawable.h", |
| 2155 | "android/selection/selection_popup_controller.cc", |
| 2156 | "android/selection/selection_popup_controller.h", |
| 2157 | "android/selection/smart_selection_client.cc", |
| 2158 | "android/selection/smart_selection_client.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2159 | "android/synchronous_compositor_host.cc", |
| 2160 | "android/synchronous_compositor_host.h", |
Dave Tapuska | 9ef7db8 | 2018-01-31 22:56:33 | [diff] [blame] | 2161 | "android/synchronous_compositor_sync_call_bridge.cc", |
| 2162 | "android/synchronous_compositor_sync_call_bridge.h", |
Jinsuk Kim | c37f5b8 | 2018-01-29 23:06:35 | [diff] [blame] | 2163 | "android/tap_disambiguator.cc", |
| 2164 | "android/tap_disambiguator.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2165 | "android/tracing_controller_android.cc", |
| 2166 | "android/tracing_controller_android.h", |
| 2167 | "android/web_contents_observer_proxy.cc", |
| 2168 | "android/web_contents_observer_proxy.h", |
rob.buis | 300b087 | 2017-03-10 20:43:58 | [diff] [blame] | 2169 | "frame_host/render_frame_host_android.cc", |
| 2170 | "frame_host/render_frame_host_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2171 | "media/capture/screen_capture_device_android.cc", |
| 2172 | "media/capture/screen_capture_device_android.h", |
| 2173 | "renderer_host/compositor_impl_android.cc", |
| 2174 | "renderer_host/compositor_impl_android.h", |
Saman Sami | 7d53de12 | 2018-06-11 23:58:30 | [diff] [blame] | 2175 | "renderer_host/input/fling_scheduler_android.cc", |
| 2176 | "renderer_host/input/fling_scheduler_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2177 | "renderer_host/input/synthetic_gesture_target_android.cc", |
| 2178 | "renderer_host/input/synthetic_gesture_target_android.h", |
W. James MacLean | 12ba797 | 2017-07-08 01:58:26 | [diff] [blame] | 2179 | "renderer_host/input/touch_selection_controller_client_manager_android.cc", |
| 2180 | "renderer_host/input/touch_selection_controller_client_manager_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2181 | "renderer_host/native_web_keyboard_event_android.cc", |
| 2182 | "renderer_host/render_widget_host_view_android.cc", |
| 2183 | "renderer_host/render_widget_host_view_android.h", |
| 2184 | "screen_orientation/screen_orientation_delegate_android.cc", |
| 2185 | "screen_orientation/screen_orientation_delegate_android.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2186 | "web_contents/web_contents_android.cc", |
| 2187 | "web_contents/web_contents_android.h", |
| 2188 | "web_contents/web_contents_view_android.cc", |
| 2189 | "web_contents/web_contents_view_android.h", |
| 2190 | ] |
bashi | 4159f36e | 2017-05-01 01:18:51 | [diff] [blame] | 2191 | |
Daniel Bratell | 5de17f6 | 2017-11-14 22:09:02 | [diff] [blame] | 2192 | jumbo_excluded_sources = [ |
Daniel Bratell | 26ebf15 | 2017-11-22 20:27:51 | [diff] [blame] | 2193 | # Files with kJavaLangClass and similar constants: |
| 2194 | # Bug https://crbug.com/787557. |
| 2195 | "android/java/java_method.cc", # and in gin_java_bound_object.cc. |
Daniel Bratell | 5de17f6 | 2017-11-14 22:09:02 | [diff] [blame] | 2196 | ] |
| 2197 | |
bashi | 4159f36e | 2017-05-01 01:18:51 | [diff] [blame] | 2198 | set_sources_assignment_filter([]) |
| 2199 | sources += [ |
Scott Haseley | 7a02fce | 2017-08-01 21:55:01 | [diff] [blame] | 2200 | "memory/swap_metrics_driver_impl_linux.cc", |
| 2201 | "memory/swap_metrics_driver_impl_linux.h", |
bashi | 4159f36e | 2017-05-01 01:18:51 | [diff] [blame] | 2202 | ] |
| 2203 | set_sources_assignment_filter(sources_assignment_filter) |
| 2204 | |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2205 | sources -= [ |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2206 | "browser_ipc_logging.cc", |
zqzhang | a2147f8 | 2016-10-18 22:53:26 | [diff] [blame] | 2207 | "media/session/audio_focus_delegate_default.cc", |
zqzhang | d36b5ce | 2016-09-30 17:29:34 | [diff] [blame] | 2208 | "media/session/audio_focus_manager.cc", |
| 2209 | "media/session/audio_focus_manager.h", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2210 | "tracing/tracing_ui.cc", |
| 2211 | "tracing/tracing_ui.h", |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2212 | ] |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2213 | deps += [ |
Torne (Richard Coles) | 8571d251 | 2018-02-16 20:17:33 | [diff] [blame] | 2214 | ":reflection_jni_headers", |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2215 | "//content/public/android:jni", |
Jinsuk Kim | 7ff0db5c | 2018-05-16 03:03:05 | [diff] [blame] | 2216 | "//device/gamepad/public/mojom", |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2217 | "//media", |
| 2218 | "//media/capture/content/android", |
| 2219 | "//media/capture/video/android", |
Muyuan Li | 8b86c25 | 2018-05-08 22:17:25 | [diff] [blame] | 2220 | "//ui/accessibility:ax_assistant", |
| 2221 | "//ui/accessibility/mojom", |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2222 | "//ui/android", |
Eric Karl | 465a525 | 2018-01-10 21:16:27 | [diff] [blame] | 2223 | "//ui/compositor", |
Scott Violet | c33a6b52 | 2018-06-20 13:44:47 | [diff] [blame] | 2224 | "//ui/compositor/host", |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2225 | ] |
Chris Blume | e4264428 | 2018-07-10 04:56:24 | [diff] [blame] | 2226 | if (enable_vulkan) { |
| 2227 | deps += [ "//gpu/vulkan/init" ] |
| 2228 | } |
miu | 32fb899 | 2017-01-04 01:38:53 | [diff] [blame] | 2229 | defines += [ |
| 2230 | "APPCACHE_USE_SIMPLE_CACHE", |
| 2231 | "ENABLE_SCREEN_CAPTURE=1", |
| 2232 | ] |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2233 | libs += [ "jnigraphics" ] |
| 2234 | } else { |
| 2235 | # Not Android. |
| 2236 | sources += [ |
chenwilliam | e88d836 | 2017-03-21 02:34:30 | [diff] [blame] | 2237 | # Devtools frontend not included in Android |
| 2238 | "devtools/devtools_frontend_host_impl.cc", |
| 2239 | "devtools/devtools_frontend_host_impl.h", |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 2240 | "host_zoom_level_context.cc", |
| 2241 | "host_zoom_level_context.h", |
| 2242 | "host_zoom_map_impl.cc", |
| 2243 | "host_zoom_map_impl.h", |
| 2244 | "host_zoom_map_observer.cc", |
| 2245 | "host_zoom_map_observer.h", |
chenwilliam | e88d836 | 2017-03-21 02:34:30 | [diff] [blame] | 2246 | |
brettw | 24746e5 | 2016-12-07 04:26:17 | [diff] [blame] | 2247 | # Most speech code is non-Android. |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2248 | "speech/audio_buffer.cc", |
| 2249 | "speech/audio_buffer.h", |
| 2250 | "speech/audio_encoder.cc", |
| 2251 | "speech/audio_encoder.h", |
| 2252 | "speech/chunked_byte_buffer.cc", |
| 2253 | "speech/chunked_byte_buffer.h", |
| 2254 | "speech/endpointer/endpointer.cc", |
| 2255 | "speech/endpointer/endpointer.h", |
| 2256 | "speech/endpointer/energy_endpointer.cc", |
| 2257 | "speech/endpointer/energy_endpointer.h", |
| 2258 | "speech/endpointer/energy_endpointer_params.cc", |
| 2259 | "speech/endpointer/energy_endpointer_params.h", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2260 | "speech/speech_recognition_engine.cc", |
| 2261 | "speech/speech_recognition_engine.h", |
| 2262 | "speech/speech_recognizer_impl.cc", |
| 2263 | "speech/speech_recognizer_impl.h", |
Kim Paulhamus | fbe092bf | 2017-11-21 16:46:08 | [diff] [blame] | 2264 | |
| 2265 | # Most webauth code is non-Android |
Kim Paulhamus | fbe092bf | 2017-11-21 16:46:08 | [diff] [blame] | 2266 | "webauth/authenticator_impl.cc", |
| 2267 | "webauth/authenticator_impl.h", |
Balazs Engedy | 2b1540a5 | 2018-03-30 11:07:39 | [diff] [blame] | 2268 | "webauth/authenticator_type_converters.cc", |
| 2269 | "webauth/authenticator_type_converters.h", |
Balazs Engedy | 00c5cea | 2018-03-30 15:36:39 | [diff] [blame] | 2270 | "webauth/scoped_virtual_authenticator_environment.cc", |
| 2271 | "webauth/scoped_virtual_authenticator_environment.h", |
| 2272 | "webauth/virtual_authenticator.cc", |
| 2273 | "webauth/virtual_authenticator.h", |
| 2274 | "webauth/virtual_discovery.cc", |
| 2275 | "webauth/virtual_discovery.h", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2276 | ] |
Kim Paulhamus | 35995bb6 | 2018-01-05 11:47:04 | [diff] [blame] | 2277 | deps += [ "//third_party/flac" ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2278 | } |
| 2279 | |
| 2280 | if (is_mac) { |
jiangj | 2bd42fd | 2015-04-18 13:29:06 | [diff] [blame] | 2281 | deps += [ |
rsesek | 02aa51c | 2016-05-11 02:13:57 | [diff] [blame] | 2282 | "//media", |
jiangj | 2bd42fd | 2015-04-18 13:29:06 | [diff] [blame] | 2283 | "//third_party/mozilla", |
jiangj | 2bd42fd | 2015-04-18 13:29:06 | [diff] [blame] | 2284 | "//ui/accelerated_widget_mac", |
| 2285 | ] |
rsesek | 02aa51c | 2016-05-11 02:13:57 | [diff] [blame] | 2286 | libs += [ |
| 2287 | "Carbon.framework", |
| 2288 | "QuartzCore.framework", |
| 2289 | "IOSurface.framework", |
| 2290 | ] |
Christopher Cameron | 6a1e0347 | 2018-03-19 21:04:27 | [diff] [blame] | 2291 | sources += [ |
Christopher Cameron | 6b34682 | 2018-03-29 00:14:23 | [diff] [blame] | 2292 | "renderer_host/popup_window_mac.h", |
| 2293 | "renderer_host/popup_window_mac.mm", |
Christopher Cameron | ef0ac41 | 2018-06-26 01:20:02 | [diff] [blame] | 2294 | "renderer_host/render_widget_host_ns_view_bridge_local.h", |
Christopher Cameron | 98d4956 | 2018-06-20 06:58:05 | [diff] [blame] | 2295 | "renderer_host/render_widget_host_ns_view_bridge_local.mm", |
Christopher Cameron | 1e229ef | 2018-03-21 06:54:08 | [diff] [blame] | 2296 | "renderer_host/render_widget_host_ns_view_client.h", |
Christopher Cameron | 6a1e0347 | 2018-03-19 21:04:27 | [diff] [blame] | 2297 | "renderer_host/render_widget_host_view_cocoa.h", |
| 2298 | "renderer_host/render_widget_host_view_cocoa.mm", |
| 2299 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2300 | } |
| 2301 | |
| 2302 | if (is_chromeos) { |
mukai | 2dc70ed3 | 2014-10-29 01:01:43 | [diff] [blame] | 2303 | deps += [ |
| 2304 | "//chromeos", |
| 2305 | "//chromeos:power_manager_proto", |
| 2306 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2307 | } |
| 2308 | |
| 2309 | if (use_aura) { |
| 2310 | deps += [ |
Scott Violet | 2eb9229 | 2017-11-06 22:53:10 | [diff] [blame] | 2311 | "//services/ui:lib", |
ben | 6b0453d1 | 2016-07-02 04:27:19 | [diff] [blame] | 2312 | "//services/ui/public/cpp", |
| 2313 | "//services/ui/public/interfaces", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2314 | "//ui/aura", |
mohsen | 166a918 | 2015-02-09 18:19:09 | [diff] [blame] | 2315 | "//ui/aura_extra", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2316 | "//ui/strings", |
James Robinson | 060f2e3 | 2014-09-10 22:31:37 | [diff] [blame] | 2317 | "//ui/wm", |
Thiago Farina | 3b086a0 | 2017-05-30 22:32:50 | [diff] [blame] | 2318 | "//ui/wm/public", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2319 | ] |
rjkroege | c109de61 | 2015-11-19 01:40:47 | [diff] [blame] | 2320 | sources += [ |
sky | 52a39e34 | 2016-12-17 17:23:22 | [diff] [blame] | 2321 | "renderer_host/delegated_frame_host_client_aura.cc", |
| 2322 | "renderer_host/delegated_frame_host_client_aura.h", |
jonross | 2843ae36 | 2016-10-21 16:48:23 | [diff] [blame] | 2323 | "renderer_host/render_widget_host_view_event_handler.cc", |
| 2324 | "renderer_host/render_widget_host_view_event_handler.h", |
rjkroege | c109de61 | 2015-11-19 01:40:47 | [diff] [blame] | 2325 | ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2326 | } else { # Not aura. |
| 2327 | sources -= [ |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2328 | "renderer_host/input/synthetic_gesture_target_aura.cc", |
| 2329 | "renderer_host/input/synthetic_gesture_target_aura.h", |
mohsen | b0eeba7 | 2015-08-09 06:20:08 | [diff] [blame] | 2330 | "renderer_host/input/touch_selection_controller_client_aura.cc", |
| 2331 | "renderer_host/input/touch_selection_controller_client_aura.h", |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2332 | "renderer_host/native_web_keyboard_event_aura.cc", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2333 | "renderer_host/render_widget_host_view_aura.cc", |
| 2334 | "renderer_host/render_widget_host_view_aura.h", |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2335 | "web_contents/aura/gesture_nav_simple.cc", |
| 2336 | "web_contents/aura/gesture_nav_simple.h", |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2337 | "web_contents/aura/overscroll_navigation_overlay.cc", |
| 2338 | "web_contents/aura/overscroll_navigation_overlay.h", |
nsatragno | c0b2fa5 | 2015-04-09 22:30:51 | [diff] [blame] | 2339 | "web_contents/aura/overscroll_window_animation.cc", |
| 2340 | "web_contents/aura/overscroll_window_animation.h", |
| 2341 | "web_contents/aura/overscroll_window_delegate.cc", |
| 2342 | "web_contents/aura/overscroll_window_delegate.h", |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2343 | "web_contents/aura/shadow_layer_delegate.cc", |
| 2344 | "web_contents/aura/shadow_layer_delegate.h", |
[email protected] | c528d87 | 2014-06-27 03:17:16 | [diff] [blame] | 2345 | "web_contents/web_contents_view_aura.cc", |
| 2346 | "web_contents/web_contents_view_aura.h", |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2347 | ] |
| 2348 | } |
| 2349 | |
| 2350 | if (use_aura || is_mac) { |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2351 | sources += [ |
| 2352 | "compositor/browser_compositor_output_surface.cc", |
| 2353 | "compositor/browser_compositor_output_surface.h", |
| 2354 | "compositor/gpu_browser_compositor_output_surface.cc", |
| 2355 | "compositor/gpu_browser_compositor_output_surface.h", |
Christopher Cameron | 8de941fb | 2017-12-08 05:54:31 | [diff] [blame] | 2356 | "compositor/gpu_output_surface_mac.cc", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2357 | "compositor/gpu_output_surface_mac.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2358 | "compositor/gpu_process_transport_factory.cc", |
| 2359 | "compositor/gpu_process_transport_factory.h", |
| 2360 | "compositor/gpu_surfaceless_browser_compositor_output_surface.cc", |
| 2361 | "compositor/gpu_surfaceless_browser_compositor_output_surface.h", |
| 2362 | "compositor/image_transport_factory.cc", |
| 2363 | "compositor/image_transport_factory.h", |
| 2364 | "compositor/offscreen_browser_compositor_output_surface.cc", |
| 2365 | "compositor/offscreen_browser_compositor_output_surface.h", |
| 2366 | "compositor/owned_mailbox.cc", |
| 2367 | "compositor/owned_mailbox.h", |
| 2368 | "compositor/reflector_impl.cc", |
| 2369 | "compositor/reflector_impl.h", |
| 2370 | "compositor/reflector_texture.cc", |
| 2371 | "compositor/reflector_texture.h", |
| 2372 | "compositor/software_browser_compositor_output_surface.cc", |
| 2373 | "compositor/software_browser_compositor_output_surface.h", |
kylechar | 150e09e1 | 2017-10-19 13:57:52 | [diff] [blame] | 2374 | "compositor/viz_process_transport_factory.cc", |
| 2375 | "compositor/viz_process_transport_factory.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2376 | "context_factory.cc", |
| 2377 | "renderer_host/browser_compositor_view_mac.h", |
| 2378 | "renderer_host/browser_compositor_view_mac.mm", |
| 2379 | "renderer_host/delegated_frame_host.cc", |
| 2380 | "renderer_host/delegated_frame_host.h", |
brettw | b167c733 | 2016-09-07 22:52:46 | [diff] [blame] | 2381 | ] |
Daniel Bratell | 5de17f6 | 2017-11-14 22:09:02 | [diff] [blame] | 2382 | if (is_mac) { |
| 2383 | jumbo_excluded_sources = [ |
| 2384 | # Both Mac SDK headers and third_party/khronos/GLES2/gl2ext.h |
| 2385 | # declare macros GL_LINES_ADJACENCY_EXT, GL_LINE_STRIP_ADJACENCY_EXT, |
| 2386 | # GL_TRIANGLES_ADJACENCY_EXT and GL_TRIANGLE_STRIP_ADJACENCY_EXT. They |
| 2387 | # get the same values but with different formatting (0xD vs 0x000D). |
| 2388 | # https://crbug.com/783666 |
Christopher Cameron | 8de941fb | 2017-12-08 05:54:31 | [diff] [blame] | 2389 | "compositor/gpu_output_surface_mac.cc", |
Daniel Bratell | 5de17f6 | 2017-11-14 22:09:02 | [diff] [blame] | 2390 | ] |
| 2391 | } |
sohan.jyoti | 86c41c7 | 2016-04-26 15:33:20 | [diff] [blame] | 2392 | if (enable_vulkan) { |
| 2393 | sources += [ |
| 2394 | "compositor/vulkan_browser_compositor_output_surface.cc", |
| 2395 | "compositor/vulkan_browser_compositor_output_surface.h", |
| 2396 | ] |
Michael Spang | 7509e6d | 2018-05-16 17:08:28 | [diff] [blame] | 2397 | deps += [ "//gpu/vulkan/init" ] |
sohan.jyoti | 86c41c7 | 2016-04-26 15:33:20 | [diff] [blame] | 2398 | } |
samans | 72b2a28 | 2016-12-17 02:44:15 | [diff] [blame] | 2399 | deps += [ |
Fady Samuel | e478607 | 2017-07-24 20:03:38 | [diff] [blame] | 2400 | "//components/viz/service", |
samans | 72b2a28 | 2016-12-17 02:44:15 | [diff] [blame] | 2401 | "//ui/compositor", |
Scott Violet | c33a6b52 | 2018-06-20 13:44:47 | [diff] [blame] | 2402 | "//ui/compositor/host", |
samans | 72b2a28 | 2016-12-17 02:44:15 | [diff] [blame] | 2403 | ] |
[email protected] | 604b127 | 2014-07-24 11:27:53 | [diff] [blame] | 2404 | } |
| 2405 | |
cmasone | db5203e | 2014-09-11 18:18:38 | [diff] [blame] | 2406 | if (is_linux && use_dbus) { |
ppi | 2438a3e | 2014-10-28 21:55:10 | [diff] [blame] | 2407 | deps += [ "//dbus" ] |
[email protected] | 743530f | 2014-06-12 19:38:50 | [diff] [blame] | 2408 | } |
cjhopman | 2fd48fd | 2014-09-24 00:52:56 | [diff] [blame] | 2409 | |
jbroman | 79c079be | 2016-04-20 00:17:27 | [diff] [blame] | 2410 | if (use_ozone) { |
| 2411 | deps += [ "//ui/ozone" ] |
| 2412 | } |
piman | a333e3d | 2016-04-27 02:37:25 | [diff] [blame] | 2413 | |
ochang | dd89a1e | 2016-06-08 16:39:01 | [diff] [blame] | 2414 | if (enable_ipc_fuzzer) { |
| 2415 | configs += [ "//tools/ipc_fuzzer:ipc_fuzzer_config" ] |
| 2416 | } |
kojii | 30add38f | 2016-07-14 02:10:32 | [diff] [blame] | 2417 | |
| 2418 | if (use_minikin_hyphenation) { |
| 2419 | sources += [ |
| 2420 | "hyphenation/hyphenation_impl.cc", |
| 2421 | "hyphenation/hyphenation_impl.h", |
| 2422 | ] |
kojii | 30add38f | 2016-07-14 02:10:32 | [diff] [blame] | 2423 | } |
Tom Sepez | 006b815 | 2018-01-17 20:45:01 | [diff] [blame] | 2424 | |
Julia Tuttle | f9602834 | 2018-01-29 23:28:52 | [diff] [blame] | 2425 | if (enable_reporting) { |
| 2426 | sources += [ |
| 2427 | "net/reporting_service_proxy.cc", |
| 2428 | "net/reporting_service_proxy.h", |
| 2429 | ] |
| 2430 | } |
[email protected] | 4db51ec | 2014-05-29 21:08:32 | [diff] [blame] | 2431 | } |
ben | 66696d1 | 2016-03-08 17:48:00 | [diff] [blame] | 2432 | |
Scott Violet | c78fef73 | 2018-03-06 17:42:53 | [diff] [blame] | 2433 | buildflag_header("accessibility_buildflags") { |
| 2434 | header = "accessibility_buildflags.h" |
Tim Brown | 07e062e8 | 2017-06-26 19:38:03 | [diff] [blame] | 2435 | header_dir = "content/browser/accessibility" |
| 2436 | flags = [ "USE_ATK=$use_atk" ] |
| 2437 | } |
| 2438 | |
Torne (Richard Coles) | 8571d251 | 2018-02-16 20:17:33 | [diff] [blame] | 2439 | if (is_android) { |
| 2440 | generate_jar_jni("reflection_jni_headers") { |
| 2441 | jni_package = "content" |
| 2442 | classes = [ |
| 2443 | "java/lang/Class.class", |
| 2444 | "java/lang/Object.class", |
| 2445 | "java/lang/reflect/AccessibleObject.class", |
| 2446 | "java/lang/reflect/Method.class", |
| 2447 | "java/lang/reflect/Modifier.class", |
| 2448 | ] |
| 2449 | } |
| 2450 | } |
| 2451 | |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 2452 | # See comment at the top of //content/BUILD.gn for how this works. |
| 2453 | group("for_content_tests") { |
| 2454 | visibility = [ "//content/test/*" ] |
| 2455 | if (!is_component_build) { |
| 2456 | public_deps = [ |
| 2457 | ":browser", |
| 2458 | ] |
jam | 447407fb | 2016-05-06 17:57:40 | [diff] [blame] | 2459 | } else { |
| 2460 | public_deps = [ |
| 2461 | "//third_party/leveldatabase", |
| 2462 | ] |
brettw | b78fc9e | 2016-03-25 21:02:51 | [diff] [blame] | 2463 | } |
| 2464 | } |