[email protected] | d9e2b8473 | 2014-04-30 16:28:14 | [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 | |
Adithya Srinivasan | b37ee32 | 2017-08-15 14:23:31 | [diff] [blame] | 5 | import("//build/buildflag_header.gni") |
Nico Weber | 26af1d3 | 2018-01-31 19:53:11 | [diff] [blame] | 6 | import("//build/compiled_action.gni") |
kojii | 30add38f | 2016-07-14 02:10:32 | [diff] [blame] | 7 | import("//build/config/features.gni") |
Daniel Bratell | cbaa1d4 | 2017-09-15 09:08:10 | [diff] [blame] | 8 | import("//build/config/jumbo.gni") |
[email protected] | 7bec12b | 2014-05-21 19:46:42 | [diff] [blame] | 9 | import("//build/config/ui.gni") |
lukasza | c32cfbb | 2016-08-16 21:08:35 | [diff] [blame] | 10 | import("//testing/libfuzzer/fuzzer_test.gni") |
[email protected] | 11274d9 | 2015-01-14 03:08:19 | [diff] [blame] | 11 | import("//testing/test.gni") |
brettw | 2cf0a69 | 2016-11-11 23:14:12 | [diff] [blame] | 12 | import("//third_party/WebKit/public/public_features.gni") |
[email protected] | 7bec12b | 2014-05-21 19:46:42 | [diff] [blame] | 13 | import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| 14 | import("//third_party/WebKit/Source/config.gni") |
[email protected] | 2d033ea | 2014-06-10 19:23:40 | [diff] [blame] | 15 | import("//third_party/WebKit/Source/platform/platform_generated.gni") |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 16 | |
[email protected] | 1113928 | 2014-06-19 20:57:45 | [diff] [blame] | 17 | # Most targets in this file are private actions so use that as the default. |
[email protected] | 7e2d844 | 2014-09-08 22:39:22 | [diff] [blame] | 18 | visibility = [ ":*" ] |
[email protected] | 1113928 | 2014-06-19 20:57:45 | [diff] [blame] | 19 | |
Eero Häkkinen | 51f5063 | 2018-02-12 08:25:46 | [diff] [blame] | 20 | blink_platform_avx_files = [ |
| 21 | "audio/cpu/x86/VectorMathAVX.cpp", |
| 22 | "audio/cpu/x86/VectorMathAVX.h", |
| 23 | ] |
| 24 | |
Eero Häkkinen | 85162c43 | 2017-12-16 17:31:24 | [diff] [blame] | 25 | blink_platform_neon_files = [ |
| 26 | "audio/cpu/arm/VectorMathNEON.h", |
| 27 | "graphics/cpu/arm/WebGLImageConversionNEON.h", |
| 28 | ] |
[email protected] | 52cbbd9 | 2014-05-14 18:17:36 | [diff] [blame] | 29 | |
Eero Häkkinen | 3dfdf0fb | 2017-12-19 13:03:00 | [diff] [blame] | 30 | blink_platform_msa_files = [ |
| 31 | "audio/cpu/mips/VectorMathMSA.h", |
| 32 | "graphics/cpu/mips/WebGLImageConversionMSA.h", |
| 33 | ] |
Prashant.Patil | 568a468 | 2016-09-02 12:24:06 | [diff] [blame] | 34 | |
Eero Häkkinen | a3027612 | 2017-12-15 21:38:46 | [diff] [blame] | 35 | blink_platform_sse_files = [ |
| 36 | "audio/cpu/x86/VectorMathSSE.h", |
| 37 | "graphics/cpu/x86/WebGLImageConversionSSE.h", |
| 38 | ] |
[email protected] | 08faf46a | 2015-06-22 11:56:17 | [diff] [blame] | 39 | |
Kent Tamura | 68e702f | 2017-10-04 06:05:54 | [diff] [blame] | 40 | make_names("font_family_names") { |
Kent Tamura | b0526fe3 | 2017-10-05 04:12:43 | [diff] [blame] | 41 | in_files = [ "fonts/font_family_names.json5" ] |
Kent Tamura | 68e702f | 2017-10-04 06:05:54 | [diff] [blame] | 42 | output_dir = blink_platform_output_dir |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | action("runtime_enabled_features") { |
| 46 | script = "../build/scripts/make_runtime_features.py" |
| 47 | |
Kunihiko Sakamoto | ef0c0653 | 2017-09-14 05:51:18 | [diff] [blame] | 48 | runtime_enabled_features_json5 = "runtime_enabled_features.json5" |
shahriar rostami | 5206c50 | 2017-11-02 04:50:22 | [diff] [blame] | 49 | inputs = |
| 50 | scripts_for_json5_files + [ |
| 51 | runtime_enabled_features_json5, |
| 52 | "../build/scripts/templates/runtime_enabled_features.cc.tmpl", |
| 53 | "../build/scripts/templates/runtime_enabled_features.h.tmpl", |
| 54 | "../build/scripts/templates/RuntimeEnabledFeaturesTestHelpers.h.tmpl", |
| 55 | ] |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 56 | |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 57 | outputs = [ |
Kunihiko Sakamoto | ef0c0653 | 2017-09-14 05:51:18 | [diff] [blame] | 58 | "$blink_platform_output_dir/runtime_enabled_features.cc", |
| 59 | "$blink_platform_output_dir/runtime_enabled_features.h", |
shahriar rostami | 5206c50 | 2017-11-02 04:50:22 | [diff] [blame] | 60 | "$blink_platform_output_dir/testing/RuntimeEnabledFeaturesTestHelpers.h", |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 61 | ] |
| 62 | |
| 63 | args = [ |
ktyliu | 5821741 | 2017-02-09 02:26:20 | [diff] [blame] | 64 | rebase_path(runtime_enabled_features_json5, root_build_dir), |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 65 | "--output_dir", |
[email protected] | 2d033ea | 2014-06-10 19:23:40 | [diff] [blame] | 66 | rebase_path(blink_platform_output_dir, root_build_dir), |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 67 | ] |
| 68 | } |
| 69 | |
| 70 | action("color_data") { |
| 71 | script = "../build/scripts/gperf.py" |
| 72 | |
| 73 | color_data_gperf = "ColorData.gperf" |
slan | 17e5ce7f | 2015-09-25 00:04:45 | [diff] [blame] | 74 | inputs = [ |
| 75 | color_data_gperf, |
| 76 | ] |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 77 | |
[email protected] | 2d033ea | 2014-06-10 19:23:40 | [diff] [blame] | 78 | output_file = "$blink_platform_output_dir/ColorData.cpp" |
slan | 17e5ce7f | 2015-09-25 00:04:45 | [diff] [blame] | 79 | outputs = [ |
| 80 | output_file, |
| 81 | ] |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 82 | |
erikchen | 717ca12 | 2016-10-11 00:39:01 | [diff] [blame] | 83 | args = [] |
| 84 | if (is_mac && !use_system_xcode) { |
| 85 | args += [ |
| 86 | "--developer_dir", |
| 87 | hermetic_xcode_path, |
| 88 | ] |
| 89 | } |
| 90 | |
| 91 | args += [ |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 92 | gperf_exe, |
| 93 | "--key-positions=*", |
slan | 17e5ce7f | 2015-09-25 00:04:45 | [diff] [blame] | 94 | "-D", |
| 95 | "-s", |
| 96 | "2", |
[email protected] | 2b87c06 | 2014-05-19 06:20:35 | [diff] [blame] | 97 | rebase_path(color_data_gperf, root_build_dir), |
| 98 | "--output-file=" + rebase_path(output_file, root_build_dir), |
| 99 | ] |
| 100 | } |
| 101 | |
Nico Weber | 26af1d3 | 2018-01-31 19:53:11 | [diff] [blame] | 102 | compiled_action("character_data") { |
| 103 | tool = ":character_data_generator" |
Rouslan Solomakhin | 873601c6 | 2018-01-31 15:32:16 | [diff] [blame] | 104 | outputs = [ |
Nico Weber | 26af1d3 | 2018-01-31 19:53:11 | [diff] [blame] | 105 | "$blink_platform_output_dir/CharacterPropertyData.cpp", |
Rouslan Solomakhin | 873601c6 | 2018-01-31 15:32:16 | [diff] [blame] | 106 | ] |
Nico Weber | 26af1d3 | 2018-01-31 19:53:11 | [diff] [blame] | 107 | args = rebase_path(outputs, root_build_dir) |
kojii | 9db08cc | 2016-01-28 23:42:28 | [diff] [blame] | 108 | } |
| 109 | |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 110 | action("instrumentation_probes") { |
alph | 4ed0890 | 2017-04-05 00:59:52 | [diff] [blame] | 111 | script = "../build/scripts/make_instrumenting_probes.py" |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 112 | |
alph | 80b9751 | 2017-03-29 05:20:13 | [diff] [blame] | 113 | input_file = "probe/PlatformProbes.pidl" |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 114 | inputs = [ |
| 115 | input_file, |
alph | 4ed0890 | 2017-04-05 00:59:52 | [diff] [blame] | 116 | "probe/PlatformProbes.json5", |
| 117 | "../build/scripts/templates/InstrumentingProbesImpl.cpp.tmpl", |
| 118 | "../build/scripts/templates/InstrumentingProbesInl.h.tmpl", |
| 119 | "../build/scripts/templates/ProbeSink.h.tmpl", |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 120 | ] |
| 121 | |
| 122 | outputs = [ |
alph | 80b9751 | 2017-03-29 05:20:13 | [diff] [blame] | 123 | "$blink_platform_output_dir/PlatformProbeSink.h", |
alph | 80b9751 | 2017-03-29 05:20:13 | [diff] [blame] | 124 | "$blink_platform_output_dir/PlatformProbesImpl.cpp", |
Kinuko Yasuda | 74d1c9e | 2017-05-31 14:08:51 | [diff] [blame] | 125 | "$blink_platform_output_dir/PlatformProbesInl.h", |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 126 | ] |
| 127 | |
| 128 | args = [ |
| 129 | rebase_path(inputs[0], root_build_dir), |
alph | 4ed0890 | 2017-04-05 00:59:52 | [diff] [blame] | 130 | "--config", |
| 131 | rebase_path("probe/PlatformProbes.json5", root_build_dir), |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 132 | "--output_dir", |
| 133 | rebase_path(blink_platform_output_dir, root_build_dir), |
| 134 | ] |
| 135 | } |
| 136 | |
kojii | 9db08cc | 2016-01-28 23:42:28 | [diff] [blame] | 137 | executable("character_data_generator") { |
| 138 | sources = [ |
nona | 47ae623 | 2016-04-07 09:25:44 | [diff] [blame] | 139 | "text/CharacterPropertyDataGenerator.cpp", |
| 140 | "text/CharacterPropertyDataGenerator.h", |
kojii | 9db08cc | 2016-01-28 23:42:28 | [diff] [blame] | 141 | ] |
| 142 | configs += [ "//third_party/WebKit/Source:config" ] |
| 143 | deps = [ |
thomasanderson | 84fa8b0 | 2017-05-18 23:38:47 | [diff] [blame] | 144 | "//build/config:exe_and_shlib_deps", |
brucedawson | 3eee0c9 | 2016-04-22 23:47:05 | [diff] [blame] | 145 | |
| 146 | # Default manifest on Windows (a no-op elsewhere). |
| 147 | "//build/win:default_exe_manifest", |
kojii | 9db08cc | 2016-01-28 23:42:28 | [diff] [blame] | 148 | "//third_party/icu", |
| 149 | ] |
| 150 | } |
| 151 | |
[email protected] | aca959f | 2014-05-28 01:58:08 | [diff] [blame] | 152 | # This isn't strictly necessary since we can just add the deps to "platform", |
| 153 | # but it helps to have the targets match the GYP build. |
| 154 | group("make_platform_generated") { |
[email protected] | 7e2d844 | 2014-09-08 22:39:22 | [diff] [blame] | 155 | visibility = [] # Allow re-assignment of list. |
| 156 | visibility = [ "//third_party/WebKit/Source/*" ] |
[email protected] | bdf81e8 | 2015-09-18 01:21:23 | [diff] [blame] | 157 | public_deps = [ |
kojii | 9db08cc | 2016-01-28 23:42:28 | [diff] [blame] | 158 | ":character_data", |
[email protected] | aca959f | 2014-05-28 01:58:08 | [diff] [blame] | 159 | ":color_data", |
| 160 | ":font_family_names", |
alph | 480ae9f | 2017-03-23 19:42:37 | [diff] [blame] | 161 | ":instrumentation_probes", |
[email protected] | aca959f | 2014-05-28 01:58:08 | [diff] [blame] | 162 | ":runtime_enabled_features", |
Takashi Toyoshima | f5db82f | 2017-10-19 21:54:02 | [diff] [blame] | 163 | "//third_party/WebKit/Source/platform/network:make_generated", |
[email protected] | aca959f | 2014-05-28 01:58:08 | [diff] [blame] | 164 | ] |
| 165 | } |
| 166 | |
sigbjornf | 60880bc | 2016-11-22 10:39:24 | [diff] [blame] | 167 | import("//build/config/pch.gni") |
| 168 | |
Alexander Timin | 4e59fae8 | 2017-07-25 09:12:42 | [diff] [blame] | 169 | config("blink_platform_config") { |
| 170 | include_dirs = [ |
| 171 | #"$angle_path/include", |
| 172 | "$root_gen_dir/blink", |
| 173 | ] |
| 174 | |
| 175 | configs = [ |
| 176 | "//third_party/WebKit/Source:config", |
| 177 | "//third_party/WebKit/Source:inside_blink", |
| 178 | |
| 179 | # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 180 | "//build/config/compiler:no_size_t_to_int_warning", |
| 181 | ] |
| 182 | } |
| 183 | |
Jeremy Roman | 807c263 | 2017-12-19 03:22:05 | [diff] [blame] | 184 | # Deps and configs required to include platform headers. Applied to all |
| 185 | # platform constituent targets and exported to dependents. |
| 186 | group("blink_platform_public_deps") { |
| 187 | visibility = [] # Allow re-assignment of list. |
| 188 | visibility = [ "//third_party/WebKit/Source/platform/*" ] |
| 189 | public_deps = [ |
| 190 | ":make_platform_generated", |
| 191 | ":rcs_count_everything", |
| 192 | "//base", |
| 193 | "//cc", |
| 194 | "//cc/animation", |
| 195 | "//cc/paint", |
| 196 | "//gpu/command_buffer/client:client", |
Jeremy Roman | 807c263 | 2017-12-19 03:22:05 | [diff] [blame] | 197 | "//gpu/command_buffer/client:gles2_interface", |
| 198 | "//gpu/command_buffer/common:common", |
| 199 | "//media", |
| 200 | "//net", |
Sam McNally | 4b4a082 | 2018-01-15 10:44:47 | [diff] [blame] | 201 | "//services/device/public/interfaces:generic_sensor_blink", |
| 202 | "//services/device/public/interfaces:interfaces_blink", |
Jeremy Roman | 807c263 | 2017-12-19 03:22:05 | [diff] [blame] | 203 | "//services/network/public/cpp:cpp", |
Ken Rockot | 54311e6 | 2018-02-10 19:01:52 | [diff] [blame] | 204 | "//services/network/public/mojom", |
| 205 | "//services/network/public/mojom:mojom_blink", |
Jeremy Roman | 807c263 | 2017-12-19 03:22:05 | [diff] [blame] | 206 | "//services/resource_coordinator/public/cpp:resource_coordinator_cpp", |
Ken Rockot | 95c888a4 | 2018-02-11 05:54:11 | [diff] [blame] | 207 | "//services/resource_coordinator/public/mojom:mojom_blink", |
Ken Rockot | 543f5e3 | 2018-02-04 02:13:50 | [diff] [blame] | 208 | "//services/service_manager/public/mojom:mojom_blink", |
Jeremy Roman | 807c263 | 2017-12-19 03:22:05 | [diff] [blame] | 209 | "//skia", |
| 210 | "//third_party:jpeg", |
Michael Lippautz | 6c5df01 | 2017-12-19 18:05:46 | [diff] [blame] | 211 | "//third_party/WebKit/Source/platform/heap:blink_heap_incremental_marking", |
Jeremy Roman | 807c263 | 2017-12-19 03:22:05 | [diff] [blame] | 212 | "//third_party/WebKit/Source/platform/network:make_generated", |
| 213 | "//third_party/WebKit/Source/platform/wtf", |
| 214 | "//third_party/WebKit/common:blink_common", |
| 215 | "//third_party/WebKit/common:mojo_platform_bindings_blink", |
| 216 | "//third_party/WebKit/public:blink_headers", |
| 217 | "//third_party/WebKit/public:mojo_bindings_blink", |
| 218 | "//third_party/iccjpeg", |
| 219 | "//third_party/libpng", |
| 220 | "//third_party/libwebp", |
| 221 | "//third_party/ots", |
| 222 | "//url", |
| 223 | "//v8", |
| 224 | ] |
| 225 | public_configs = [ "//third_party/WebKit/Source:features" ] |
| 226 | } |
| 227 | |
Adithya Srinivasan | b37ee32 | 2017-08-15 14:23:31 | [diff] [blame] | 228 | declare_args() { |
| 229 | runtime_call_stats_count_everything = false |
| 230 | } |
| 231 | |
| 232 | buildflag_header("rcs_count_everything") { |
| 233 | header = "RuntimeCallStatsCountEverything.h" |
| 234 | |
| 235 | header_dir = "blink/platform/bindings" |
| 236 | |
| 237 | flags = [ "RCS_COUNT_EVERYTHING=$runtime_call_stats_count_everything" ] |
| 238 | } |
| 239 | |
Alexander Timin | 4e59fae8 | 2017-07-25 09:12:42 | [diff] [blame] | 240 | config("blink_platform_implementation") { |
| 241 | defines = [ "BLINK_PLATFORM_IMPLEMENTATION=1" ] |
| 242 | } |
| 243 | |
sigbjornf | 60880bc | 2016-11-22 10:39:24 | [diff] [blame] | 244 | config("blink_platform_pch") { |
| 245 | if (enable_precompiled_headers) { |
| 246 | if (is_win) { |
| 247 | # This is a string rather than a file GN knows about. It has to match |
| 248 | # exactly what's in the /FI flag below, and what might appear in the |
| 249 | # source code in quotes for an #include directive. |
matthewtff | ba244ac | 2017-03-24 15:37:14 | [diff] [blame] | 250 | precompiled_header = rebase_path("Precompile-platform.h", root_build_dir) |
sigbjornf | 60880bc | 2016-11-22 10:39:24 | [diff] [blame] | 251 | |
| 252 | # This is a file that GN will compile with the above header. It will be |
| 253 | # implicitly added to the sources (potentially multiple times, with one |
| 254 | # variant for each language used in the target). |
| 255 | precompiled_source = |
| 256 | "//third_party/WebKit/Source/platform/win/Precompile-platform.cpp" |
| 257 | |
| 258 | # Force include the header. |
| 259 | cflags = [ "/FI$precompiled_header" ] |
matthewtff | ba244ac | 2017-03-24 15:37:14 | [diff] [blame] | 260 | } else if (is_mac) { |
| 261 | precompiled_source = |
| 262 | "//third_party/WebKit/Source/platform/Precompile-platform.h" |
sigbjornf | 60880bc | 2016-11-22 10:39:24 | [diff] [blame] | 263 | } |
| 264 | } |
| 265 | } |
| 266 | |
Marcin Simonides | 2f14ea1 | 2018-01-23 20:30:03 | [diff] [blame] | 267 | source_set("platform_export") { |
| 268 | sources = [ |
| 269 | "PlatformExport.h", |
| 270 | ] |
| 271 | |
| 272 | visibility = [] # Allow re-assignment of list. |
| 273 | visibility = [ |
| 274 | ":platform", |
| 275 | "//mojo/public/cpp/bindings:wtf_support", |
| 276 | ] |
| 277 | } |
| 278 | |
Daniel Bratell | cbaa1d4 | 2017-09-15 09:08:10 | [diff] [blame] | 279 | jumbo_component("platform") { |
[email protected] | 7e2d844 | 2014-09-08 22:39:22 | [diff] [blame] | 280 | visibility = [] # Allow re-assignment of list. |
mek | 8919fe4 | 2016-05-31 22:24:11 | [diff] [blame] | 281 | visibility = [ |
benwells | eb509f5 | 2017-04-05 01:06:27 | [diff] [blame] | 282 | "//components/pdf/common:interfaces_blink", |
Renjie Liu | 8668849b | 2017-12-04 23:37:09 | [diff] [blame] | 283 | "//services/device/public/interfaces:interfaces_blink", |
mek | 8919fe4 | 2016-05-31 22:24:11 | [diff] [blame] | 284 | "//third_party/WebKit/*", |
Daniel Cheng | 7a059b0 | 2018-02-03 10:04:13 | [diff] [blame] | 285 | "//url/mojom:url_mojom_origin_blink", |
| 286 | "//url/mojom:url_mojom_gurl_blink", |
mek | 8919fe4 | 2016-05-31 22:24:11 | [diff] [blame] | 287 | ] |
[email protected] | 52cbbd9 | 2014-05-14 18:17:36 | [diff] [blame] | 288 | output_name = "blink_platform" |
| 289 | |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 290 | sources = [ |
| 291 | "AsyncFileSystemCallbacks.h", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 292 | "AsyncMethodRunner.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 293 | "CalculationValue.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 294 | "ContentDecryptionModuleResult.h", |
| 295 | "ContentSettingCallbacks.cpp", |
| 296 | "ContentSettingCallbacks.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 297 | "ContextMenu.cpp", |
| 298 | "ContextMenu.h", |
| 299 | "ContextMenuItem.cpp", |
| 300 | "ContextMenuItem.h", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 301 | "CrossOriginAttributeValue.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 302 | "CrossThreadCopier.cpp", |
| 303 | "CrossThreadCopier.h", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 304 | "CrossThreadFunctional.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 305 | "Crypto.cpp", |
| 306 | "Crypto.h", |
| 307 | "CryptoResult.h", |
| 308 | "Cursor.cpp", |
| 309 | "Cursor.h", |
Kinuko Yasuda | 74d1c9e | 2017-05-31 14:08:51 | [diff] [blame] | 310 | "DataResourceHelper.cpp", |
| 311 | "DataResourceHelper.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 312 | "DateComponents.cpp", |
| 313 | "DateComponents.h", |
| 314 | "Decimal.cpp", |
| 315 | "Decimal.h", |
| 316 | "DragImage.cpp", |
| 317 | "DragImage.h", |
| 318 | "EventDispatchForbiddenScope.cpp", |
| 319 | "EventDispatchForbiddenScope.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 320 | "FileMetadata.cpp", |
| 321 | "FileMetadata.h", |
| 322 | "FileSystemType.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 323 | "Histogram.cpp", |
| 324 | "Histogram.h", |
yhirano | 8de3a3a9 | 2016-10-20 06:47:26 | [diff] [blame] | 325 | "InstanceCounters.cpp", |
| 326 | "InstanceCounters.h", |
Keishi Hattori | 7c70aa5 | 2017-07-21 05:55:12 | [diff] [blame] | 327 | "InstanceCountersMemoryDumpProvider.cc", |
| 328 | "InstanceCountersMemoryDumpProvider.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 329 | "KeyboardCodes.h", |
| 330 | "KillRing.h", |
| 331 | "KillRingNone.cpp", |
| 332 | "Language.cpp", |
| 333 | "Language.h", |
| 334 | "LayoutLocale.cpp", |
| 335 | "LayoutLocale.h", |
| 336 | "LayoutTestSupport.cpp", |
| 337 | "LayoutTestSupport.h", |
| 338 | "LayoutUnit.cpp", |
| 339 | "LayoutUnit.h", |
| 340 | "Length.cpp", |
| 341 | "Length.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 342 | "LengthBox.h", |
| 343 | "LengthFunctions.cpp", |
| 344 | "LengthFunctions.h", |
| 345 | "LengthPoint.h", |
| 346 | "LengthSize.h", |
| 347 | "LifecycleNotifier.h", |
| 348 | "LifecycleObserver.h", |
| 349 | "LinkHash.cpp", |
| 350 | "LinkHash.h", |
Deepanjan Roy | 25b54f9 | 2017-08-22 19:23:15 | [diff] [blame] | 351 | "LongTaskDetector.cpp", |
| 352 | "LongTaskDetector.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 353 | "MemoryCoordinator.cpp", |
| 354 | "MemoryCoordinator.h", |
| 355 | "PODArena.h", |
| 356 | "PODFreeListArena.h", |
| 357 | "PODInterval.h", |
| 358 | "PODIntervalTree.h", |
| 359 | "PODRedBlackTree.h", |
| 360 | "PartitionAllocMemoryDumpProvider.cpp", |
| 361 | "PartitionAllocMemoryDumpProvider.h", |
| 362 | "PasteMode.h", |
joelhockey | bc84bc2 | 2017-04-20 00:47:36 | [diff] [blame] | 363 | "PlatformChromeClient.h", |
joelhockey | d3fb9e2 | 2017-05-11 06:39:29 | [diff] [blame] | 364 | "PlatformFrameView.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 365 | "Prerender.cpp", |
| 366 | "Prerender.h", |
| 367 | "PrerenderClient.h", |
Dominik Röttsches | 32f8cd3 | 2017-10-11 12:40:19 | [diff] [blame] | 368 | "ResolutionUnits.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 369 | "ScopedOrientationChangeIndicator.cpp", |
| 370 | "ScopedOrientationChangeIndicator.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 371 | "SecureTextInput.cpp", |
| 372 | "SecureTextInput.h", |
| 373 | "SerializedResource.h", |
| 374 | "SharedBuffer.cpp", |
| 375 | "SharedBuffer.h", |
| 376 | "SharedBufferChunkReader.cpp", |
| 377 | "SharedBufferChunkReader.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 378 | "Supplementable.cpp", |
| 379 | "Supplementable.h", |
| 380 | "Theme.cpp", |
| 381 | "Theme.h", |
| 382 | "ThemeTypes.h", |
Sami Kyostila | a77687f | 2018-01-04 13:47:21 | [diff] [blame] | 383 | "TimeClamper.cpp", |
| 384 | "TimeClamper.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 385 | "Timer.cpp", |
| 386 | "Timer.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 387 | "UUID.cpp", |
| 388 | "UUID.h", |
Vladimir Levin | 6c6e0f7a | 2018-02-13 22:56:46 | [diff] [blame] | 389 | "UkmTimeAggregator.cpp", |
| 390 | "UkmTimeAggregator.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 391 | "WaitableEvent.cpp", |
| 392 | "WaitableEvent.h", |
tzik | c37d7a8 | 2016-12-08 06:20:41 | [diff] [blame] | 393 | "WebFrameScheduler.h", |
dtapuska | 7a17610 | 2016-12-16 18:25:05 | [diff] [blame] | 394 | "WebGestureEvent.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 395 | "WebIconSizesParser.cpp", |
dtapuska | ac51325 | 2017-01-05 19:39:44 | [diff] [blame] | 396 | "WebMouseEvent.cpp", |
| 397 | "WebMouseWheelEvent.cpp", |
nzolghadr | 8af61eb | 2017-06-22 20:42:36 | [diff] [blame] | 398 | "WebPointerEvent.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 399 | "WebTaskRunner.cpp", |
tzik | 2ad30f10 | 2016-11-04 10:54:59 | [diff] [blame] | 400 | "WebTaskRunner.h", |
dtapuska | 7f4ddc2a | 2016-10-13 16:09:32 | [diff] [blame] | 401 | "WebTextInputInfo.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 402 | "WebThread.cpp", |
| 403 | "WebThreadSupportingGC.cpp", |
| 404 | "WebThreadSupportingGC.h", |
Alexander Timin | ba60a6c8 | 2018-01-30 23:15:45 | [diff] [blame] | 405 | "WebThreadType.cpp", |
dtapuska | 5f7cc11 | 2017-01-27 21:37:13 | [diff] [blame] | 406 | "WebTouchEvent.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 407 | "WindowsKeyboardCodes.h", |
| 408 | "animation/AnimationTranslationUtil.cpp", |
| 409 | "animation/AnimationTranslationUtil.h", |
| 410 | "animation/AnimationUtilities.h", |
Yi Gu | aa830ff | 2018-02-22 03:09:11 | [diff] [blame^] | 411 | "animation/CompositorAnimation.cpp", |
| 412 | "animation/CompositorAnimation.h", |
| 413 | "animation/CompositorAnimationClient.cpp", |
| 414 | "animation/CompositorAnimationClient.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 415 | "animation/CompositorAnimationCurve.h", |
| 416 | "animation/CompositorAnimationDelegate.h", |
| 417 | "animation/CompositorAnimationHost.cpp", |
| 418 | "animation/CompositorAnimationHost.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 419 | "animation/CompositorAnimationTimeline.cpp", |
| 420 | "animation/CompositorAnimationTimeline.h", |
| 421 | "animation/CompositorFilterAnimationCurve.cpp", |
| 422 | "animation/CompositorFilterAnimationCurve.h", |
| 423 | "animation/CompositorFilterKeyframe.cpp", |
| 424 | "animation/CompositorFilterKeyframe.h", |
| 425 | "animation/CompositorFloatAnimationCurve.cpp", |
| 426 | "animation/CompositorFloatAnimationCurve.h", |
| 427 | "animation/CompositorFloatKeyframe.cpp", |
| 428 | "animation/CompositorFloatKeyframe.h", |
| 429 | "animation/CompositorKeyframe.cpp", |
| 430 | "animation/CompositorKeyframe.h", |
Yi Gu | 3904dc2 | 2018-02-15 18:35:24 | [diff] [blame] | 431 | "animation/CompositorKeyframeModel.cpp", |
| 432 | "animation/CompositorKeyframeModel.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 433 | "animation/CompositorScrollOffsetAnimationCurve.cpp", |
| 434 | "animation/CompositorScrollOffsetAnimationCurve.h", |
| 435 | "animation/CompositorTargetProperty.h", |
| 436 | "animation/CompositorTransformAnimationCurve.cpp", |
| 437 | "animation/CompositorTransformAnimationCurve.h", |
| 438 | "animation/CompositorTransformKeyframe.cpp", |
| 439 | "animation/CompositorTransformKeyframe.h", |
| 440 | "animation/CompositorTransformOperations.cpp", |
| 441 | "animation/CompositorTransformOperations.h", |
| 442 | "animation/TimingFunction.cpp", |
| 443 | "animation/TimingFunction.h", |
| 444 | "audio/AudioArray.h", |
| 445 | "audio/AudioBus.cpp", |
| 446 | "audio/AudioBus.h", |
| 447 | "audio/AudioChannel.cpp", |
| 448 | "audio/AudioChannel.h", |
| 449 | "audio/AudioDSPKernel.cpp", |
| 450 | "audio/AudioDSPKernel.h", |
| 451 | "audio/AudioDSPKernelProcessor.cpp", |
| 452 | "audio/AudioDSPKernelProcessor.h", |
| 453 | "audio/AudioDelayDSPKernel.cpp", |
| 454 | "audio/AudioDelayDSPKernel.h", |
| 455 | "audio/AudioDestination.cpp", |
| 456 | "audio/AudioDestination.h", |
| 457 | "audio/AudioDestinationConsumer.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 458 | "audio/AudioFileReader.h", |
| 459 | "audio/AudioIOCallback.h", |
| 460 | "audio/AudioProcessor.cpp", |
| 461 | "audio/AudioProcessor.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 462 | "audio/AudioResampler.cpp", |
| 463 | "audio/AudioResampler.h", |
| 464 | "audio/AudioResamplerKernel.cpp", |
| 465 | "audio/AudioResamplerKernel.h", |
| 466 | "audio/AudioSourceProvider.h", |
| 467 | "audio/AudioSourceProviderClient.h", |
| 468 | "audio/AudioUtilities.cpp", |
| 469 | "audio/AudioUtilities.h", |
| 470 | "audio/Biquad.cpp", |
| 471 | "audio/Biquad.h", |
| 472 | "audio/Cone.cpp", |
| 473 | "audio/Cone.h", |
| 474 | "audio/DenormalDisabler.h", |
| 475 | "audio/DirectConvolver.cpp", |
| 476 | "audio/DirectConvolver.h", |
rtoy | 27ea3538 | 2017-05-09 19:13:33 | [diff] [blame] | 477 | "audio/DistanceEffect.cpp", |
| 478 | "audio/DistanceEffect.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 479 | "audio/DownSampler.cpp", |
| 480 | "audio/DownSampler.h", |
| 481 | "audio/DynamicsCompressor.cpp", |
| 482 | "audio/DynamicsCompressor.h", |
| 483 | "audio/DynamicsCompressorKernel.cpp", |
| 484 | "audio/DynamicsCompressorKernel.h", |
| 485 | "audio/EqualPowerPanner.cpp", |
| 486 | "audio/EqualPowerPanner.h", |
| 487 | "audio/FFTConvolver.cpp", |
| 488 | "audio/FFTConvolver.h", |
| 489 | "audio/FFTFrame.cpp", |
| 490 | "audio/FFTFrame.h", |
| 491 | "audio/FFTFrameStub.cpp", |
| 492 | "audio/HRTFDatabase.cpp", |
| 493 | "audio/HRTFDatabase.h", |
| 494 | "audio/HRTFDatabaseLoader.cpp", |
| 495 | "audio/HRTFDatabaseLoader.h", |
| 496 | "audio/HRTFElevation.cpp", |
| 497 | "audio/HRTFElevation.h", |
| 498 | "audio/HRTFKernel.cpp", |
| 499 | "audio/HRTFKernel.h", |
| 500 | "audio/HRTFPanner.cpp", |
| 501 | "audio/HRTFPanner.h", |
| 502 | "audio/IIRFilter.cpp", |
| 503 | "audio/IIRFilter.h", |
| 504 | "audio/MultiChannelResampler.cpp", |
| 505 | "audio/MultiChannelResampler.h", |
| 506 | "audio/Panner.cpp", |
| 507 | "audio/Panner.h", |
hongchan | 52db730e | 2017-02-09 23:47:28 | [diff] [blame] | 508 | "audio/PushPullFIFO.cpp", |
| 509 | "audio/PushPullFIFO.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 510 | "audio/Reverb.cpp", |
| 511 | "audio/Reverb.h", |
| 512 | "audio/ReverbAccumulationBuffer.cpp", |
| 513 | "audio/ReverbAccumulationBuffer.h", |
| 514 | "audio/ReverbConvolver.cpp", |
| 515 | "audio/ReverbConvolver.h", |
| 516 | "audio/ReverbConvolverStage.cpp", |
| 517 | "audio/ReverbConvolverStage.h", |
| 518 | "audio/ReverbInputBuffer.cpp", |
| 519 | "audio/ReverbInputBuffer.h", |
| 520 | "audio/SincResampler.cpp", |
| 521 | "audio/SincResampler.h", |
| 522 | "audio/StereoPanner.cpp", |
| 523 | "audio/StereoPanner.h", |
| 524 | "audio/UpSampler.cpp", |
| 525 | "audio/UpSampler.h", |
| 526 | "audio/VectorMath.cpp", |
| 527 | "audio/VectorMath.h", |
Eero Häkkinen | a3027612 | 2017-12-15 21:38:46 | [diff] [blame] | 528 | "audio/VectorMathScalar.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 529 | "audio/android/FFTFrameOpenMAXDLAndroid.cpp", |
Eero Häkkinen | 85162c43 | 2017-12-16 17:31:24 | [diff] [blame] | 530 | "audio/cpu/arm/VectorMathNEON.h", |
Eero Häkkinen | 3dfdf0fb | 2017-12-19 13:03:00 | [diff] [blame] | 531 | "audio/cpu/mips/VectorMathMSA.h", |
Eero Häkkinen | 51f5063 | 2018-02-12 08:25:46 | [diff] [blame] | 532 | "audio/cpu/x86/VectorMathAVX.cpp", |
| 533 | "audio/cpu/x86/VectorMathAVX.h", |
Eero Häkkinen | 3503377 | 2018-02-04 21:02:03 | [diff] [blame] | 534 | "audio/cpu/x86/VectorMathImpl.h", |
David Vallet | f4649bb | 2018-01-05 01:57:59 | [diff] [blame] | 535 | "audio/cpu/x86/VectorMathSSE.cpp", |
Eero Häkkinen | a3027612 | 2017-12-15 21:38:46 | [diff] [blame] | 536 | "audio/cpu/x86/VectorMathSSE.h", |
| 537 | "audio/cpu/x86/VectorMathX86.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 538 | "audio/ffmpeg/FFTFrameFFMPEG.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 539 | "audio/mac/FFTFrameMac.cpp", |
Eero Häkkinen | ffdd2535 | 2017-12-16 15:59:13 | [diff] [blame] | 540 | "audio/mac/VectorMathMac.h", |
Adithya Srinivasan | ca99a6c | 2017-11-14 17:04:26 | [diff] [blame] | 541 | "bindings/ActiveScriptWrappableBase.cpp", |
| 542 | "bindings/ActiveScriptWrappableBase.h", |
Sayaka Takayama | 0850c615 | 2017-10-05 10:14:47 | [diff] [blame] | 543 | "bindings/CallbackFunctionBase.cpp", |
| 544 | "bindings/CallbackFunctionBase.h", |
Yuki Shiino | b17ef33 | 2017-11-08 15:31:44 | [diff] [blame] | 545 | "bindings/CallbackInterfaceBase.cpp", |
| 546 | "bindings/CallbackInterfaceBase.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 547 | "bindings/DOMDataStore.h", |
| 548 | "bindings/DOMWrapperMap.h", |
| 549 | "bindings/DOMWrapperWorld.cpp", |
| 550 | "bindings/DOMWrapperWorld.h", |
adithyas | aeb180b1 | 2017-04-25 17:18:48 | [diff] [blame] | 551 | "bindings/Microtask.cpp", |
| 552 | "bindings/Microtask.h", |
Hitoshi Yoshida | 1ee1fb8027 | 2017-11-16 01:54:46 | [diff] [blame] | 553 | "bindings/OriginTrialFeatures.cpp", |
| 554 | "bindings/OriginTrialFeatures.h", |
Adithya Srinivasan | 93940c2 | 2017-05-25 20:34:39 | [diff] [blame] | 555 | "bindings/RuntimeCallStats.cpp", |
| 556 | "bindings/RuntimeCallStats.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 557 | "bindings/ScopedPersistent.h", |
Jeremy Roman | be7fde4 | 2017-10-16 18:23:06 | [diff] [blame] | 558 | "bindings/ScriptForbiddenScope.cpp", |
| 559 | "bindings/ScriptForbiddenScope.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 560 | "bindings/ScriptPromiseProperties.h", |
| 561 | "bindings/ScriptState.cpp", |
| 562 | "bindings/ScriptState.h", |
| 563 | "bindings/ScriptWrappable.cpp", |
| 564 | "bindings/ScriptWrappable.h", |
Ulan Degenbaev | 85353fb3 | 2018-01-23 08:14:29 | [diff] [blame] | 565 | "bindings/ScriptWrappableMarkingVisitor.cpp", |
| 566 | "bindings/ScriptWrappableMarkingVisitor.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 567 | "bindings/ScriptWrappableVisitor.cpp", |
| 568 | "bindings/ScriptWrappableVisitor.h", |
| 569 | "bindings/ScriptWrappableVisitorVerifier.h", |
adithyas | 96f45eca | 2017-04-28 17:56:15 | [diff] [blame] | 570 | "bindings/SharedPersistent.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 571 | "bindings/StringResource.cpp", |
| 572 | "bindings/StringResource.h", |
adithyas | 96f45eca | 2017-04-28 17:56:15 | [diff] [blame] | 573 | "bindings/ToV8.h", |
Yuki Shiino | 9d5306c | 2017-09-13 12:45:12 | [diff] [blame] | 574 | "bindings/TraceWrapperBase.h", |
adithyas | 96f45eca | 2017-04-28 17:56:15 | [diff] [blame] | 575 | "bindings/TraceWrapperMember.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 576 | "bindings/TraceWrapperV8Reference.h", |
Michael Lippautz | deb6368 | 2018-02-15 11:47:39 | [diff] [blame] | 577 | "bindings/TraceWrapperV8String.cpp", |
| 578 | "bindings/TraceWrapperV8String.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 579 | "bindings/V0CustomElementBinding.cpp", |
| 580 | "bindings/V0CustomElementBinding.h", |
| 581 | "bindings/V8Binding.cpp", |
| 582 | "bindings/V8Binding.h", |
| 583 | "bindings/V8BindingMacros.h", |
Adithya Srinivasan | 74b86eda | 2017-10-03 15:07:51 | [diff] [blame] | 584 | "bindings/V8DOMActivityLogger.cpp", |
| 585 | "bindings/V8DOMActivityLogger.h", |
adithyas | 594ca915 | 2017-04-27 17:42:21 | [diff] [blame] | 586 | "bindings/V8DOMWrapper.cpp", |
| 587 | "bindings/V8DOMWrapper.h", |
| 588 | "bindings/V8GlobalValueMap.h", |
| 589 | "bindings/V8ObjectConstructor.cpp", |
| 590 | "bindings/V8ObjectConstructor.h", |
| 591 | "bindings/V8PerContextData.cpp", |
| 592 | "bindings/V8PerContextData.h", |
| 593 | "bindings/V8PerIsolateData.cpp", |
| 594 | "bindings/V8PerIsolateData.h", |
| 595 | "bindings/V8PrivateProperty.cpp", |
| 596 | "bindings/V8PrivateProperty.h", |
| 597 | "bindings/V8ThrowException.cpp", |
| 598 | "bindings/V8ThrowException.h", |
| 599 | "bindings/V8ValueCache.cpp", |
| 600 | "bindings/V8ValueCache.h", |
| 601 | "bindings/WrapperCreationSecurityCheck.cpp", |
| 602 | "bindings/WrapperCreationSecurityCheck.h", |
| 603 | "bindings/WrapperTypeInfo.cpp", |
| 604 | "bindings/WrapperTypeInfo.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 605 | "clipboard/ClipboardMimeTypes.cpp", |
| 606 | "clipboard/ClipboardMimeTypes.h", |
| 607 | "clipboard/ClipboardUtilities.cpp", |
| 608 | "clipboard/ClipboardUtilities.h", |
Prashant.Patil | 568a468 | 2016-09-02 12:24:06 | [diff] [blame] | 609 | "cpu/mips/CommonMacrosMSA.h", |
John Abd-El-Malek | 634eb44 | 2017-02-10 19:12:06 | [diff] [blame] | 610 | "exported/FilePathConversion.cpp", |
sammc | 7f96463 | 2016-10-14 04:16:21 | [diff] [blame] | 611 | "exported/InterfaceRegistry.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 612 | "exported/Platform.cpp", |
| 613 | "exported/ServiceRegistry.cpp", |
John Abd-El-Malek | 634eb44 | 2017-02-10 19:12:06 | [diff] [blame] | 614 | "exported/URLConversion.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 615 | "exported/WebActiveGestureAnimation.cpp", |
| 616 | "exported/WebActiveGestureAnimation.h", |
| 617 | "exported/WebAudioBus.cpp", |
| 618 | "exported/WebAudioDevice.cpp", |
Marijn Kruisselbrink | 6d55522 | 2017-10-02 19:49:36 | [diff] [blame] | 619 | "exported/WebBlobInfo.cpp", |
Daniel Hintze | 67d0018d | 2017-08-09 15:36:08 | [diff] [blame] | 620 | "exported/WebCORS.cpp", |
Daniel Hintze | 6d4de1e | 2017-08-16 18:04:34 | [diff] [blame] | 621 | "exported/WebCORSPreflightResultCache.cpp", |
kinuko | ed1ed1d | 2017-02-08 09:13:43 | [diff] [blame] | 622 | "exported/WebCache.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 623 | "exported/WebCanvasCaptureHandler.cpp", |
Stuart Langley | fdd23bac | 2017-12-13 01:04:14 | [diff] [blame] | 624 | "exported/WebClipboardImpl.cpp", |
| 625 | "exported/WebClipboardImpl.h", |
jam | 013b74c8 | 2017-02-10 16:36:10 | [diff] [blame] | 626 | "exported/WebCoalescedInputEvent.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 627 | "exported/WebContentDecryptionModule.cpp", |
| 628 | "exported/WebContentDecryptionModuleAccess.cpp", |
| 629 | "exported/WebContentDecryptionModuleResult.cpp", |
| 630 | "exported/WebContentDecryptionModuleSession.cpp", |
| 631 | "exported/WebContentSettingCallbacks.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 632 | "exported/WebCryptoAlgorithm.cpp", |
| 633 | "exported/WebCryptoKey.cpp", |
| 634 | "exported/WebCryptoKeyAlgorithm.cpp", |
| 635 | "exported/WebCryptoResult.cpp", |
| 636 | "exported/WebCursorInfo.cpp", |
| 637 | "exported/WebData.cpp", |
| 638 | "exported/WebDataConsumerHandle.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 639 | "exported/WebDragData.cpp", |
| 640 | "exported/WebEncryptedMediaClient.cpp", |
| 641 | "exported/WebEncryptedMediaKeyInformation.cpp", |
| 642 | "exported/WebEncryptedMediaRequest.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 643 | "exported/WebFileSystemCallbacks.cpp", |
| 644 | "exported/WebFont.cpp", |
| 645 | "exported/WebFontDescription.cpp", |
| 646 | "exported/WebHTTPBody.cpp", |
Daniel Hintze | 646f4e2 | 2017-08-31 17:07:30 | [diff] [blame] | 647 | "exported/WebHTTPHeaderMap.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 648 | "exported/WebHTTPLoadInfo.cpp", |
| 649 | "exported/WebImage.cpp", |
| 650 | "exported/WebImageGenerator.cpp", |
Sasha Bermeister | de415f0 | 2017-06-19 04:16:46 | [diff] [blame] | 651 | "exported/WebInputEvent.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 652 | "exported/WebMediaConstraints.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 653 | "exported/WebMediaPlayerClient.cpp", |
| 654 | "exported/WebMediaPlayerEncryptedMediaClient.cpp", |
| 655 | "exported/WebMediaPlayerSource.cpp", |
| 656 | "exported/WebMediaRecorderHandler.cpp", |
| 657 | "exported/WebMediaStream.cpp", |
| 658 | "exported/WebMediaStreamSource.cpp", |
| 659 | "exported/WebMediaStreamTrack.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 660 | "exported/WebMemoryCoordinator.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 661 | "exported/WebMixedContent.cpp", |
Marijn Kruisselbrink | 369faf8 | 2017-10-23 19:58:42 | [diff] [blame] | 662 | "exported/WebMockClipboard.cpp", |
kinuko | fbfee76 | 2017-03-08 04:01:06 | [diff] [blame] | 663 | "exported/WebNetworkStateNotifier.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 664 | "exported/WebPrerender.cpp", |
| 665 | "exported/WebPrerenderingSupport.cpp", |
zhaobin | 31637e5 | 2016-09-30 00:10:04 | [diff] [blame] | 666 | "exported/WebPresentationReceiver.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 667 | "exported/WebRTCAnswerOptions.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 668 | "exported/WebRTCOfferOptions.cpp", |
hbos | 1d05904 | 2017-06-19 18:26:50 | [diff] [blame] | 669 | "exported/WebRTCPeerConnectionHandlerClient.cpp", |
hbos | 68d5bbdd | 2017-04-10 14:44:34 | [diff] [blame] | 670 | "exported/WebRTCRtpContributingSource.cpp", |
hbos | cc48630 | 2017-03-30 16:47:11 | [diff] [blame] | 671 | "exported/WebRTCRtpReceiver.cpp", |
hbos | 3c633b6 | 2017-05-05 14:35:42 | [diff] [blame] | 672 | "exported/WebRTCRtpSender.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 673 | "exported/WebRTCSessionDescription.cpp", |
| 674 | "exported/WebRTCSessionDescriptionRequest.cpp", |
hbos | 20033c0 | 2016-11-25 14:47:04 | [diff] [blame] | 675 | "exported/WebRTCStats.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 676 | "exported/WebRTCStatsRequest.cpp", |
| 677 | "exported/WebRTCStatsResponse.cpp", |
| 678 | "exported/WebRTCVoidRequest.cpp", |
nverne | 61d2da87 | 2017-05-24 10:15:30 | [diff] [blame] | 679 | "exported/WebRuntimeFeatures.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 680 | "exported/WebScrollbarImpl.cpp", |
| 681 | "exported/WebScrollbarImpl.h", |
| 682 | "exported/WebScrollbarThemeClientImpl.cpp", |
| 683 | "exported/WebScrollbarThemeClientImpl.h", |
| 684 | "exported/WebScrollbarThemeGeometryNative.cpp", |
| 685 | "exported/WebScrollbarThemeGeometryNative.h", |
| 686 | "exported/WebScrollbarThemePainter.cpp", |
| 687 | "exported/WebSecurityOrigin.cpp", |
Makoto Shimazu | 2eaadae | 2017-12-24 14:19:38 | [diff] [blame] | 688 | "exported/WebServiceWorkerInstalledScriptsManager.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 689 | "exported/WebServiceWorkerRequest.cpp", |
| 690 | "exported/WebServiceWorkerResponse.cpp", |
shimazu | 1ac68cf | 2017-04-20 06:03:46 | [diff] [blame] | 691 | "exported/WebServiceWorkerStreamHandle.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 692 | "exported/WebSpeechSynthesisUtterance.cpp", |
| 693 | "exported/WebSpeechSynthesisVoice.cpp", |
| 694 | "exported/WebSpeechSynthesizerClientImpl.cpp", |
| 695 | "exported/WebSpeechSynthesizerClientImpl.h", |
jam | dc5ee98 | 2017-02-14 20:33:37 | [diff] [blame] | 696 | "exported/WebString.cpp", |
lethalantidote | 7f6009d | 2017-07-07 21:47:39 | [diff] [blame] | 697 | "exported/WebSurfaceLayerBridge.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 698 | "exported/WebTextRun.cpp", |
| 699 | "exported/WebThreadSafeData.cpp", |
| 700 | "exported/WebURL.cpp", |
Takashi Toyoshima | ccd0bd54 | 2017-11-20 05:47:54 | [diff] [blame] | 701 | "exported/WebURLError.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 702 | "exported/WebURLLoadTiming.cpp", |
| 703 | "exported/WebURLLoaderClient.cpp", |
| 704 | "exported/WebURLLoaderTestDelegate.cpp", |
| 705 | "exported/WebURLRequest.cpp", |
| 706 | "exported/WebURLResponse.cpp", |
CJ DiMeglio | 2302d20 | 2017-08-31 08:38:04 | [diff] [blame] | 707 | "exported/WebVideoFrameSubmitter.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 708 | "exported/WrappedResourceRequest.h", |
| 709 | "exported/WrappedResourceResponse.h", |
iclelland | 7d15b7f | 2016-11-03 16:58:10 | [diff] [blame] | 710 | "feature_policy/FeaturePolicy.cpp", |
| 711 | "feature_policy/FeaturePolicy.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 712 | "fonts/AcceptLanguagesResolver.cpp", |
| 713 | "fonts/AcceptLanguagesResolver.h", |
| 714 | "fonts/AlternateFontFamily.h", |
Dominik Röttsches | a4eab4f | 2017-10-06 14:55:17 | [diff] [blame] | 715 | "fonts/BitmapGlyphsBlacklist.cpp", |
| 716 | "fonts/BitmapGlyphsBlacklist.h", |
Dominik Röttsches | 31ccc10f | 2017-11-28 19:53:10 | [diff] [blame] | 717 | "fonts/CanvasRotationInVertical.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 718 | "fonts/CharacterRange.h", |
| 719 | "fonts/CustomFontData.h", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 720 | "fonts/FallbackListCompositeKey.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 721 | "fonts/Font.cpp", |
| 722 | "fonts/Font.h", |
| 723 | "fonts/FontBaseline.h", |
| 724 | "fonts/FontCache.cpp", |
| 725 | "fonts/FontCache.h", |
| 726 | "fonts/FontCacheClient.h", |
| 727 | "fonts/FontCacheKey.h", |
| 728 | "fonts/FontCacheMemoryDumpProvider.cpp", |
| 729 | "fonts/FontCacheMemoryDumpProvider.h", |
| 730 | "fonts/FontCustomPlatformData.cpp", |
| 731 | "fonts/FontCustomPlatformData.h", |
| 732 | "fonts/FontData.cpp", |
| 733 | "fonts/FontData.h", |
| 734 | "fonts/FontDataCache.cpp", |
| 735 | "fonts/FontDataCache.h", |
| 736 | "fonts/FontDataForRangeSet.cpp", |
| 737 | "fonts/FontDataForRangeSet.h", |
| 738 | "fonts/FontDescription.cpp", |
wychen | 589d05e | 2017-03-31 00:06:36 | [diff] [blame] | 739 | "fonts/FontDescription.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 740 | "fonts/FontFaceCreationParams.h", |
| 741 | "fonts/FontFallbackIterator.cpp", |
| 742 | "fonts/FontFallbackIterator.h", |
| 743 | "fonts/FontFallbackList.cpp", |
| 744 | "fonts/FontFallbackList.h", |
| 745 | "fonts/FontFallbackPriority.cpp", |
| 746 | "fonts/FontFallbackPriority.h", |
| 747 | "fonts/FontFamily.cpp", |
| 748 | "fonts/FontFamily.h", |
Fernando Serboncini | 96e2b7d0 | 2017-06-12 20:35:05 | [diff] [blame] | 749 | "fonts/FontGlobalContext.cpp", |
| 750 | "fonts/FontGlobalContext.h", |
Dominik Röttsches | 286d5f1 | 2017-11-15 12:57:22 | [diff] [blame] | 751 | "fonts/FontMetrics.cpp", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 752 | "fonts/FontMetrics.h", |
Walter Korman | 60e07df | 2017-09-27 18:56:28 | [diff] [blame] | 753 | "fonts/FontOrientation.cpp", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 754 | "fonts/FontOrientation.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 755 | "fonts/FontPlatformData.cpp", |
| 756 | "fonts/FontPlatformData.h", |
Dominik Röttsches | 8181280 | 2017-07-27 17:24:15 | [diff] [blame] | 757 | "fonts/FontSelectionAlgorithm.cpp", |
| 758 | "fonts/FontSelectionAlgorithm.h", |
| 759 | "fonts/FontSelectionTypes.cpp", |
| 760 | "fonts/FontSelectionTypes.h", |
Fernando Serboncini | 87b9c7a | 2017-08-08 20:48:39 | [diff] [blame] | 761 | "fonts/FontSelector.cpp", |
Fernando Serboncini | 91f7231 | 2017-08-02 20:15:20 | [diff] [blame] | 762 | "fonts/FontSelector.h", |
| 763 | "fonts/FontSelectorClient.h", |
Walter Korman | 60e07df | 2017-09-27 18:56:28 | [diff] [blame] | 764 | "fonts/FontSmoothingMode.cpp", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 765 | "fonts/FontSmoothingMode.h", |
Walter Korman | 3e2c20c | 2017-09-29 22:06:38 | [diff] [blame] | 766 | "fonts/FontVariantEastAsian.cpp", |
Koji Ishii | fc295adf | 2017-09-06 17:17:52 | [diff] [blame] | 767 | "fonts/FontVariantEastAsian.h", |
Walter Korman | 3e2c20c | 2017-09-29 22:06:38 | [diff] [blame] | 768 | "fonts/FontVariantNumeric.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 769 | "fonts/FontVariantNumeric.h", |
Koji Ishii | 77aa1ef | 2018-01-27 01:36:30 | [diff] [blame] | 770 | "fonts/FontVerticalPositionType.h", |
Walter Korman | 60e07df | 2017-09-27 18:56:28 | [diff] [blame] | 771 | "fonts/FontWidthVariant.cpp", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 772 | "fonts/FontWidthVariant.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 773 | "fonts/GenericFontFamilySettings.cpp", |
| 774 | "fonts/GenericFontFamilySettings.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 775 | "fonts/GlyphMetricsMap.h", |
Emil A Eklund | d30c887 | 2017-09-02 11:43:47 | [diff] [blame] | 776 | "fonts/NGTextFragmentPaintInfo.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 777 | "fonts/OrientationIterator.cpp", |
| 778 | "fonts/OrientationIterator.h", |
| 779 | "fonts/ScriptRunIterator.cpp", |
| 780 | "fonts/ScriptRunIterator.h", |
| 781 | "fonts/SegmentedFontData.cpp", |
| 782 | "fonts/SegmentedFontData.h", |
| 783 | "fonts/SimpleFontData.cpp", |
| 784 | "fonts/SimpleFontData.h", |
| 785 | "fonts/SmallCapsIterator.cpp", |
| 786 | "fonts/SmallCapsIterator.h", |
| 787 | "fonts/SymbolsIterator.cpp", |
| 788 | "fonts/SymbolsIterator.h", |
Walter Korman | 60e07df | 2017-09-27 18:56:28 | [diff] [blame] | 789 | "fonts/TextRenderingMode.cpp", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 790 | "fonts/TextRenderingMode.h", |
Walter Korman | 0afd014 | 2017-09-26 04:43:20 | [diff] [blame] | 791 | "fonts/TypesettingFeatures.cpp", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 792 | "fonts/TypesettingFeatures.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 793 | "fonts/UTF16TextIterator.cpp", |
| 794 | "fonts/UTF16TextIterator.h", |
| 795 | "fonts/UnicodeRangeSet.cpp", |
| 796 | "fonts/UnicodeRangeSet.h", |
| 797 | "fonts/VDMXParser.cpp", |
| 798 | "fonts/VDMXParser.h", |
| 799 | "fonts/WebFontDecoder.cpp", |
| 800 | "fonts/WebFontDecoder.h", |
Sergey Ulanov | 0034884c | 2018-02-07 21:07:35 | [diff] [blame] | 801 | "fonts/WebFontRenderStyle.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 802 | "fonts/android/FontCacheAndroid.cpp", |
| 803 | "fonts/linux/FontCacheLinux.cpp", |
drott | 4eaf7df | 2017-05-08 14:18:45 | [diff] [blame] | 804 | "fonts/mac/CoreTextVariationsSupport.cpp", |
| 805 | "fonts/mac/CoreTextVariationsSupport.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 806 | "fonts/mac/FontCacheMac.mm", |
| 807 | "fonts/mac/FontFamilyMatcherMac.h", |
| 808 | "fonts/mac/FontFamilyMatcherMac.mm", |
| 809 | "fonts/mac/FontPlatformDataMac.mm", |
drott | d5cec19a6 | 2016-12-22 18:32:45 | [diff] [blame] | 810 | "fonts/opentype/FontSettings.cpp", |
drott | 7eac4cc | 2016-12-07 12:13:21 | [diff] [blame] | 811 | "fonts/opentype/FontSettings.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 812 | "fonts/opentype/OpenTypeCapsSupport.cpp", |
| 813 | "fonts/opentype/OpenTypeCapsSupport.h", |
| 814 | "fonts/opentype/OpenTypeCapsSupportMPL.cpp", |
| 815 | "fonts/opentype/OpenTypeTypes.h", |
| 816 | "fonts/opentype/OpenTypeVerticalData.cpp", |
| 817 | "fonts/opentype/OpenTypeVerticalData.h", |
Dominik Röttsches | 65fe7ca1 | 2017-06-16 17:42:46 | [diff] [blame] | 818 | "fonts/opentype/VariableFontCheck.cpp", |
| 819 | "fonts/opentype/VariableFontCheck.h", |
eae | 5db7e23 | 2016-11-11 08:51:13 | [diff] [blame] | 820 | "fonts/shaping/CachingWordShapeIterator.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 821 | "fonts/shaping/CachingWordShapeIterator.h", |
| 822 | "fonts/shaping/CachingWordShaper.cpp", |
| 823 | "fonts/shaping/CachingWordShaper.h", |
| 824 | "fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp", |
| 825 | "fonts/shaping/CaseMappingHarfBuzzBufferFiller.h", |
| 826 | "fonts/shaping/HarfBuzzFace.cpp", |
| 827 | "fonts/shaping/HarfBuzzFace.h", |
Fernando Serboncini | 700ac39 | 2017-07-17 17:41:56 | [diff] [blame] | 828 | "fonts/shaping/HarfBuzzFontCache.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 829 | "fonts/shaping/HarfBuzzShaper.cpp", |
| 830 | "fonts/shaping/HarfBuzzShaper.h", |
| 831 | "fonts/shaping/RunSegmenter.cpp", |
| 832 | "fonts/shaping/RunSegmenter.h", |
Adenilson Cavalcanti | 498c618 | 2017-08-09 21:45:01 | [diff] [blame] | 833 | "fonts/shaping/ShapeCache.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 834 | "fonts/shaping/ShapeCache.h", |
| 835 | "fonts/shaping/ShapeResult.cpp", |
| 836 | "fonts/shaping/ShapeResult.h", |
fmalita | 123744c | 2017-03-23 21:30:14 | [diff] [blame] | 837 | "fonts/shaping/ShapeResultBloberizer.cpp", |
| 838 | "fonts/shaping/ShapeResultBloberizer.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 839 | "fonts/shaping/ShapeResultBuffer.cpp", |
| 840 | "fonts/shaping/ShapeResultBuffer.h", |
| 841 | "fonts/shaping/ShapeResultInlineHeaders.h", |
| 842 | "fonts/shaping/ShapeResultSpacing.cpp", |
| 843 | "fonts/shaping/ShapeResultSpacing.h", |
| 844 | "fonts/shaping/ShapeResultTestInfo.cpp", |
| 845 | "fonts/shaping/ShapeResultTestInfo.h", |
eae | 7a7a48c | 2017-03-29 16:23:22 | [diff] [blame] | 846 | "fonts/shaping/ShapingLineBreaker.cpp", |
| 847 | "fonts/shaping/ShapingLineBreaker.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 848 | "fonts/skia/FontCacheSkia.cpp", |
| 849 | "fonts/skia/SkiaTextMetrics.cpp", |
| 850 | "fonts/skia/SkiaTextMetrics.h", |
| 851 | "fonts/win/FontCacheSkiaWin.cpp", |
| 852 | "fonts/win/FontFallbackWin.cpp", |
| 853 | "fonts/win/FontFallbackWin.h", |
| 854 | "fonts/win/FontPlatformDataWin.cpp", |
| 855 | "geometry/DoublePoint.cpp", |
| 856 | "geometry/DoublePoint.h", |
| 857 | "geometry/DoubleRect.cpp", |
| 858 | "geometry/DoubleRect.h", |
| 859 | "geometry/DoubleSize.cpp", |
| 860 | "geometry/DoubleSize.h", |
| 861 | "geometry/FloatBox.cpp", |
| 862 | "geometry/FloatBox.h", |
| 863 | "geometry/FloatPoint.cpp", |
| 864 | "geometry/FloatPoint.h", |
| 865 | "geometry/FloatPoint3D.cpp", |
| 866 | "geometry/FloatPoint3D.h", |
| 867 | "geometry/FloatPolygon.cpp", |
| 868 | "geometry/FloatPolygon.h", |
| 869 | "geometry/FloatQuad.cpp", |
| 870 | "geometry/FloatQuad.h", |
| 871 | "geometry/FloatRect.cpp", |
| 872 | "geometry/FloatRect.h", |
Morten Stenshorne | a92e691 | 2017-09-19 19:39:02 | [diff] [blame] | 873 | "geometry/FloatRectOutsets.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 874 | "geometry/FloatRectOutsets.h", |
| 875 | "geometry/FloatRoundedRect.cpp", |
| 876 | "geometry/FloatRoundedRect.h", |
| 877 | "geometry/FloatSize.cpp", |
| 878 | "geometry/FloatSize.h", |
Xianzhu Wang | ead731a | 2017-09-01 05:34:05 | [diff] [blame] | 879 | "geometry/GeometryAsJSON.cpp", |
| 880 | "geometry/GeometryAsJSON.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 881 | "geometry/IntPoint.cpp", |
| 882 | "geometry/IntPoint.h", |
| 883 | "geometry/IntRect.cpp", |
| 884 | "geometry/IntRect.h", |
| 885 | "geometry/IntRectOutsets.h", |
| 886 | "geometry/IntSize.cpp", |
| 887 | "geometry/IntSize.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 888 | "geometry/LayoutPoint.cpp", |
| 889 | "geometry/LayoutPoint.h", |
| 890 | "geometry/LayoutRect.cpp", |
| 891 | "geometry/LayoutRect.h", |
| 892 | "geometry/LayoutRectOutsets.cpp", |
| 893 | "geometry/LayoutRectOutsets.h", |
| 894 | "geometry/LayoutSize.cpp", |
| 895 | "geometry/LayoutSize.h", |
| 896 | "geometry/Region.cpp", |
| 897 | "geometry/Region.h", |
| 898 | "geometry/TransformState.cpp", |
| 899 | "geometry/TransformState.h", |
| 900 | "geometry/cg/FloatPointCG.cpp", |
| 901 | "geometry/cg/FloatRectCG.cpp", |
| 902 | "geometry/cg/FloatSizeCG.cpp", |
| 903 | "geometry/cg/IntPointCG.cpp", |
| 904 | "geometry/cg/IntRectCG.cpp", |
| 905 | "geometry/cg/IntSizeCG.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 906 | "graphics/AcceleratedStaticBitmapImage.cpp", |
| 907 | "graphics/AcceleratedStaticBitmapImage.h", |
| 908 | "graphics/BitmapImage.cpp", |
| 909 | "graphics/BitmapImage.h", |
| 910 | "graphics/BitmapImageMetrics.cpp", |
| 911 | "graphics/BitmapImageMetrics.h", |
| 912 | "graphics/BoxReflection.cpp", |
| 913 | "graphics/BoxReflection.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 914 | "graphics/Canvas2DLayerBridge.cpp", |
| 915 | "graphics/Canvas2DLayerBridge.h", |
ccameron | 60c4a2e | 2017-04-18 01:03:38 | [diff] [blame] | 916 | "graphics/CanvasColorParams.cpp", |
| 917 | "graphics/CanvasColorParams.h", |
junov | 1d09c4b | 2017-05-25 17:22:23 | [diff] [blame] | 918 | "graphics/CanvasHeuristicParameters.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 919 | "graphics/CanvasMetrics.cpp", |
| 920 | "graphics/CanvasMetrics.h", |
Justin Novosad | 5b07996 | 2017-11-08 23:26:00 | [diff] [blame] | 921 | "graphics/CanvasResource.cpp", |
| 922 | "graphics/CanvasResource.h", |
xlai | 6c4cca5 | 2017-11-23 18:06:10 | [diff] [blame] | 923 | "graphics/CanvasResourceHost.h", |
Justin Novosad | 5b07996 | 2017-11-08 23:26:00 | [diff] [blame] | 924 | "graphics/CanvasResourceProvider.cpp", |
| 925 | "graphics/CanvasResourceProvider.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 926 | "graphics/Color.cpp", |
| 927 | "graphics/Color.h", |
ccameron | bf8e2f1 | 2016-12-07 23:06:24 | [diff] [blame] | 928 | "graphics/ColorBehavior.cpp", |
| 929 | "graphics/ColorBehavior.h", |
Morten Stenshorne | a8825d6 | 2017-07-17 16:51:01 | [diff] [blame] | 930 | "graphics/ColorBlend.h", |
ccameron | b8a4655 | 2017-05-18 03:44:32 | [diff] [blame] | 931 | "graphics/ColorSpaceGamut.cpp", |
| 932 | "graphics/ColorSpaceGamut.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 933 | "graphics/ColorSpaceProfileData.cpp", |
| 934 | "graphics/ColorSpaceProfileData.h", |
| 935 | "graphics/CompositingReasons.cpp", |
| 936 | "graphics/CompositingReasons.h", |
Majid Valipour | e9855f7 | 2017-10-20 02:08:58 | [diff] [blame] | 937 | "graphics/CompositorAnimatorsState.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 938 | "graphics/CompositorElementId.cpp", |
| 939 | "graphics/CompositorElementId.h", |
| 940 | "graphics/CompositorFilterOperations.cpp", |
| 941 | "graphics/CompositorFilterOperations.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 942 | "graphics/CompositorMutator.h", |
Majid Valipour | ab060d13 | 2018-01-15 06:00:14 | [diff] [blame] | 943 | "graphics/CompositorMutator.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 944 | "graphics/CompositorMutatorClient.cpp", |
| 945 | "graphics/CompositorMutatorClient.h", |
Majid Valipour | ab060d13 | 2018-01-15 06:00:14 | [diff] [blame] | 946 | "graphics/CompositorMutatorImpl.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 947 | "graphics/ContiguousContainer.cpp", |
| 948 | "graphics/ContiguousContainer.h", |
| 949 | "graphics/CrossfadeGeneratedImage.cpp", |
| 950 | "graphics/CrossfadeGeneratedImage.h", |
thakis | 71d33c3 | 2017-03-26 04:59:05 | [diff] [blame] | 951 | "graphics/DashArray.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 952 | "graphics/DecodingImageGenerator.cpp", |
| 953 | "graphics/DecodingImageGenerator.h", |
| 954 | "graphics/DeferredImageDecoder.cpp", |
| 955 | "graphics/DeferredImageDecoder.h", |
| 956 | "graphics/DrawLooperBuilder.cpp", |
| 957 | "graphics/DrawLooperBuilder.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 958 | "graphics/FirstPaintInvalidationTracking.cpp", |
| 959 | "graphics/FirstPaintInvalidationTracking.h", |
| 960 | "graphics/FrameData.cpp", |
| 961 | "graphics/FrameData.h", |
| 962 | "graphics/GeneratedImage.cpp", |
| 963 | "graphics/GeneratedImage.h", |
Bill Orr | f1a97e7 | 2017-11-15 06:18:36 | [diff] [blame] | 964 | "graphics/GpuMemoryBufferImageCopy.cpp", |
| 965 | "graphics/GpuMemoryBufferImageCopy.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 966 | "graphics/Gradient.cpp", |
| 967 | "graphics/Gradient.h", |
| 968 | "graphics/GradientGeneratedImage.cpp", |
| 969 | "graphics/GradientGeneratedImage.h", |
| 970 | "graphics/GraphicsContext.cpp", |
| 971 | "graphics/GraphicsContext.h", |
| 972 | "graphics/GraphicsContextState.cpp", |
| 973 | "graphics/GraphicsContextState.h", |
| 974 | "graphics/GraphicsContextStateSaver.h", |
| 975 | "graphics/GraphicsLayer.cpp", |
| 976 | "graphics/GraphicsLayer.h", |
| 977 | "graphics/GraphicsLayerClient.h", |
| 978 | "graphics/GraphicsLayerDebugInfo.cpp", |
| 979 | "graphics/GraphicsLayerDebugInfo.h", |
| 980 | "graphics/GraphicsTypes.cpp", |
| 981 | "graphics/GraphicsTypes.h", |
| 982 | "graphics/GraphicsTypes3D.h", |
Ramin Halavati | d340910 | 2017-09-27 05:37:19 | [diff] [blame] | 983 | "graphics/HighContrastImageClassifier.cpp", |
| 984 | "graphics/HighContrastImageClassifier.h", |
dmazzoni | 36fd012 | 2017-06-09 19:13:08 | [diff] [blame] | 985 | "graphics/HighContrastSettings.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 986 | "graphics/Image.cpp", |
| 987 | "graphics/Image.h", |
| 988 | "graphics/ImageAnimationPolicy.h", |
xlai | d02bb83 | 2018-01-15 20:58:51 | [diff] [blame] | 989 | "graphics/ImageDataBuffer.cpp", |
| 990 | "graphics/ImageDataBuffer.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 991 | "graphics/ImageDecodingStore.cpp", |
| 992 | "graphics/ImageDecodingStore.h", |
| 993 | "graphics/ImageFrameGenerator.cpp", |
| 994 | "graphics/ImageFrameGenerator.h", |
| 995 | "graphics/ImageObserver.cpp", |
| 996 | "graphics/ImageObserver.h", |
| 997 | "graphics/ImageOrientation.cpp", |
| 998 | "graphics/ImageOrientation.h", |
| 999 | "graphics/ImagePattern.cpp", |
| 1000 | "graphics/ImagePattern.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1001 | "graphics/InterceptingCanvas.cpp", |
| 1002 | "graphics/InterceptingCanvas.h", |
ccameron | b8a4655 | 2017-05-18 03:44:32 | [diff] [blame] | 1003 | "graphics/InterpolationSpace.cpp", |
| 1004 | "graphics/InterpolationSpace.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1005 | "graphics/LinkHighlight.h", |
| 1006 | "graphics/LoggingCanvas.cpp", |
| 1007 | "graphics/LoggingCanvas.h", |
xidachen | 5717f6e | 2016-11-09 04:46:33 | [diff] [blame] | 1008 | "graphics/MailboxTextureHolder.cpp", |
| 1009 | "graphics/MailboxTextureHolder.h", |
xlai | 88f87af | 2016-09-06 20:45:49 | [diff] [blame] | 1010 | "graphics/OffscreenCanvasFrameDispatcher.h", |
| 1011 | "graphics/OffscreenCanvasFrameDispatcherImpl.cpp", |
| 1012 | "graphics/OffscreenCanvasFrameDispatcherImpl.h", |
junov | 20ba52f | 2016-11-14 23:13:40 | [diff] [blame] | 1013 | "graphics/OffscreenCanvasPlaceholder.cpp", |
| 1014 | "graphics/OffscreenCanvasPlaceholder.h", |
Xu Xing | 1b0214b | 2017-07-29 01:10:45 | [diff] [blame] | 1015 | "graphics/OffscreenCanvasResourceProvider.cpp", |
| 1016 | "graphics/OffscreenCanvasResourceProvider.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1017 | "graphics/PaintGeneratedImage.cpp", |
| 1018 | "graphics/PaintGeneratedImage.h", |
| 1019 | "graphics/PaintInvalidationReason.cpp", |
| 1020 | "graphics/PaintInvalidationReason.h", |
enne | 5cea078 | 2017-02-11 01:41:53 | [diff] [blame] | 1021 | "graphics/PaintRecordPattern.cpp", |
| 1022 | "graphics/PaintRecordPattern.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1023 | "graphics/Path.cpp", |
| 1024 | "graphics/Path.h", |
| 1025 | "graphics/PathTraversalState.cpp", |
| 1026 | "graphics/PathTraversalState.h", |
| 1027 | "graphics/Pattern.cpp", |
| 1028 | "graphics/Pattern.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1029 | "graphics/PictureSnapshot.cpp", |
| 1030 | "graphics/PictureSnapshot.h", |
sclittle | 72b7454 | 2016-10-24 20:49:06 | [diff] [blame] | 1031 | "graphics/PlaceholderImage.cpp", |
| 1032 | "graphics/PlaceholderImage.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1033 | "graphics/ProfilingCanvas.cpp", |
| 1034 | "graphics/ProfilingCanvas.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1035 | "graphics/ReplayingCanvas.cpp", |
| 1036 | "graphics/ReplayingCanvas.h", |
Fredrik Söderquist | dd28f545 | 2017-10-23 17:11:39 | [diff] [blame] | 1037 | "graphics/ScopedInterpolationQuality.h", |
xidachen | 5717f6e | 2016-11-09 04:46:33 | [diff] [blame] | 1038 | "graphics/SkiaTextureHolder.cpp", |
| 1039 | "graphics/SkiaTextureHolder.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1040 | "graphics/SquashingDisallowedReasons.cpp", |
| 1041 | "graphics/SquashingDisallowedReasons.h", |
| 1042 | "graphics/StaticBitmapImage.cpp", |
| 1043 | "graphics/StaticBitmapImage.h", |
| 1044 | "graphics/StrokeData.cpp", |
| 1045 | "graphics/StrokeData.h", |
lethalantidote | 7f6009d | 2017-07-07 21:47:39 | [diff] [blame] | 1046 | "graphics/SurfaceLayerBridge.cpp", |
| 1047 | "graphics/SurfaceLayerBridge.h", |
xidachen | 5717f6e | 2016-11-09 04:46:33 | [diff] [blame] | 1048 | "graphics/TextureHolder.h", |
xidachen | fa0199e7 | 2017-05-11 11:34:26 | [diff] [blame] | 1049 | "graphics/TouchAction.h", |
xidachen | 5717f6e | 2016-11-09 04:46:33 | [diff] [blame] | 1050 | "graphics/UnacceleratedStaticBitmapImage.cpp", |
| 1051 | "graphics/UnacceleratedStaticBitmapImage.h", |
CJ DiMeglio | 2302d20 | 2017-08-31 08:38:04 | [diff] [blame] | 1052 | "graphics/VideoFrameResourceProvider.cpp", |
| 1053 | "graphics/VideoFrameResourceProvider.h", |
| 1054 | "graphics/VideoFrameSubmitter.cpp", |
| 1055 | "graphics/VideoFrameSubmitter.h", |
Khushal | dc0c2db | 2018-02-02 18:30:23 | [diff] [blame] | 1056 | "graphics/WebGraphicsContext3DProviderWrapper.cpp", |
xidachen | 5717f6e | 2016-11-09 04:46:33 | [diff] [blame] | 1057 | "graphics/WebGraphicsContext3DProviderWrapper.h", |
Xianzhu Wang | 2acc8af06 | 2017-10-05 01:01:36 | [diff] [blame] | 1058 | "graphics/compositing/CompositedLayerRasterInvalidator.cpp", |
| 1059 | "graphics/compositing/CompositedLayerRasterInvalidator.h", |
Xianzhu Wang | 5c1806ff | 2017-06-15 23:03:32 | [diff] [blame] | 1060 | "graphics/compositing/ContentLayerClientImpl.cpp", |
| 1061 | "graphics/compositing/ContentLayerClientImpl.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1062 | "graphics/compositing/PaintArtifactCompositor.cpp", |
| 1063 | "graphics/compositing/PaintArtifactCompositor.h", |
trchen | 245b456 | 2017-03-11 17:57:06 | [diff] [blame] | 1064 | "graphics/compositing/PaintChunksToCcLayer.cpp", |
| 1065 | "graphics/compositing/PaintChunksToCcLayer.h", |
wkorman | 9bf3bd1 | 2017-01-17 21:28:21 | [diff] [blame] | 1066 | "graphics/compositing/PropertyTreeManager.cpp", |
| 1067 | "graphics/compositing/PropertyTreeManager.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1068 | "graphics/cpu/arm/WebGLImageConversionNEON.h", |
Prashant.Patil | 568a468 | 2016-09-02 12:24:06 | [diff] [blame] | 1069 | "graphics/cpu/mips/WebGLImageConversionMSA.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1070 | "graphics/cpu/x86/WebGLImageConversionSSE.h", |
| 1071 | "graphics/filters/DistantLightSource.cpp", |
| 1072 | "graphics/filters/DistantLightSource.h", |
| 1073 | "graphics/filters/FEBlend.cpp", |
| 1074 | "graphics/filters/FEBlend.h", |
| 1075 | "graphics/filters/FEBoxReflect.cpp", |
| 1076 | "graphics/filters/FEBoxReflect.h", |
| 1077 | "graphics/filters/FEColorMatrix.cpp", |
| 1078 | "graphics/filters/FEColorMatrix.h", |
| 1079 | "graphics/filters/FEComponentTransfer.cpp", |
| 1080 | "graphics/filters/FEComponentTransfer.h", |
| 1081 | "graphics/filters/FEComposite.cpp", |
| 1082 | "graphics/filters/FEComposite.h", |
| 1083 | "graphics/filters/FEConvolveMatrix.cpp", |
| 1084 | "graphics/filters/FEConvolveMatrix.h", |
| 1085 | "graphics/filters/FEDiffuseLighting.cpp", |
| 1086 | "graphics/filters/FEDiffuseLighting.h", |
| 1087 | "graphics/filters/FEDisplacementMap.cpp", |
| 1088 | "graphics/filters/FEDisplacementMap.h", |
| 1089 | "graphics/filters/FEDropShadow.cpp", |
| 1090 | "graphics/filters/FEDropShadow.h", |
| 1091 | "graphics/filters/FEFlood.cpp", |
| 1092 | "graphics/filters/FEFlood.h", |
| 1093 | "graphics/filters/FEGaussianBlur.cpp", |
| 1094 | "graphics/filters/FEGaussianBlur.h", |
| 1095 | "graphics/filters/FELighting.cpp", |
| 1096 | "graphics/filters/FELighting.h", |
| 1097 | "graphics/filters/FEMerge.cpp", |
| 1098 | "graphics/filters/FEMerge.h", |
| 1099 | "graphics/filters/FEMorphology.cpp", |
| 1100 | "graphics/filters/FEMorphology.h", |
| 1101 | "graphics/filters/FEOffset.cpp", |
| 1102 | "graphics/filters/FEOffset.h", |
| 1103 | "graphics/filters/FESpecularLighting.cpp", |
| 1104 | "graphics/filters/FESpecularLighting.h", |
| 1105 | "graphics/filters/FETile.cpp", |
| 1106 | "graphics/filters/FETile.h", |
| 1107 | "graphics/filters/FETurbulence.cpp", |
| 1108 | "graphics/filters/FETurbulence.h", |
| 1109 | "graphics/filters/Filter.cpp", |
| 1110 | "graphics/filters/Filter.h", |
| 1111 | "graphics/filters/FilterEffect.cpp", |
| 1112 | "graphics/filters/FilterEffect.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1113 | "graphics/filters/LightSource.cpp", |
| 1114 | "graphics/filters/LightSource.h", |
Khushal | 7865b5be | 2017-11-22 03:12:06 | [diff] [blame] | 1115 | "graphics/filters/PaintFilterBuilder.cpp", |
| 1116 | "graphics/filters/PaintFilterBuilder.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1117 | "graphics/filters/PaintFilterEffect.cpp", |
| 1118 | "graphics/filters/PaintFilterEffect.h", |
| 1119 | "graphics/filters/PointLightSource.cpp", |
| 1120 | "graphics/filters/PointLightSource.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1121 | "graphics/filters/SourceAlpha.cpp", |
| 1122 | "graphics/filters/SourceAlpha.h", |
| 1123 | "graphics/filters/SourceGraphic.cpp", |
| 1124 | "graphics/filters/SourceGraphic.h", |
| 1125 | "graphics/filters/SpotLightSource.cpp", |
| 1126 | "graphics/filters/SpotLightSource.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1127 | "graphics/gpu/DrawingBuffer.cpp", |
| 1128 | "graphics/gpu/DrawingBuffer.h", |
| 1129 | "graphics/gpu/Extensions3DUtil.cpp", |
| 1130 | "graphics/gpu/Extensions3DUtil.h", |
Justin Novosad | 700edb258 | 2017-08-24 16:34:34 | [diff] [blame] | 1131 | "graphics/gpu/GraphicsContext3DUtils.cpp", |
| 1132 | "graphics/gpu/GraphicsContext3DUtils.h", |
junov | 300bd53 | 2017-04-06 21:49:10 | [diff] [blame] | 1133 | "graphics/gpu/ImageLayerBridge.cpp", |
| 1134 | "graphics/gpu/ImageLayerBridge.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1135 | "graphics/gpu/SharedContextRateLimiter.cpp", |
| 1136 | "graphics/gpu/SharedContextRateLimiter.h", |
junov | 04f74a5 | 2016-09-08 14:20:50 | [diff] [blame] | 1137 | "graphics/gpu/SharedGpuContext.cpp", |
| 1138 | "graphics/gpu/SharedGpuContext.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1139 | "graphics/gpu/WebGLImageConversion.cpp", |
| 1140 | "graphics/gpu/WebGLImageConversion.h", |
Klaus Weidner | 804b9df | 2018-01-04 21:17:35 | [diff] [blame] | 1141 | "graphics/gpu/XRFrameTransport.cpp", |
| 1142 | "graphics/gpu/XRFrameTransport.h", |
Brandon Jones | 675f9b65 | 2018-01-17 16:55:41 | [diff] [blame] | 1143 | "graphics/gpu/XRWebGLDrawingBuffer.cpp", |
| 1144 | "graphics/gpu/XRWebGLDrawingBuffer.h", |
Ramin Halavati | 621a4e6 | 2017-11-17 12:56:05 | [diff] [blame] | 1145 | "graphics/highcontrast/highcontrast_classifier.cc", |
| 1146 | "graphics/highcontrast/highcontrast_classifier.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1147 | "graphics/paint/ClipDisplayItem.cpp", |
| 1148 | "graphics/paint/ClipDisplayItem.h", |
trchen | f85b68e | 2016-11-01 02:42:59 | [diff] [blame] | 1149 | "graphics/paint/ClipPaintPropertyNode.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1150 | "graphics/paint/ClipPaintPropertyNode.h", |
| 1151 | "graphics/paint/ClipPathDisplayItem.cpp", |
| 1152 | "graphics/paint/ClipPathDisplayItem.h", |
| 1153 | "graphics/paint/ClipPathRecorder.cpp", |
| 1154 | "graphics/paint/ClipPathRecorder.h", |
| 1155 | "graphics/paint/ClipRecorder.cpp", |
| 1156 | "graphics/paint/ClipRecorder.h", |
| 1157 | "graphics/paint/CompositingDisplayItem.cpp", |
| 1158 | "graphics/paint/CompositingDisplayItem.h", |
| 1159 | "graphics/paint/CompositingRecorder.cpp", |
| 1160 | "graphics/paint/CompositingRecorder.h", |
| 1161 | "graphics/paint/CullRect.cpp", |
| 1162 | "graphics/paint/CullRect.h", |
| 1163 | "graphics/paint/DisplayItem.cpp", |
| 1164 | "graphics/paint/DisplayItem.h", |
| 1165 | "graphics/paint/DisplayItemCacheSkipper.h", |
| 1166 | "graphics/paint/DisplayItemClient.cpp", |
| 1167 | "graphics/paint/DisplayItemClient.h", |
| 1168 | "graphics/paint/DisplayItemList.cpp", |
| 1169 | "graphics/paint/DisplayItemList.h", |
| 1170 | "graphics/paint/DrawingDisplayItem.cpp", |
| 1171 | "graphics/paint/DrawingDisplayItem.h", |
| 1172 | "graphics/paint/DrawingRecorder.cpp", |
| 1173 | "graphics/paint/DrawingRecorder.h", |
trchen | f85b68e | 2016-11-01 02:42:59 | [diff] [blame] | 1174 | "graphics/paint/EffectPaintPropertyNode.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1175 | "graphics/paint/EffectPaintPropertyNode.h", |
| 1176 | "graphics/paint/FilterDisplayItem.cpp", |
| 1177 | "graphics/paint/FilterDisplayItem.h", |
| 1178 | "graphics/paint/FloatClipDisplayItem.cpp", |
| 1179 | "graphics/paint/FloatClipDisplayItem.h", |
chrishtr | 2495a58 | 2017-02-07 18:30:30 | [diff] [blame] | 1180 | "graphics/paint/FloatClipRect.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1181 | "graphics/paint/ForeignLayerDisplayItem.cpp", |
| 1182 | "graphics/paint/ForeignLayerDisplayItem.h", |
| 1183 | "graphics/paint/GeometryMapper.cpp", |
| 1184 | "graphics/paint/GeometryMapper.h", |
chrishtr | 890521e | 2017-03-09 20:22:24 | [diff] [blame] | 1185 | "graphics/paint/GeometryMapperClipCache.cpp", |
| 1186 | "graphics/paint/GeometryMapperClipCache.h", |
| 1187 | "graphics/paint/GeometryMapperTransformCache.cpp", |
| 1188 | "graphics/paint/GeometryMapperTransformCache.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1189 | "graphics/paint/PaintArtifact.cpp", |
| 1190 | "graphics/paint/PaintArtifact.h", |
enne | 34f6084c | 2017-02-02 22:39:08 | [diff] [blame] | 1191 | "graphics/paint/PaintCanvas.h", |
Philip Rogers | e45d9f80 | 2017-08-10 05:26:52 | [diff] [blame] | 1192 | "graphics/paint/PaintChunk.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1193 | "graphics/paint/PaintChunk.h", |
Philip Rogers | e45d9f80 | 2017-08-10 05:26:52 | [diff] [blame] | 1194 | "graphics/paint/PaintChunkProperties.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1195 | "graphics/paint/PaintChunkProperties.h", |
| 1196 | "graphics/paint/PaintChunker.cpp", |
| 1197 | "graphics/paint/PaintChunker.h", |
| 1198 | "graphics/paint/PaintController.cpp", |
| 1199 | "graphics/paint/PaintController.h", |
Xianzhu Wang | bfb9537 | 2017-07-01 06:17:07 | [diff] [blame] | 1200 | "graphics/paint/PaintControllerDebugData.cpp", |
Khushal | 7865b5be | 2017-11-22 03:12:06 | [diff] [blame] | 1201 | "graphics/paint/PaintFilter.h", |
enne | 34f6084c | 2017-02-02 22:39:08 | [diff] [blame] | 1202 | "graphics/paint/PaintFlags.h", |
Vladimir Levin | 06970f1 | 2017-11-09 02:05:28 | [diff] [blame] | 1203 | "graphics/paint/PaintFont.h", |
Xianzhu Wang | 5afd9fd | 2017-06-28 18:41:19 | [diff] [blame] | 1204 | "graphics/paint/PaintPropertyNode.cpp", |
Xianzhu Wang | df9ed4d6 | 2017-06-23 16:55:11 | [diff] [blame] | 1205 | "graphics/paint/PaintPropertyNode.h", |
enne | 34f6084c | 2017-02-02 22:39:08 | [diff] [blame] | 1206 | "graphics/paint/PaintRecord.h", |
enne | 5cea078 | 2017-02-11 01:41:53 | [diff] [blame] | 1207 | "graphics/paint/PaintRecordBuilder.cpp", |
| 1208 | "graphics/paint/PaintRecordBuilder.h", |
enne | 34f6084c | 2017-02-02 22:39:08 | [diff] [blame] | 1209 | "graphics/paint/PaintRecorder.h", |
| 1210 | "graphics/paint/PaintShader.h", |
Vladimir Levin | 06970f1 | 2017-11-09 02:05:28 | [diff] [blame] | 1211 | "graphics/paint/PaintTextBlob.h", |
| 1212 | "graphics/paint/PaintTypeface.h", |
chrishtr | 7239114 | 2016-12-27 19:19:57 | [diff] [blame] | 1213 | "graphics/paint/PropertyTreeState.cpp", |
pdr | 3186773 | 2016-10-04 00:28:45 | [diff] [blame] | 1214 | "graphics/paint/PropertyTreeState.h", |
chrishtr | a339612 | 2016-10-03 18:05:03 | [diff] [blame] | 1215 | "graphics/paint/RasterInvalidationTracking.cpp", |
| 1216 | "graphics/paint/RasterInvalidationTracking.h", |
Chris Harrelson | 65ce0f7 | 2018-01-30 20:43:55 | [diff] [blame] | 1217 | "graphics/paint/RefCountedPropertyTreeState.cpp", |
| 1218 | "graphics/paint/RefCountedPropertyTreeState.h", |
Xianzhu Wang | 1de7bf47 | 2017-12-22 23:12:32 | [diff] [blame] | 1219 | "graphics/paint/ScopedDisplayItemFragment.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1220 | "graphics/paint/ScopedPaintChunkProperties.h", |
| 1221 | "graphics/paint/ScrollDisplayItem.cpp", |
| 1222 | "graphics/paint/ScrollDisplayItem.h", |
Philip Rogers | 56ebfeb6 | 2017-08-09 17:52:27 | [diff] [blame] | 1223 | "graphics/paint/ScrollHitTestDisplayItem.cpp", |
| 1224 | "graphics/paint/ScrollHitTestDisplayItem.h", |
trchen | f85b68e | 2016-11-01 02:42:59 | [diff] [blame] | 1225 | "graphics/paint/ScrollPaintPropertyNode.cpp", |
pdr | d1a5fe1b | 2016-09-11 00:12:48 | [diff] [blame] | 1226 | "graphics/paint/ScrollPaintPropertyNode.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1227 | "graphics/paint/SubsequenceRecorder.h", |
| 1228 | "graphics/paint/Transform3DDisplayItem.cpp", |
| 1229 | "graphics/paint/Transform3DDisplayItem.h", |
| 1230 | "graphics/paint/TransformDisplayItem.cpp", |
| 1231 | "graphics/paint/TransformDisplayItem.h", |
trchen | f85b68e | 2016-11-01 02:42:59 | [diff] [blame] | 1232 | "graphics/paint/TransformPaintPropertyNode.cpp", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1233 | "graphics/paint/TransformPaintPropertyNode.h", |
| 1234 | "graphics/skia/ImagePixelLocker.cpp", |
| 1235 | "graphics/skia/ImagePixelLocker.h", |
| 1236 | "graphics/skia/SkSizeHash.h", |
| 1237 | "graphics/skia/SkiaUtils.cpp", |
| 1238 | "graphics/skia/SkiaUtils.h", |
| 1239 | "image-decoders/FastSharedBufferReader.cpp", |
| 1240 | "image-decoders/FastSharedBufferReader.h", |
| 1241 | "image-decoders/ImageAnimation.h", |
| 1242 | "image-decoders/ImageDecoder.cpp", |
| 1243 | "image-decoders/ImageDecoder.h", |
| 1244 | "image-decoders/ImageFrame.cpp", |
| 1245 | "image-decoders/ImageFrame.h", |
| 1246 | "image-decoders/SegmentReader.cpp", |
| 1247 | "image-decoders/SegmentReader.h", |
| 1248 | "image-decoders/bmp/BMPImageDecoder.cpp", |
| 1249 | "image-decoders/bmp/BMPImageDecoder.h", |
| 1250 | "image-decoders/bmp/BMPImageReader.cpp", |
| 1251 | "image-decoders/bmp/BMPImageReader.h", |
| 1252 | "image-decoders/gif/GIFImageDecoder.cpp", |
| 1253 | "image-decoders/gif/GIFImageDecoder.h", |
Leon Scroggins III | 8bf6a88 | 2017-10-23 18:04:39 | [diff] [blame] | 1254 | "image-decoders/gif/GIFImageReader.cpp", |
| 1255 | "image-decoders/gif/GIFImageReader.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1256 | "image-decoders/ico/ICOImageDecoder.cpp", |
| 1257 | "image-decoders/ico/ICOImageDecoder.h", |
| 1258 | "image-decoders/jpeg/JPEGImageDecoder.cpp", |
| 1259 | "image-decoders/jpeg/JPEGImageDecoder.h", |
| 1260 | "image-decoders/png/PNGImageDecoder.cpp", |
| 1261 | "image-decoders/png/PNGImageDecoder.h", |
joostouwerling | 4055a90 | 2016-11-09 22:42:14 | [diff] [blame] | 1262 | "image-decoders/png/PNGImageReader.cpp", |
| 1263 | "image-decoders/png/PNGImageReader.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1264 | "image-decoders/webp/WEBPImageDecoder.cpp", |
| 1265 | "image-decoders/webp/WEBPImageDecoder.h", |
msarett | 8607497 | 2017-05-18 12:25:27 | [diff] [blame] | 1266 | "image-encoders/ImageEncoder.cpp", |
| 1267 | "image-encoders/ImageEncoder.h", |
xlai | 13475354 | 2016-10-19 15:58:12 | [diff] [blame] | 1268 | "image-encoders/ImageEncoderUtils.cpp", |
| 1269 | "image-encoders/ImageEncoderUtils.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1270 | "json/JSONParser.cpp", |
| 1271 | "json/JSONParser.h", |
| 1272 | "json/JSONValues.cpp", |
| 1273 | "json/JSONValues.h", |
| 1274 | "mac/BlockExceptions.h", |
| 1275 | "mac/BlockExceptions.mm", |
| 1276 | "mac/ColorMac.h", |
| 1277 | "mac/ColorMac.mm", |
enne | 7e40b41 | 2017-02-24 21:50:15 | [diff] [blame] | 1278 | "mac/GraphicsContextCanvas.h", |
| 1279 | "mac/GraphicsContextCanvas.mm", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1280 | "mac/KillRingMac.mm", |
| 1281 | "mac/LocalCurrentGraphicsContext.h", |
| 1282 | "mac/LocalCurrentGraphicsContext.mm", |
| 1283 | "mac/NSScrollerImpDetails.h", |
| 1284 | "mac/ScrollAnimatorMac.h", |
| 1285 | "mac/ScrollAnimatorMac.mm", |
| 1286 | "mac/ThemeMac.h", |
| 1287 | "mac/ThemeMac.mm", |
| 1288 | "mac/VersionUtilMac.h", |
| 1289 | "mac/VersionUtilMac.mm", |
| 1290 | "mac/WebCoreNSCellExtras.h", |
| 1291 | "mac/WebCoreNSCellExtras.mm", |
| 1292 | "mediastream/MediaStreamCenter.cpp", |
| 1293 | "mediastream/MediaStreamCenter.h", |
| 1294 | "mediastream/MediaStreamComponent.cpp", |
| 1295 | "mediastream/MediaStreamComponent.h", |
| 1296 | "mediastream/MediaStreamDescriptor.cpp", |
| 1297 | "mediastream/MediaStreamDescriptor.h", |
| 1298 | "mediastream/MediaStreamSource.cpp", |
| 1299 | "mediastream/MediaStreamSource.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1300 | "mediastream/MediaStreamWebAudioSource.cpp", |
| 1301 | "mediastream/MediaStreamWebAudioSource.h", |
| 1302 | "mhtml/ArchiveResource.cpp", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 1303 | "mhtml/ArchiveResource.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1304 | "mhtml/MHTMLArchive.cpp", |
| 1305 | "mhtml/MHTMLArchive.h", |
| 1306 | "mhtml/MHTMLParser.cpp", |
| 1307 | "mhtml/MHTMLParser.h", |
Dmitry Gozman | c3d46ef | 2018-01-31 03:15:38 | [diff] [blame] | 1308 | "mojo/BigStringMojomTraits.cpp", |
| 1309 | "mojo/BigStringMojomTraits.h", |
juncai | c7a55bd | 2017-01-03 20:03:59 | [diff] [blame] | 1310 | "mojo/BluetoothStructTraits.cpp", |
thakis | b8590c9 | 2017-03-23 18:14:53 | [diff] [blame] | 1311 | "mojo/BluetoothStructTraits.h", |
peter | f05540d8 | 2017-03-29 12:36:28 | [diff] [blame] | 1312 | "mojo/FetchAPIRequestStructTraits.cpp", |
Austin Tankiang | 88931be | 2018-01-25 05:54:57 | [diff] [blame] | 1313 | "mojo/InterfaceInvalidator.cpp", |
| 1314 | "mojo/InterfaceInvalidator.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1315 | "mojo/MojoHelper.h", |
Anita Woodruff | 3de15be | 2018-01-17 12:06:11 | [diff] [blame] | 1316 | "mojo/NotificationStructTraits.cpp", |
| 1317 | "mojo/NotificationStructTraits.h", |
Austin Tankiang | 72a329b | 2018-02-08 00:35:06 | [diff] [blame] | 1318 | "mojo/RevocableBinding.h", |
| 1319 | "mojo/RevocableInterfacePtr.h", |
| 1320 | "mojo/RevocableStrongBinding.h", |
Ken Rockot | 8b447d7 | 2018-02-03 20:30:47 | [diff] [blame] | 1321 | "mojo/String16MojomTraits.cpp", |
| 1322 | "mojo/String16MojomTraits.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1323 | "peerconnection/RTCAnswerOptionsPlatform.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1324 | "peerconnection/RTCOfferOptionsPlatform.h", |
| 1325 | "peerconnection/RTCSessionDescriptionRequest.h", |
| 1326 | "peerconnection/RTCStatsRequest.h", |
| 1327 | "peerconnection/RTCStatsResponseBase.h", |
| 1328 | "peerconnection/RTCVoidRequest.h", |
| 1329 | "plugins/PluginData.cpp", |
| 1330 | "plugins/PluginData.h", |
| 1331 | "plugins/PluginListBuilder.cpp", |
| 1332 | "plugins/PluginListBuilder.h", |
Jeremy Roman | be7fde4 | 2017-10-16 18:23:06 | [diff] [blame] | 1333 | "plugins/PluginScriptForbiddenScope.cpp", |
| 1334 | "plugins/PluginScriptForbiddenScope.h", |
alph | 80b9751 | 2017-03-29 05:20:13 | [diff] [blame] | 1335 | "probe/PlatformProbes.cpp", |
| 1336 | "probe/PlatformProbes.h", |
| 1337 | "probe/PlatformTraceEventsAgent.cpp", |
| 1338 | "probe/PlatformTraceEventsAgent.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1339 | "scroll/MainThreadScrollingReason.h", |
| 1340 | "scroll/ProgrammaticScrollAnimator.cpp", |
| 1341 | "scroll/ProgrammaticScrollAnimator.h", |
Ehsan Karamad | 0e5d469 | 2018-01-16 21:32:48 | [diff] [blame] | 1342 | "scroll/ScrollAlignment.cpp", |
| 1343 | "scroll/ScrollAlignment.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1344 | "scroll/ScrollAnimator.cpp", |
| 1345 | "scroll/ScrollAnimator.h", |
| 1346 | "scroll/ScrollAnimatorBase.cpp", |
| 1347 | "scroll/ScrollAnimatorBase.h", |
| 1348 | "scroll/ScrollAnimatorCompositorCoordinator.cpp", |
| 1349 | "scroll/ScrollAnimatorCompositorCoordinator.h", |
Ehsan Karamad | 04c9db9 | 2018-01-22 18:38:34 | [diff] [blame] | 1350 | "scroll/ScrollCustomization.cpp", |
| 1351 | "scroll/ScrollCustomization.h", |
Sandra Sun | db77c44 | 2017-12-06 19:18:03 | [diff] [blame] | 1352 | "scroll/ScrollSnapData.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1353 | "scroll/ScrollStateData.h", |
| 1354 | "scroll/ScrollTypes.h", |
| 1355 | "scroll/ScrollableArea.cpp", |
| 1356 | "scroll/ScrollableArea.h", |
| 1357 | "scroll/Scrollbar.cpp", |
| 1358 | "scroll/Scrollbar.h", |
| 1359 | "scroll/ScrollbarTheme.cpp", |
| 1360 | "scroll/ScrollbarTheme.h", |
| 1361 | "scroll/ScrollbarThemeAndroid.cpp", |
| 1362 | "scroll/ScrollbarThemeAura.cpp", |
| 1363 | "scroll/ScrollbarThemeAura.h", |
| 1364 | "scroll/ScrollbarThemeClient.h", |
| 1365 | "scroll/ScrollbarThemeMac.h", |
| 1366 | "scroll/ScrollbarThemeMac.mm", |
| 1367 | "scroll/ScrollbarThemeMock.cpp", |
| 1368 | "scroll/ScrollbarThemeMock.h", |
| 1369 | "scroll/ScrollbarThemeOverlay.cpp", |
| 1370 | "scroll/ScrollbarThemeOverlay.h", |
| 1371 | "scroll/ScrollbarThemeOverlayMock.h", |
sunyunjia | 61b73ca | 2017-06-08 14:00:35 | [diff] [blame] | 1372 | "scroll/SmoothScrollSequencer.cpp", |
| 1373 | "scroll/SmoothScrollSequencer.h", |
Ehsan Karamad | 0e5d469 | 2018-01-16 21:32:48 | [diff] [blame] | 1374 | "scroll/WebScrollIntoViewParams.cpp", |
Joel Hockey | 473bc63 | 2017-06-16 02:17:24 | [diff] [blame] | 1375 | "scroll/WebScrollbarTheme.mm", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1376 | "speech/PlatformSpeechSynthesisUtterance.cpp", |
| 1377 | "speech/PlatformSpeechSynthesisUtterance.h", |
| 1378 | "speech/PlatformSpeechSynthesisVoice.cpp", |
| 1379 | "speech/PlatformSpeechSynthesisVoice.h", |
| 1380 | "speech/PlatformSpeechSynthesizer.cpp", |
| 1381 | "speech/PlatformSpeechSynthesizer.h", |
| 1382 | "text/BidiCharacterRun.cpp", |
| 1383 | "text/BidiCharacterRun.h", |
| 1384 | "text/BidiContext.cpp", |
| 1385 | "text/BidiContext.h", |
| 1386 | "text/BidiResolver.h", |
| 1387 | "text/BidiRunList.h", |
| 1388 | "text/BidiTextRun.cpp", |
| 1389 | "text/BidiTextRun.h", |
| 1390 | "text/Character.cpp", |
| 1391 | "text/Character.h", |
| 1392 | "text/CharacterEmoji.cpp", |
xiaochengh | 6971ef3 | 2017-03-24 01:24:36 | [diff] [blame] | 1393 | "text/CharacterProperty.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1394 | "text/DateTimeFormat.cpp", |
| 1395 | "text/DateTimeFormat.h", |
| 1396 | "text/DecodeEscapeSequences.h", |
| 1397 | "text/Hyphenation.cpp", |
| 1398 | "text/Hyphenation.h", |
kojii | 9a878af | 2016-11-28 16:22:10 | [diff] [blame] | 1399 | "text/ICUError.cpp", |
| 1400 | "text/ICUError.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [blame] | 1401 | "text/LineEnding.cpp", |
| 1402 | "text/LineEnding.h", |
| 1403 | "text/LocaleICU.cpp", |
| 1404 | "text/LocaleICU.h", |
| 1405 | "text/LocaleMac.h", |
| 1406 | "text/LocaleMac.mm", |
| 1407 | "text/LocaleToScriptMapping.cpp", |
| 1408 | "text/LocaleToScriptMapping.h", |
| 1409 | "text/LocaleWin.cpp", |
| 1410 | "text/LocaleWin.h", |
| 1411 | "text/PlatformLocale.cpp", |
| 1412 | "text/PlatformLocale.h", |
| 1413 | "text/QuotedPrintable.cpp", |
| 1414 | "text/QuotedPrintable.h", |
| 1415 | "text/SegmentedString.cpp", |
| 1416 | "text/SegmentedString.h", |
| 1417 | "text/StringTruncator.cpp", |
| 1418 | "text/StringTruncator.h", |
| 1419 | "text/SuffixTree.h", |
| 1420 | "text/TextBoundaries.cpp", |
| 1421 | "text/TextBoundaries.h", |
| 1422 | "text/TextBreakIterator.cpp", |
| 1423 | "text/TextBreakIterator.h", |
| 1424 | "text/TextBreakIteratorICU.cpp", |
| 1425 | "text/TextBreakIteratorInternalICU.cpp", |
| 1426 | "text/TextBreakIteratorInternalICU.h", |
Koji Ishii | 2ae284f6 | 2017-11-14 03:06:36 | [diff] [blame] | 1427 | "text/TextDirection.cpp", |
| 1428 | "text/TextDirection.h", |
brettw | 12fcbdc4 | 2016-09-01 06:06:09 | [diff] [
|