| 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 all_devtools_files = [ | 9 all_devtools_files = [ |
| 10 "front_end/accessibility/AccessibilityModel.js", | 10 "front_end/accessibility/AccessibilityModel.js", |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 355 "front_end/platform/utilities.js", | 355 "front_end/platform/utilities.js", |
| 356 "front_end/profiler/BottomUpProfileDataGrid.js", | 356 "front_end/profiler/BottomUpProfileDataGrid.js", |
| 357 "front_end/profiler/CPUProfileFlameChart.js", | 357 "front_end/profiler/CPUProfileFlameChart.js", |
| 358 "front_end/profiler/CPUProfileView.js", | 358 "front_end/profiler/CPUProfileView.js", |
| 359 "front_end/profiler/heapProfiler.css", | 359 "front_end/profiler/heapProfiler.css", |
| 360 "front_end/profiler/HeapProfileView.js", | 360 "front_end/profiler/HeapProfileView.js", |
| 361 "front_end/profiler/HeapSnapshotDataGrids.js", | 361 "front_end/profiler/HeapSnapshotDataGrids.js", |
| 362 "front_end/profiler/HeapSnapshotGridNodes.js", | 362 "front_end/profiler/HeapSnapshotGridNodes.js", |
| 363 "front_end/profiler/HeapSnapshotProxy.js", | 363 "front_end/profiler/HeapSnapshotProxy.js", |
| 364 "front_end/profiler/HeapSnapshotView.js", | 364 "front_end/profiler/HeapSnapshotView.js", |
| 365 "front_end/profiler/MemoryProfilerPanel.js", |
| 365 "front_end/profiler/module.json", | 366 "front_end/profiler/module.json", |
| 366 "front_end/profiler/ProfileDataGrid.js", | 367 "front_end/profiler/ProfileDataGrid.js", |
| 368 "front_end/profiler/ProfileHeader.js", |
| 367 "front_end/profiler/ProfileLauncherView.js", | 369 "front_end/profiler/ProfileLauncherView.js", |
| 370 "front_end/profiler/ProfileType.js", |
| 368 "front_end/profiler/profilesPanel.css", | 371 "front_end/profiler/profilesPanel.css", |
| 369 "front_end/profiler/ProfilesPanel.js", | 372 "front_end/profiler/ProfilesPanel.js", |
| 370 "front_end/profiler/profilesSidebarTree.css", | 373 "front_end/profiler/profilesSidebarTree.css", |
| 371 "front_end/profiler/ProfileTypeRegistry.js", | 374 "front_end/profiler/ProfileTypeRegistry.js", |
| 372 "front_end/profiler/ProfileView.js", | 375 "front_end/profiler/ProfileView.js", |
| 373 "front_end/profiler/TargetsComboBoxController.js", | 376 "front_end/profiler/TargetsComboBoxController.js", |
| 374 "front_end/profiler/TopDownProfileDataGrid.js", | 377 "front_end/profiler/TopDownProfileDataGrid.js", |
| 375 "front_end/protocol/InspectorBackend.js", | 378 "front_end/protocol/InspectorBackend.js", |
| 376 "front_end/protocol/module.json", | 379 "front_end/protocol/module.json", |
| 377 "front_end/quick_open/CommandMenu.js", | 380 "front_end/quick_open/CommandMenu.js", |
| (...skipping 692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1070 ".eslintrc.js", | 1073 ".eslintrc.js", |
| 1071 "devtools-node-modules/", | 1074 "devtools-node-modules/", |
| 1072 "front_end/", | 1075 "front_end/", |
| 1073 "scripts/buildbot/run_eslint.py", | 1076 "scripts/buildbot/run_eslint.py", |
| 1074 "scripts/local_node/", | 1077 "scripts/local_node/", |
| 1075 "//testing/scripts/common.py", | 1078 "//testing/scripts/common.py", |
| 1076 "//testing/scripts/run_devtools_check.py", | 1079 "//testing/scripts/run_devtools_check.py", |
| 1077 "//testing/xvfb.py", | 1080 "//testing/xvfb.py", |
| 1078 ] | 1081 ] |
| 1079 } | 1082 } |
| OLD | NEW |