| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//third_party/WebKit/public/public_features.gni") | 6 import("//third_party/WebKit/public/public_features.gni") |
| 7 import("//third_party/WebKit/Source/core/core.gni") | 7 import("//third_party/WebKit/Source/core/core.gni") |
| 8 | 8 |
| 9 devtools_embedder_scripts = [ | 9 devtools_embedder_scripts = [ |
| 10 "front_end/devtools_compatibility.js", | 10 "front_end/devtools_compatibility.js", |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 731 "front_end/layer_viewer/Layers3DView.js", | 731 "front_end/layer_viewer/Layers3DView.js", |
| 732 "front_end/layer_viewer/PaintProfilerView.js", | 732 "front_end/layer_viewer/PaintProfilerView.js", |
| 733 "front_end/layer_viewer/TransformController.js", | 733 "front_end/layer_viewer/TransformController.js", |
| 734 "front_end/layer_viewer/layerDetailsView.css", | 734 "front_end/layer_viewer/layerDetailsView.css", |
| 735 "front_end/layer_viewer/layers3DView.css", | 735 "front_end/layer_viewer/layers3DView.css", |
| 736 "front_end/layer_viewer/paintProfiler.css", | 736 "front_end/layer_viewer/paintProfiler.css", |
| 737 ] | 737 ] |
| 738 devtools_timeline_js_files = [ | 738 devtools_timeline_js_files = [ |
| 739 "front_end/timeline/invalidationsTree.css", | 739 "front_end/timeline/invalidationsTree.css", |
| 740 "front_end/timeline/timelineFlamechartPopover.css", | 740 "front_end/timeline/timelineFlamechartPopover.css", |
| 741 "front_end/timeline/timelineLandingPage.css", |
| 741 "front_end/timeline/timelinePaintProfiler.css", | 742 "front_end/timeline/timelinePaintProfiler.css", |
| 742 "front_end/timeline/timelinePanel.css", | 743 "front_end/timeline/timelinePanel.css", |
| 743 "front_end/timeline/timelineStatusDialog.css", | 744 "front_end/timeline/timelineStatusDialog.css", |
| 744 "front_end/timeline/CountersGraph.js", | 745 "front_end/timeline/CountersGraph.js", |
| 745 "front_end/timeline/MemoryCountersGraph.js", | 746 "front_end/timeline/MemoryCountersGraph.js", |
| 746 "front_end/timeline/TimelineController.js", | 747 "front_end/timeline/TimelineController.js", |
| 747 "front_end/timeline/TimelineEventOverview.js", | 748 "front_end/timeline/TimelineEventOverview.js", |
| 748 "front_end/timeline/TimelineFlameChart.js", | 749 "front_end/timeline/TimelineFlameChart.js", |
| 749 "front_end/timeline/TimelineFlameChartView.js", | 750 "front_end/timeline/TimelineFlameChartView.js", |
| 750 "front_end/timeline/TimelineNetworkFlameChart.js", | 751 "front_end/timeline/TimelineNetworkFlameChart.js", |
| 752 "front_end/timeline/TimelineLandingPage.js", |
| 751 "front_end/timeline/TimelineLayersView.js", | 753 "front_end/timeline/TimelineLayersView.js", |
| 752 "front_end/timeline/TimelineLoader.js", | 754 "front_end/timeline/TimelineLoader.js", |
| 753 "front_end/timeline/TimelinePaintProfilerView.js", | 755 "front_end/timeline/TimelinePaintProfilerView.js", |
| 754 "front_end/timeline/TimelinePanel.js", | 756 "front_end/timeline/TimelinePanel.js", |
| 755 "front_end/timeline/TimelineTreeView.js", | 757 "front_end/timeline/TimelineTreeView.js", |
| 756 "front_end/timeline/TimelineUIUtils.js", | 758 "front_end/timeline/TimelineUIUtils.js", |
| 757 ] | 759 ] |
| 758 devtools_ui_lazy_js_files = [ | 760 devtools_ui_lazy_js_files = [ |
| 759 "front_end/ui_lazy/dataGrid.css", | 761 "front_end/ui_lazy/dataGrid.css", |
| 760 "front_end/ui_lazy/dialog.css", | 762 "front_end/ui_lazy/dialog.css", |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1191 ".eslintrc.js", | 1193 ".eslintrc.js", |
| 1192 "devtools-node-modules/", | 1194 "devtools-node-modules/", |
| 1193 "front_end/", | 1195 "front_end/", |
| 1194 "scripts/buildbot/run_eslint.py", | 1196 "scripts/buildbot/run_eslint.py", |
| 1195 "scripts/local_node/", | 1197 "scripts/local_node/", |
| 1196 "//testing/scripts/common.py", | 1198 "//testing/scripts/common.py", |
| 1197 "//testing/scripts/run_devtools_check.py", | 1199 "//testing/scripts/run_devtools_check.py", |
| 1198 "//testing/xvfb.py", | 1200 "//testing/xvfb.py", |
| 1199 ] | 1201 ] |
| 1200 } | 1202 } |
| OLD | NEW |