forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.gn
1304 lines (1256 loc) · 51.6 KB
/
BUILD.gn
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/features.gni")
import("//third_party/WebKit/public/public_features.gni")
import("//third_party/WebKit/Source/core/core.gni")
all_devtools_files = [
"front_end/accessibility/AccessibilityModel.js",
"front_end/accessibility/accessibilityNode.css",
"front_end/accessibility/AccessibilityNodeView.js",
"front_end/accessibility/accessibilityProperties.css",
"front_end/accessibility/AccessibilitySidebarView.js",
"front_end/accessibility/AccessibilityStrings.js",
"front_end/accessibility/ARIAAttributesView.js",
"front_end/accessibility/ARIAConfig.js",
"front_end/accessibility/ARIAMetadata.js",
"front_end/accessibility/axBreadcrumbs.css",
"front_end/accessibility/AXBreadcrumbsPane.js",
"front_end/accessibility/module.json",
"front_end/accessibility_test_runner/AccessibilityPaneTestRunner.js",
"front_end/accessibility_test_runner/module.json",
"front_end/animation/AnimationGroupPreviewUI.js",
"front_end/animation/AnimationModel.js",
"front_end/animation/animationScreenshotPopover.css",
"front_end/animation/AnimationScreenshotPopover.js",
"front_end/animation/animationTimeline.css",
"front_end/animation/AnimationTimeline.js",
"front_end/animation/AnimationUI.js",
"front_end/animation/module.json",
"front_end/application_test_runner/AppcacheTestRunner.js",
"front_end/application_test_runner/CacheStorageTestRunner.js",
"front_end/application_test_runner/IndexedDBTestRunner.js",
"front_end/application_test_runner/module.json",
"front_end/application_test_runner/ResourcesTestRunner.js",
"front_end/application_test_runner/ResourceTreeTestRunner.js",
"front_end/application_test_runner/ServiceWorkersTestRunner.js",
"front_end/audits2_worker.js",
"front_end/audits2_worker.json",
"front_end/audits2_worker/Audits2Service.js",
"front_end/audits2_worker/lighthouse/lighthouse-background.js",
"front_end/audits2_worker/module.json",
"front_end/audits2/Audits2Panel.js",
"front_end/audits2/Audits2Dialog.js",
"front_end/audits2/Audits2ProtocolService.js",
"front_end/audits2/Audits2StatusView.js",
"front_end/audits2/audits2Dialog.css",
"front_end/audits2/audits2Panel.css",
"front_end/audits2/lighthouse/renderer/dom.js",
"front_end/audits2/lighthouse/renderer/details-renderer.js",
"front_end/audits2/lighthouse/renderer/category-renderer.js",
"front_end/audits2/lighthouse/renderer/crc-details-renderer.js",
"front_end/audits2/lighthouse/renderer/report-renderer.js",
"front_end/audits2/lighthouse/renderer/util.js",
"front_end/audits2/lighthouse/report-styles.css",
"front_end/audits2/lighthouse/templates.html",
"front_end/audits2/module.json",
"front_end/audits2_test_runner/Audits2TestRunner.js",
"front_end/audits2_test_runner/module.json",
"front_end/bindings/BlackboxManager.js",
"front_end/bindings/BreakpointManager.js",
"front_end/bindings/CompilerScriptMapping.js",
"front_end/bindings/ContentProviderBasedProject.js",
"front_end/bindings/CSSWorkspaceBinding.js",
"front_end/bindings/DebuggerWorkspaceBinding.js",
"front_end/bindings/DefaultScriptMapping.js",
"front_end/bindings/FileUtils.js",
"front_end/bindings/LiveLocation.js",
"front_end/bindings/module.json",
"front_end/bindings/NetworkProject.js",
"front_end/bindings/PresentationConsoleMessageHelper.js",
"front_end/bindings/ResourceMapping.js",
"front_end/bindings/ResourceScriptMapping.js",
"front_end/bindings/ResourceUtils.js",
"front_end/bindings/SASSSourceMapping.js",
"front_end/bindings/StylesSourceMapping.js",
"front_end/bindings/TempFile.js",
"front_end/bindings_test_runner/AutomappingTestRunner.js",
"front_end/bindings_test_runner/BindingsTestRunner.js",
"front_end/bindings_test_runner/IsolatedFilesystemTestRunner.js",
"front_end/bindings_test_runner/module.json",
"front_end/bindings_test_runner/PersistenceTestRunner.js",
"front_end/bindings_test_runner/OverridesTestRunner.js",
"front_end/browser_components/ImagePreview.js",
"front_end/browser_components/imagePreview.css",
"front_end/browser_console/BrowserConsole.js",
"front_end/browser_console/module.json",
"front_end/browser_debugger/DOMBreakpointsSidebarPane.js",
"front_end/browser_debugger/EventListenerBreakpointsSidebarPane.js",
"front_end/browser_debugger/ObjectEventListenersSidebarPane.js",
"front_end/browser_debugger/XHRBreakpointsSidebarPane.js",
"front_end/browser_debugger/domBreakpointsSidebarPane.css",
"front_end/browser_debugger/eventListenerBreakpoints.css",
"front_end/browser_debugger/module.json",
"front_end/browser_debugger/xhrBreakpointsSidebarPane.css",
"front_end/browser_sdk/HAREntry.js",
"front_end/browser_sdk/LogManager.js",
"front_end/browser_sdk/NetworkLog.js",
"front_end/browser_sdk/module.json",
"front_end/changes/ChangesHighlighter.js",
"front_end/changes/changesView.css",
"front_end/changes/ChangesView.js",
"front_end/changes/changesSidebar.css",
"front_end/changes/ChangesSidebar.js",
"front_end/changes/module.json",
"front_end/cm/activeline.js",
"front_end/cm/closebrackets.js",
"front_end/cm/codemirror.css",
"front_end/cm/codemirror.js",
"front_end/cm/comment.js",
"front_end/cm/markselection.js",
"front_end/cm/matchbrackets.js",
"front_end/cm/module.json",
"front_end/cm/multiplex.js",
"front_end/cm/overlay.js",
"front_end/cm_headless/headlesscodemirror.js",
"front_end/cm_headless/module.json",
"front_end/cm_modes/clike.js",
"front_end/cm_modes/clojure.js",
"front_end/cm_modes/coffeescript.js",
"front_end/cm_modes/DefaultCodeMirrorMimeMode.js",
"front_end/cm_modes/jsx.js",
"front_end/cm_modes/livescript.js",
"front_end/cm_modes/markdown.js",
"front_end/cm_modes/module.json",
"front_end/cm_modes/php.js",
"front_end/cm_modes/python.js",
"front_end/cm_modes/shell.js",
"front_end/cm_modes/stylus.js",
"front_end/cm_web_modes/css.js",
"front_end/cm_web_modes/htmlembedded.js",
"front_end/cm_web_modes/htmlmixed.js",
"front_end/cm_web_modes/javascript.js",
"front_end/cm_web_modes/xml.js",
"front_end/color_picker/ContrastDetails.js",
"front_end/color_picker/ContrastInfo.js",
"front_end/color_picker/ContrastOverlay.js",
"front_end/color_picker/module.json",
"front_end/color_picker/spectrum.css",
"front_end/color_picker/Spectrum.js",
"front_end/common/CharacterIdMap.js",
"front_end/common/Color.js",
"front_end/common/Console.js",
"front_end/common/ContentProvider.js",
"front_end/common/module.json",
"front_end/common/ModuleExtensionInterfaces.js",
"front_end/common/Object.js",
"front_end/common/OutputStream.js",
"front_end/common/ParsedURL.js",
"front_end/common/Progress.js",
"front_end/common/ResourceType.js",
"front_end/common/SegmentedRange.js",
"front_end/common/Settings.js",
"front_end/common/StaticContentProvider.js",
"front_end/common/TextDictionary.js",
"front_end/common/Throttler.js",
"front_end/common/Trie.js",
"front_end/common/UIString.js",
"front_end/common/Worker.js",
"front_end/components/DockController.js",
"front_end/components/JSPresentationUtils.js",
"front_end/components/Linkifier.js",
"front_end/components/TargetDetachedDialog.js",
"front_end/components/Reload.js",
"front_end/components/jsUtils.css",
"front_end/components/module.json",
"front_end/console/ConsoleContextSelector.js",
"front_end/console/ConsoleFilter.js",
"front_end/console/ConsoleSidebar.js",
"front_end/console/ConsolePanel.js",
"front_end/console/ConsolePrompt.js",
"front_end/console/consoleView.css",
"front_end/console/consoleContextSelector.css",
"front_end/console/consoleSidebar.css",
"front_end/console/ConsoleView.js",
"front_end/console/ConsoleViewMessage.js",
"front_end/console/ConsoleViewport.js",
"front_end/console/module.json",
"front_end/console_counters/errorWarningCounter.css",
"front_end/console_counters/module.json",
"front_end/console_counters/WarningErrorCounter.js",
"front_end/console_test_runner/ConsoleTestRunner.js",
"front_end/console_test_runner/module.json",
"front_end/cookie_table/CookiesTable.js",
"front_end/cookie_table/module.json",
"front_end/coverage/coverageListView.css",
"front_end/coverage/CoverageDecorationManager.js",
"front_end/coverage/CoverageListView.js",
"front_end/coverage/CoverageModel.js",
"front_end/coverage/coverageView.css",
"front_end/coverage/CoverageView.js",
"front_end/coverage/module.json",
"front_end/coverage_test_runner/CoverageTestRunner.js",
"front_end/coverage_test_runner/module.json",
"front_end/cpu_profiler_test_runner/module.json",
"front_end/cpu_profiler_test_runner/ProfilerTestRunner.js",
"front_end/data_grid/dataGrid.css",
"front_end/data_grid/DataGrid.js",
"front_end/data_grid/module.json",
"front_end/data_grid/ShowMoreDataGridNode.js",
"front_end/data_grid/SortableDataGrid.js",
"front_end/data_grid/ViewportDataGrid.js",
"front_end/data_grid_test_runner/DataGridTestRunner.js",
"front_end/data_grid_test_runner/module.json",
"front_end/device_mode_test_runner/DeviceModeTestRunner.js",
"front_end/device_mode_test_runner/module.json",
"front_end/devices/DevicesView.js",
"front_end/devices/devicesView.css",
"front_end/devices/module.json",
"front_end/diff/diff_match_patch.js",
"front_end/diff/Diff.js",
"front_end/diff/module.json",
"front_end/dom_extension/DOMExtension.js",
"front_end/dom_extension/module.json",
"front_end/elements/breadcrumbs.css",
"front_end/elements/classesPaneWidget.css",
"front_end/elements/ClassesPaneWidget.js",
"front_end/elements/ColorSwatchPopoverIcon.js",
"front_end/elements/ComputedStyleModel.js",
"front_end/elements/computedStyleSidebarPane.css",
"front_end/elements/computedStyleWidgetTree.css",
"front_end/elements/ComputedStyleWidget.js",
"front_end/elements/DOMLinkifier.js",
"front_end/elements/domLinkifier.css",
"front_end/elements/DOMPath.js",
"front_end/elements/ElementsBreadcrumbs.js",
"front_end/elements/elementsPanel.css",
"front_end/elements/ElementsPanel.js",
"front_end/elements/ElementsSidebarPane.js",
"front_end/elements/elementStatePaneWidget.css",
"front_end/elements/ElementStatePaneWidget.js",
"front_end/elements/ElementsTreeElement.js",
"front_end/elements/ElementsTreeElementHighlighter.js",
"front_end/elements/elementsTreeOutline.css",
"front_end/elements/ElementsTreeOutline.js",
"front_end/elements/EventListenersWidget.js",
"front_end/elements/InspectElementModeController.js",
"front_end/elements/MarkerDecorator.js",
"front_end/elements/metricsSidebarPane.css",
"front_end/elements/MetricsSidebarPane.js",
"front_end/elements/module.json",
"front_end/elements/platformFontsWidget.css",
"front_end/elements/PlatformFontsWidget.js",
"front_end/elements/propertiesWidget.css",
"front_end/elements/PropertiesWidget.js",
"front_end/elements/StylePropertyHighlighter.js",
"front_end/elements/stylesSectionTree.css",
"front_end/elements/stylesSidebarPane.css",
"front_end/elements/StylesSidebarPane.js",
"front_end/elements/StylePropertyTreeElement.js",
"front_end/elements_test_runner/EditDOMTestRunner.js",
"front_end/elements_test_runner/ElementsPanelShadowSelectionOnRefreshTestRunner.js",
"front_end/elements_test_runner/ElementsTestRunner.js",
"front_end/elements_test_runner/SetOuterHTMLTestRunner.js",
"front_end/elements_test_runner/StylesUpdateLinksTestRunner.js",
"front_end/emulated_devices/module.json",
"front_end/emulation/AdvancedApp.js",
"front_end/emulation/DeviceModeModel.js",
"front_end/emulation/deviceModeToolbar.css",
"front_end/emulation/DeviceModeToolbar.js",
"front_end/emulation/deviceModeView.css",
"front_end/emulation/DeviceModeView.js",
"front_end/emulation/DeviceModeWrapper.js",
"front_end/emulation/devicesSettingsTab.css",
"front_end/emulation/DevicesSettingsTab.js",
"front_end/emulation/EmulatedDevices.js",
"front_end/emulation/inspectedPagePlaceholder.css",
"front_end/emulation/InspectedPagePlaceholder.js",
"front_end/emulation/mediaQueryInspector.css",
"front_end/emulation/MediaQueryInspector.js",
"front_end/emulation/module.json",
"front_end/emulation/sensors.css",
"front_end/emulation/SensorsView.js",
"front_end/event_listeners/EventListenersUtils.js",
"front_end/event_listeners/eventListenersView.css",
"front_end/event_listeners/EventListenersView.js",
"front_end/event_listeners/module.json",
"front_end/extensions/ExtensionAPI.js",
"front_end/extensions/ExtensionPanel.js",
"front_end/extensions/ExtensionRegistryStub.js",
"front_end/extensions/ExtensionServer.js",
"front_end/extensions/ExtensionTraceProvider.js",
"front_end/extensions/ExtensionView.js",
"front_end/extensions/module.json",
"front_end/extensions_test_runner/ExtensionsNetworkTestRunner.js",
"front_end/extensions_test_runner/ExtensionsTestRunner.js",
"front_end/extensions_test_runner/module.json",
"front_end/formatter/FormatterWorkerPool.js",
"front_end/formatter/module.json",
"front_end/formatter/ScriptFormatter.js",
"front_end/formatter_worker.js",
"front_end/formatter_worker.json",
"front_end/formatter_worker/AcornTokenizer.js",
"front_end/formatter_worker/CSSFormatter.js",
"front_end/formatter_worker/CSSRuleParser.js",
"front_end/formatter_worker/ESTreeWalker.js",
"front_end/formatter_worker/FormattedContentBuilder.js",
"front_end/formatter_worker/FormatterWorker.js",
"front_end/formatter_worker/HTMLFormatter.js",
"front_end/formatter_worker/IdentityFormatter.js",
"front_end/formatter_worker/JavaScriptFormatter.js",
"front_end/formatter_worker/JavaScriptOutline.js",
"front_end/formatter_worker/RelaxedJSONParser.js",
"front_end/formatter_worker/acorn/acorn.js",
"front_end/formatter_worker/acorn/acorn_loose.js",
"front_end/formatter_worker/module.json",
"front_end/har_importer/HARFormat.js",
"front_end/har_importer/HARImporter.js",
"front_end/har_importer/module.json",
"front_end/heap_profiler_test_runner/HeapProfilerTestRunner.js",
"front_end/heap_profiler_test_runner/module.json",
"front_end/heap_snapshot_model/HeapSnapshotModel.js",
"front_end/heap_snapshot_model/module.json",
"front_end/heap_snapshot_worker.js",
"front_end/heap_snapshot_worker.json",
"front_end/heap_snapshot_worker/AllocationProfile.js",
"front_end/heap_snapshot_worker/HeapSnapshot.js",
"front_end/heap_snapshot_worker/HeapSnapshotLoader.js",
"front_end/heap_snapshot_worker/HeapSnapshotWorker.js",
"front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js",
"front_end/heap_snapshot_worker/module.json",
"front_end/help/Help.js",
"front_end/help/module.json",
"front_end/help/releaseNote.css",
"front_end/help/ReleaseNoteText.js",
"front_end/help/ReleaseNoteView.js",
"front_end/host/InspectorFrontendHost.js",
"front_end/host/InspectorFrontendHostAPI.js",
"front_end/host/module.json",
"front_end/host/Platform.js",
"front_end/host/ResourceLoader.js",
"front_end/host/UserMetrics.js",
"front_end/inline_editor/bezierEditor.css",
"front_end/inline_editor/BezierEditor.js",
"front_end/inline_editor/bezierSwatch.css",
"front_end/inline_editor/BezierUI.js",
"front_end/inline_editor/colorSwatch.css",
"front_end/inline_editor/ColorSwatch.js",
"front_end/inline_editor/cssShadowEditor.css",
"front_end/inline_editor/CSSShadowEditor.js",
"front_end/inline_editor/CSSShadowModel.js",
"front_end/inline_editor/cssShadowSwatch.css",
"front_end/inline_editor/module.json",
"front_end/inline_editor/swatchPopover.css",
"front_end/inline_editor/SwatchPopoverHelper.js",
"front_end/inspector.js",
"front_end/inspector.json",
"front_end/inspector_main/InspectorMain.js",
"front_end/inspector_main/module.json",
"front_end/inspector_main/nodeIcon.css",
"front_end/inspector_main/renderingOptions.css",
"front_end/inspector_main/RenderingOptions.js",
"front_end/inspector_main/RequestAppBannerActionDelegate.js",
"front_end/integration_test_runner.js",
"front_end/integration_test_runner.json",
"front_end/js_main/JsMain.js",
"front_end/js_main/module.json",
"front_end/js_profiler/module.json",
"front_end/layer_viewer/layerDetailsView.css",
"front_end/layer_viewer/LayerDetailsView.js",
"front_end/layer_viewer/layers3DView.css",
"front_end/layer_viewer/Layers3DView.js",
"front_end/layer_viewer/LayerTreeOutline.js",
"front_end/layer_viewer/LayerViewHost.js",
"front_end/layer_viewer/module.json",
"front_end/layer_viewer/paintProfiler.css",
"front_end/layer_viewer/PaintProfilerView.js",
"front_end/layer_viewer/TransformController.js",
"front_end/layers/LayerPaintProfilerView.js",
"front_end/layers/LayersPanel.js",
"front_end/layers/LayerTreeModel.js",
"front_end/layers/module.json",
"front_end/layers_test_runner/LayersTestRunner.js",
"front_end/layers_test_runner/module.json",
"front_end/main/ExecutionContextSelector.js",
"front_end/main/Main.js",
"front_end/main/module.json",
"front_end/main/SimpleApp.js",
"front_end/protocol_monitor/ProtocolMonitor.js",
"front_end/protocol_monitor/protocolMonitor.css",
"front_end/protocol_monitor/module.json",
"front_end/mobile_throttling/MobileThrottlingSelector.js",
"front_end/mobile_throttling/module.json",
"front_end/mobile_throttling/NetworkPanelIndicator.js",
"front_end/mobile_throttling/NetworkThrottlingSelector.js",
"front_end/mobile_throttling/ThrottlingManager.js",
"front_end/mobile_throttling/ThrottlingPresets.js",
"front_end/mobile_throttling/throttlingSettingsTab.css",
"front_end/mobile_throttling/ThrottlingSettingsTab.js",
"front_end/ndb_app.json",
"front_end/network/blockedURLsPane.css",
"front_end/network/BlockedURLsPane.js",
"front_end/network/eventSourceMessagesView.css",
"front_end/network/EventSourceMessagesView.js",
"front_end/network/HARWriter.js",
"front_end/network/module.json",
"front_end/network/networkConfigView.css",
"front_end/network/NetworkConfigView.js",
"front_end/network/NetworkDataGridNode.js",
"front_end/network/NetworkItemView.js",
"front_end/network/networkLogView.css",
"front_end/network/NetworkLogView.js",
"front_end/network/NetworkLogViewColumns.js",
"front_end/network/NetworkFrameGrouper.js",
"front_end/network/networkManageCustomHeadersView.css",
"front_end/network/NetworkManageCustomHeadersView.js",
"front_end/network/NetworkOverview.js",
"front_end/network/networkPanel.css",
"front_end/network/NetworkPanel.js",
"front_end/network/NetworkSearchScope.js",
"front_end/network/NetworkTimeCalculator.js",
"front_end/network/networkTimingTable.css",
"front_end/network/networkWaterfallColumn.css",
"front_end/network/NetworkWaterfallColumn.js",
"front_end/network/requestCookiesView.css",
"front_end/network/RequestCookiesView.js",
"front_end/network/requestHeadersTree.css",
"front_end/network/requestHeadersView.css",
"front_end/network/RequestHeadersView.js",
"front_end/network/requestHTMLView.css",
"front_end/network/RequestHTMLView.js",
"front_end/network/RequestPreviewView.js",
"front_end/network/RequestResponseView.js",
"front_end/network/RequestTimingView.js",
"front_end/network/ResourceWebSocketFrameView.js",
"front_end/network/webSocketFrameView.css",
"front_end/network_test_runner/module.json",
"front_end/network_test_runner/NetworkTestRunner.js",
"front_end/network_test_runner/ProductRegistryTestRunner.js",
"front_end/node_debugger/module.json",
"front_end/node_main/NodeConnectionsPanel.js",
"front_end/node_main/nodeConnectionsPanel.css",
"front_end/node_main/NodeMain.js",
"front_end/node_main/module.json",
"front_end/object_ui/customPreviewComponent.css",
"front_end/object_ui/CustomPreviewComponent.js",
"front_end/object_ui/JavaScriptAutocomplete.js",
"front_end/object_ui/module.json",
"front_end/object_ui/objectPopover.css",
"front_end/object_ui/ObjectPopoverHelper.js",
"front_end/object_ui/objectPropertiesSection.css",
"front_end/object_ui/ObjectPropertiesSection.js",
"front_end/object_ui/objectValue.css",
"front_end/object_ui/RemoteObjectPreviewFormatter.js",
"front_end/perf_ui/ChartViewport.js",
"front_end/perf_ui/FilmStripView.js",
"front_end/perf_ui/FlameChart.js",
"front_end/perf_ui/GCActionDelegate.js",
"front_end/perf_ui/LineLevelProfile.js",
"front_end/perf_ui/NetworkPriorities.js",
"front_end/perf_ui/OverviewGrid.js",
"front_end/perf_ui/PieChart.js",
"front_end/perf_ui/TimelineGrid.js",
"front_end/perf_ui/TimelineOverviewPane.js",
"front_end/perf_ui/chartViewport.css",
"front_end/perf_ui/filmStripView.css",
"front_end/perf_ui/flameChart.css",
"front_end/perf_ui/module.json",
"front_end/perf_ui/overviewGrid.css",
"front_end/perf_ui/pieChart.css",
"front_end/perf_ui/timelineGrid.css",
"front_end/perf_ui/timelineOverviewInfo.css",
"front_end/performance_monitor/PerformanceMonitor.js",
"front_end/performance_monitor/performanceMonitor.css",
"front_end/performance_monitor/module.json",
"front_end/performance_test_runner/module.json",
"front_end/performance_test_runner/TimelineDataTestRunner.js",
"front_end/performance_test_runner/TimelineTestRunner.js",
"front_end/persistence/Automapping.js",
"front_end/persistence/editFileSystemView.css",
"front_end/persistence/EditFileSystemView.js",
"front_end/persistence/FileSystemWorkspaceBinding.js",
"front_end/persistence/IsolatedFileSystem.js",
"front_end/persistence/IsolatedFileSystemManager.js",
"front_end/persistence/NetworkPersistenceManager.js",
"front_end/persistence/Persistence.js",
"front_end/persistence/PersistenceActions.js",
"front_end/persistence/PersistenceUtils.js",
"front_end/persistence/workspaceSettingsTab.css",
"front_end/persistence/WorkspaceSettingsTab.js",
"front_end/platform/module.json",
"front_end/platform/utilities.js",
"front_end/product_registry/BadgePool.js",
"front_end/product_registry/ProductRegistry.js",
"front_end/product_registry/badge.css",
"front_end/product_registry/module.json",
"front_end/product_registry/popup.css",
"front_end/product_registry_impl/module.json",
"front_end/product_registry_impl/ProductRegistryImpl.js",
"front_end/product_registry_impl/ProductRegistryData.js",
"front_end/product_registry_impl/sha1/sha1.js",
"front_end/profiler/BottomUpProfileDataGrid.js",
"front_end/profiler/CPUProfileFlameChart.js",
"front_end/profiler/CPUProfileView.js",
"front_end/profiler/heapProfiler.css",
"front_end/profiler/HeapProfileView.js",
"front_end/profiler/HeapSnapshotDataGrids.js",
"front_end/profiler/HeapSnapshotGridNodes.js",
"front_end/profiler/HeapSnapshotProxy.js",
"front_end/profiler/HeapSnapshotView.js",
"front_end/profiler/HeapProfilerPanel.js",
"front_end/profiler/IsolateSelector.js",
"front_end/profiler/module.json",
"front_end/profiler/ProfileDataGrid.js",
"front_end/profiler/ProfileHeader.js",
"front_end/profiler/profileLauncherView.css",
"front_end/profiler/ProfileLauncherView.js",
"front_end/profiler/ProfileType.js",
"front_end/profiler/profilesPanel.css",
"front_end/profiler/ProfilesPanel.js",
"front_end/profiler/profilesSidebarTree.css",
"front_end/profiler/ProfileTypeRegistry.js",
"front_end/profiler/ProfileView.js",
"front_end/profiler/TopDownProfileDataGrid.js",
"front_end/protocol/InspectorBackend.js",
"front_end/protocol/module.json",
"front_end/quick_open/CommandMenu.js",
"front_end/quick_open/filteredListWidget.css",
"front_end/quick_open/FilteredListWidget.js",
"front_end/quick_open/HelpQuickOpen.js",
"front_end/quick_open/QuickOpen.js",
"front_end/quick_open/module.json",
"front_end/resources/ApplicationCacheModel.js",
"front_end/resources/ApplicationCacheItemsView.js",
"front_end/resources/ApplicationPanelSidebar.js",
"front_end/resources/appManifestView.css",
"front_end/resources/AppManifestView.js",
"front_end/resources/clearStorageView.css",
"front_end/resources/ClearStorageView.js",
"front_end/resources/CookieItemsView.js",
"front_end/resources/DatabaseModel.js",
"front_end/resources/DatabaseQueryView.js",
"front_end/resources/DatabaseTableView.js",
"front_end/resources/DOMStorageItemsView.js",
"front_end/resources/DOMStorageModel.js",
"front_end/resources/IndexedDBModel.js",
"front_end/resources/indexedDBViews.css",
"front_end/resources/IndexedDBViews.js",
"front_end/resources/module.json",
"front_end/resources/resourcesPanel.css",
"front_end/resources/ResourcesPanel.js",
"front_end/resources/ResourcesSection.js",
"front_end/resources/resourcesSidebar.css",
"front_end/resources/serviceWorkerCacheViews.css",
"front_end/resources/ServiceWorkerCacheViews.js",
"front_end/resources/serviceWorkersView.css",
"front_end/resources/ServiceWorkersView.js",
"front_end/resources/StorageItemsView.js",
"front_end/Runtime.js",
"front_end/shell.json",
"front_end/screencast/InputModel.js",
"front_end/screencast/module.json",
"front_end/screencast/ScreencastApp.js",
"front_end/screencast/screencastView.css",
"front_end/screencast/ScreencastView.js",
"front_end/sdk/ChildTargetManager.js",
"front_end/sdk/Connections.js",
"front_end/sdk/ConsoleModel.js",
"front_end/sdk/ContentProviders.js",
"front_end/sdk/CookieModel.js",
"front_end/sdk/CookieParser.js",
"front_end/sdk/CPUProfileDataModel.js",
"front_end/sdk/CPUProfilerModel.js",
"front_end/sdk/CSSMatchedStyles.js",
"front_end/sdk/CSSMedia.js",
"front_end/sdk/CSSMetadata.js",
"front_end/sdk/CSSModel.js",
"front_end/sdk/CSSProperty.js",
"front_end/sdk/CSSRule.js",
"front_end/sdk/CSSStyleDeclaration.js",
"front_end/sdk/CSSStyleSheetHeader.js",
"front_end/sdk/DOMDebuggerModel.js",
"front_end/sdk/DebuggerModel.js",
"front_end/sdk/DOMModel.js",
"front_end/sdk/EmulationModel.js",
"front_end/sdk/FilmStripModel.js",
"front_end/sdk/HeapProfilerModel.js",
"front_end/sdk/LayerTreeBase.js",
"front_end/sdk/LogModel.js",
"front_end/sdk/module.json",
"front_end/sdk/NetworkManager.js",
"front_end/sdk/NetworkRequest.js",
"front_end/sdk/OverlayModel.js",
"front_end/sdk/PaintProfiler.js",
"front_end/sdk/PerformanceMetricsModel.js",
"front_end/sdk/ProfileTreeModel.js",
"front_end/sdk/RemoteObject.js",
"front_end/sdk/Resource.js",
"front_end/sdk/ResourceTreeModel.js",
"front_end/sdk/RuntimeModel.js",
"front_end/sdk/ScreenCaptureModel.js",
"front_end/sdk/Script.js",
"front_end/sdk/SecurityOriginManager.js",
"front_end/sdk/ServerTiming.js",
"front_end/sdk/ServiceWorkerCacheModel.js",
"front_end/sdk/ServiceWorkerManager.js",
"front_end/sdk/SourceMap.js",
"front_end/sdk/SourceMapManager.js",
"front_end/sdk/Target.js",
"front_end/sdk/TargetManager.js",
"front_end/sdk/TracingManager.js",
"front_end/sdk/TracingModel.js",
"front_end/sdk_test_runner/module.json",
"front_end/sdk_test_runner/PageMockTestRunner.js",
"front_end/search/SearchConfig.js",
"front_end/search/searchResultsPane.css",
"front_end/search/SearchResultsPane.js",
"front_end/search/searchView.css",
"front_end/search/SearchView.js",
"front_end/security/lockIcon.css",
"front_end/security/mainView.css",
"front_end/security/module.json",
"front_end/security/originView.css",
"front_end/security/SecurityModel.js",
"front_end/security/SecurityPanel.js",
"front_end/security/sidebar.css",
"front_end/security_test_runner/module.json",
"front_end/security_test_runner/SecurityTestRunner.js",
"front_end/services/ServiceManager.js",
"front_end/settings/frameworkBlackboxSettingsTab.css",
"front_end/settings/FrameworkBlackboxSettingsTab.js",
"front_end/settings/module.json",
"front_end/settings/settingsScreen.css",
"front_end/settings/SettingsScreen.js",
"front_end/snippets/module.json",
"front_end/snippets/ScriptSnippetModel.js",
"front_end/snippets/SnippetsQuickOpen.js",
"front_end/snippets/SnippetStorage.js",
"front_end/source_frame/fontView.css",
"front_end/source_frame/FontView.js",
"front_end/source_frame/imageView.css",
"front_end/source_frame/jsonView.css",
"front_end/source_frame/JSONView.js",
"front_end/source_frame/ImageView.js",
"front_end/source_frame/messagesPopover.css",
"front_end/source_frame/module.json",
"front_end/source_frame/PreviewFactory.js",
"front_end/source_frame/resourceSourceFrame.css",
"front_end/source_frame/ResourceSourceFrame.js",
"front_end/source_frame/SourceCodeDiff.js",
"front_end/source_frame/SourceFrame.js",
"front_end/source_frame/SourcesTextEditor.js",
"front_end/source_frame/xmlTree.css",
"front_end/source_frame/xmlView.css",
"front_end/source_frame/XMLView.js",
"front_end/sources/AddSourceMapURLDialog.js",
"front_end/sources/callStackSidebarPane.css",
"front_end/sources/CallStackSidebarPane.js",
"front_end/sources/CSSPlugin.js",
"front_end/sources/dialog.css",
"front_end/sources/debuggerPausedMessage.css",
"front_end/sources/DebuggerPausedMessage.js",
"front_end/sources/EditingLocationHistoryManager.js",
"front_end/sources/FilePathScoreFunction.js",
"front_end/sources/FilteredUISourceCodeListProvider.js",
"front_end/sources/GoToLineQuickOpen.js",
"front_end/sources/InplaceFormatterEditorAction.js",
"front_end/sources/javaScriptBreakpointsSidebarPane.css",
"front_end/sources/JavaScriptBreakpointsSidebarPane.js",
"front_end/sources/JavaScriptCompilerPlugin.js",
"front_end/sources/JavaScriptSourceFrame.js",
"front_end/sources/module.json",
"front_end/sources/navigatorTree.css",
"front_end/sources/navigatorView.css",
"front_end/sources/NavigatorView.js",
"front_end/sources/OpenFileQuickOpen.js",
"front_end/sources/OutlineQuickOpen.js",
"front_end/sources/revisionHistory.css",
"front_end/sources/scopeChainSidebarPane.css",
"front_end/sources/ScopeChainSidebarPane.js",
"front_end/sources/ScriptFormatterEditorAction.js",
"front_end/sources/SearchSourcesView.js",
"front_end/sources/serviceWorkersSidebar.css",
"front_end/sources/SimpleHistoryManager.js",
"front_end/sources/SnippetsPlugin.js",
"front_end/sources/SourceFormatter.js",
"front_end/sources/SourceMapNamesResolver.js",
"front_end/sources/SourcesNavigator.js",
"front_end/sources/sourcesPanel.css",
"front_end/sources/SourcesPanel.js",
"front_end/sources/SourcesSearchScope.js",
"front_end/sources/sourcesView.css",
"front_end/sources/SourcesView.js",
"front_end/sources/UISourceCodeFrame.js",
"front_end/sources/TabbedEditorContainer.js",
"front_end/sources/threadsSidebarPane.css",
"front_end/sources/ThreadsSidebarPane.js",
"front_end/sources/watchExpressionsSidebarPane.css",
"front_end/sources/WatchExpressionsSidebarPane.js",
"front_end/sources_test_runner/AutocompleteTestRunner.js",
"front_end/sources_test_runner/DebuggerTestRunner.js",
"front_end/sources_test_runner/EditorTestRunner.js",
"front_end/sources_test_runner/LiveEditTestRunner.js",
"front_end/sources_test_runner/SearchTestRunner.js",
"front_end/sources_test_runner/SourcesTestRunner.js",
"front_end/sources_test_runner/module.json",
"front_end/terminal/terminal.css",
"front_end/terminal/TerminalWidget.js",
"front_end/terminal/xterm.js/addons/fit/fit.js",
"front_end/terminal/xterm.js/build/xterm.css",
"front_end/terminal/xterm.js/build/xterm.js",
"front_end/test_runner/module.json",
"front_end/test_runner/TestRunner.js",
"front_end/text_editor/cmdevtools.css",
"front_end/text_editor/CodeMirrorTextEditor.js",
"front_end/text_editor/CodeMirrorUtils.js",
"front_end/text_editor/module.json",
"front_end/text_editor/TextEditorAutocompleteController.js",
"front_end/text_utils/module.json",
"front_end/text_utils/Text.js",
"front_end/text_utils/TextRange.js",
"front_end/text_utils/TextUtils.js",
"front_end/timeline_model/module.json",
"front_end/timeline_model/TimelineFrameModel.js",
"front_end/timeline_model/TimelineIRModel.js",
"front_end/timeline_model/TimelineJSProfile.js",
"front_end/timeline_model/TimelineModel.js",
"front_end/timeline_model/TimelineModelFilter.js",
"front_end/timeline_model/TimelineProfileTree.js",
"front_end/timeline_model/TracingLayerTree.js",
"front_end/timeline/CountersGraph.js",
"front_end/timeline/EventsTimelineTreeView.js",
"front_end/timeline/ExtensionTracingSession.js",
"front_end/timeline/historyToolbarButton.css",
"front_end/timeline/invalidationsTree.css",
"front_end/timeline/module.json",
"front_end/timeline/PerformanceModel.js",
"front_end/timeline/TimelineController.js",
"front_end/timeline/TimelineDetailsView.js",
"front_end/timeline/TimelineEventOverview.js",
"front_end/timeline/TimelineFilters.js",
"front_end/timeline/TimelineFlameChartDataProvider.js",
"front_end/timeline/TimelineFlameChartNetworkDataProvider.js",
"front_end/timeline/timelineFlamechartPopover.css",
"front_end/timeline/TimelineFlameChartView.js",
"front_end/timeline/timelineHistoryManager.css",
"front_end/timeline/TimelineHistoryManager.js",
"front_end/timeline/TimelineLayersView.js",
"front_end/timeline/TimelineLoader.js",
"front_end/timeline/timelinePaintProfiler.css",
"front_end/timeline/TimelinePaintProfilerView.js",
"front_end/timeline/timelinePanel.css",
"front_end/timeline/TimelinePanel.js",
"front_end/timeline/timelineStatusDialog.css",
"front_end/timeline/TimelineTreeView.js",
"front_end/timeline/TimelineUIUtils.js",
"front_end/toolbox_bootstrap/module.json",
"front_end/toolbox_bootstrap/Toolbox.js",
"front_end/toolbox.js",
"front_end/toolbox.json",
"front_end/ui/ActionRegistry.js",
"front_end/ui/ARIAUtils.js",
"front_end/ui/checkboxTextLabel.css",
"front_end/ui/closeButton.css",
"front_end/ui/confirmDialog.css",
"front_end/ui/Context.js",
"front_end/ui/ContextMenu.js",
"front_end/ui/dialog.css",
"front_end/ui/Dialog.js",
"front_end/ui/SyntaxHighlighter.js",
"front_end/ui/dropTarget.css",
"front_end/ui/DropTarget.js",
"front_end/ui/emptyWidget.css",
"front_end/ui/EmptyWidget.js",
"front_end/ui/filter.css",
"front_end/ui/FilterBar.js",
"front_end/ui/FilterSuggestionBuilder.js",
"front_end/ui/ForwardedInputEventHandler.js",
"front_end/ui/Fragment.js",
"front_end/ui/Geometry.js",
"front_end/ui/glassPane.css",
"front_end/ui/GlassPane.js",
"front_end/ui/HistoryInput.js",
"front_end/ui/Icon.js",
"front_end/ui/infobar.css",
"front_end/ui/Infobar.js",
"front_end/ui/inlineButton.css",
"front_end/ui/InplaceEditor.js",
"front_end/ui/inspectorCommon.css",
"front_end/ui/inspectorStyle.css",
"front_end/ui/inspectorSyntaxHighlight.css",
"front_end/ui/inspectorSyntaxHighlightDark.css",
"front_end/ui/InspectorView.js",
"front_end/ui/inspectorViewTabbedPane.css",
"front_end/ui/KeyboardShortcut.js",
"front_end/ui/ListControl.js",
"front_end/ui/ListModel.js",
"front_end/ui/listWidget.css",
"front_end/ui/ListWidget.js",
"front_end/ui/module.json",
"front_end/ui/Panel.js",
"front_end/ui/popover.css",
"front_end/ui/Popover.js",
"front_end/ui/progressIndicator.css",
"front_end/ui/ProgressIndicator.js",
"front_end/ui/radioButton.css",
"front_end/ui/reportView.css",
"front_end/ui/ReportView.js",
"front_end/ui/ResizerWidget.js",
"front_end/ui/RemoteDebuggingTerminatedScreen.js",
"front_end/ui/remoteDebuggingTerminatedScreen.css",
"front_end/ui/rootView.css",
"front_end/ui/RootView.js",
"front_end/ui/searchableView.css",
"front_end/ui/SearchableView.js",
"front_end/ui/segmentedButton.css",
"front_end/ui/SegmentedButton.js",
"front_end/ui/SettingsUI.js",
"front_end/ui/ShortcutRegistry.js",
"front_end/ui/ShortcutsScreen.js",
"front_end/ui/slider.css",
"front_end/ui/smallBubble.css",
"front_end/ui/softContextMenu.css",
"front_end/ui/SoftContextMenu.js",
"front_end/ui/SoftDropDown.js",
"front_end/ui/softDropDown.css",
"front_end/ui/softDropDownButton.css",
"front_end/ui/splitWidget.css",
"front_end/ui/SplitWidget.js",
"front_end/ui/suggestBox.css",
"front_end/ui/SuggestBox.js",
"front_end/ui/tabbedPane.css",
"front_end/ui/TabbedPane.js",
"front_end/ui/TargetCrashedScreen.js",
"front_end/ui/targetCrashedScreen.css",
"front_end/ui/textButton.css",
"front_end/ui/TextEditor.js",
"front_end/ui/textPrompt.css",
"front_end/ui/TextPrompt.js",
"front_end/ui/ThrottledWidget.js",
"front_end/ui/toolbar.css",
"front_end/ui/Toolbar.js",
"front_end/ui/tooltip.css",
"front_end/ui/Tooltip.js",
"front_end/ui/treeoutline.css",
"front_end/ui/treeoutline.js",
"front_end/ui/UIUtils.js",
"front_end/ui/View.js",
"front_end/ui/viewContainers.css",
"front_end/ui/Widget.js",
"front_end/ui/XElement.js",
"front_end/ui/XLink.js",
"front_end/ui/XWidget.js",
"front_end/ui/ZoomManager.js",
"front_end/worker_main/WorkerMain.js",
"front_end/worker_main/module.json",
"front_end/worker_service/ServiceDispatcher.js",
"front_end/workspace/FileManager.js",
"front_end/workspace/module.json",
"front_end/workspace/UISourceCode.js",
"front_end/workspace/Workspace.js",
"front_end/workspace_diff/WorkspaceDiff.js",
"front_end/workspace_diff/module.json",
]
devtools_embedder_scripts = [
"front_end/devtools_compatibility.js",
"front_end/Tests.js",
]
devtools_emulated_devices_images = [
"front_end/emulated_devices/google-nexus-5-horizontal-default-1x.png",
"front_end/emulated_devices/google-nexus-5-horizontal-default-2x.png",
"front_end/emulated_devices/google-nexus-5-horizontal-keyboard-1x.png",
"front_end/emulated_devices/google-nexus-5-horizontal-keyboard-2x.png",
"front_end/emulated_devices/google-nexus-5-horizontal-navigation-1x.png",
"front_end/emulated_devices/google-nexus-5-horizontal-navigation-2x.png",
"front_end/emulated_devices/google-nexus-5-vertical-default-1x.png",
"front_end/emulated_devices/google-nexus-5-vertical-default-2x.png",
"front_end/emulated_devices/google-nexus-5-vertical-keyboard-1x.png",
"front_end/emulated_devices/google-nexus-5-vertical-keyboard-2x.png",
"front_end/emulated_devices/google-nexus-5-vertical-navigation-1x.png",
"front_end/emulated_devices/google-nexus-5-vertical-navigation-2x.png",
"front_end/emulated_devices/google-nexus-5x-horizontal-default-1x.png",
"front_end/emulated_devices/google-nexus-5x-horizontal-default-2x.png",
"front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-1x.png",
"front_end/emulated_devices/google-nexus-5x-horizontal-keyboard-2x.png",
"front_end/emulated_devices/google-nexus-5x-horizontal-navigation-1x.png",
"front_end/emulated_devices/google-nexus-5x-horizontal-navigation-2x.png",
"front_end/emulated_devices/google-nexus-5x-vertical-default-1x.png",
"front_end/emulated_devices/google-nexus-5x-vertical-default-2x.png",
"front_end/emulated_devices/google-nexus-5x-vertical-keyboard-1x.png",
"front_end/emulated_devices/google-nexus-5x-vertical-keyboard-2x.png",
"front_end/emulated_devices/google-nexus-5x-vertical-navigation-1x.png",
"front_end/emulated_devices/google-nexus-5x-vertical-navigation-2x.png",
"front_end/emulated_devices/iPad-landscape.svg",
"front_end/emulated_devices/iPad-portrait.svg",
"front_end/emulated_devices/iPhone5-landscape.svg",
"front_end/emulated_devices/iPhone5-portrait.svg",
"front_end/emulated_devices/iPhone6-landscape.svg",
"front_end/emulated_devices/iPhone6-portrait.svg",
"front_end/emulated_devices/iPhone6Plus-landscape.svg",
"front_end/emulated_devices/iPhone6Plus-portrait.svg",
"front_end/emulated_devices/Nexus5X-landscape.svg",
"front_end/emulated_devices/Nexus5X-portrait.svg",
"front_end/emulated_devices/Nexus6P-landscape.svg",
"front_end/emulated_devices/Nexus6P-portrait.svg",
]
devtools_image_files = [
"front_end/Images/accelerometer-back.png",
"front_end/Images/accelerometer-bottom.png",
"front_end/Images/accelerometer-front.png",
"front_end/Images/accelerometer-left.png",
"front_end/Images/accelerometer-right.png",
"front_end/Images/accelerometer-top.png",
"front_end/Images/audits_logo.svg",
"front_end/Images/breakpoint.png",
"front_end/Images/breakpoint_2x.png",
"front_end/Images/breakpointConditional.png",
"front_end/Images/breakpointConditional_2x.png",
"front_end/Images/checker.png",
"front_end/Images/chromeDisabledSelect.png",
"front_end/Images/chromeDisabledSelect_2x.png",
"front_end/Images/chromeLeft.png",
"front_end/Images/chromeMiddle.png",
"front_end/Images/chromeRight.png",
"front_end/Images/chromeSelect.png",
"front_end/Images/chromeSelect_2x.png",
"front_end/Images/deleteIcon.png",
"front_end/Images/errorWave.png",
"front_end/Images/errorWave_2x.png",
"front_end/Images/ic_info_black_18dp.svg",
"front_end/Images/ic_warning_black_18dp.svg",
"front_end/Images/navigationControls.png",
"front_end/Images/navigationControls_2x.png",
"front_end/Images/nodeIcon.png",
"front_end/Images/popoverArrows.png",
"front_end/Images/profileGroupIcon.png",
"front_end/Images/profileIcon.png",
"front_end/Images/profileSmallIcon.png",
"front_end/Images/radioDot.png",
"front_end/Images/resizeDiagonal.png",
"front_end/Images/resizeDiagonal_2x.png",
"front_end/Images/resizeHorizontal.png",
"front_end/Images/resizeHorizontal_2x.png",
"front_end/Images/resizeVertical.png",
"front_end/Images/resizeVertical_2x.png",
"front_end/Images/resourceCSSIcon.png",
"front_end/Images/resourceDocumentIcon.png",
"front_end/Images/resourceDocumentIconSmall.png",
"front_end/Images/mediumIcons.png",
"front_end/Images/mediumIcons_2x.png",
"front_end/Images/resourceJSIcon.png",
"front_end/Images/resourcePlainIcon.png",
"front_end/Images/resourcePlainIconSmall.png",
"front_end/Images/resourcesTimeGraphIcon.png",
"front_end/Images/searchNext.png",
"front_end/Images/searchPrev.png",
"front_end/Images/securityIcons_2x.png",
"front_end/Images/securityIcons.png",
"front_end/Images/smallIcons.png",
"front_end/Images/smallIcons_2x.png",
"front_end/Images/speech.png",
"front_end/Images/treeoutlineTriangles.png",
"front_end/Images/treeoutlineTriangles_2x.png",
"front_end/Images/largeIcons.png",
"front_end/Images/largeIcons_2x.png",
"front_end/Images/toolbarResizerVertical.png",
"front_end/Images/touchCursor.png",
"front_end/Images/touchCursor_2x.png",
"front_end/Images/whatsnew.png",
]
resources_out_dir = "$root_out_dir/resources/inspector"
generated_scripts = [
"$resources_out_dir/InspectorBackendCommands.js",
"$resources_out_dir/SupportedCSSProperties.js",
]
application_templates = [
"front_end/devtools_app.html",
"front_end/inspector.html",
"front_end/integration_test_runner.html",
"front_end/js_app.html",
"front_end/ndb_app.html",
"front_end/node_app.html",
"front_end/toolbox.html",
"front_end/worker_app.html",
]
generated_applications = [
"$resources_out_dir/audits2_worker.js",
"$resources_out_dir/devtools_app.html",
"$resources_out_dir/devtools_app.js",
"$resources_out_dir/formatter_worker.js",
"$resources_out_dir/heap_snapshot_worker.js",
"$resources_out_dir/inspector.html",
"$resources_out_dir/inspector.js",
"$resources_out_dir/js_app.html",
"$resources_out_dir/js_app.js",
"$resources_out_dir/node_app.html",
"$resources_out_dir/node_app.js",
"$resources_out_dir/shell.js",
"$resources_out_dir/toolbox.html",
"$resources_out_dir/toolbox.js",
"$resources_out_dir/worker_app.html",
"$resources_out_dir/worker_app.js",