Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(157)

Side by Side Diff: third_party/WebKit/Source/devtools/BUILD.gn

Issue 2626173002: DevTools: Extract HeapSnapshotCommon.js into HeapSnapshotModel module (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 "front_end/formatter_worker/FormatterWorker.js", 228 "front_end/formatter_worker/FormatterWorker.js",
229 "front_end/formatter_worker/HTMLFormatter.js", 229 "front_end/formatter_worker/HTMLFormatter.js",
230 "front_end/formatter_worker/IdentityFormatter.js", 230 "front_end/formatter_worker/IdentityFormatter.js",
231 "front_end/formatter_worker/JavaScriptFormatter.js", 231 "front_end/formatter_worker/JavaScriptFormatter.js",
232 "front_end/formatter_worker/JavaScriptOutline.js", 232 "front_end/formatter_worker/JavaScriptOutline.js",
233 "front_end/formatter_worker/module.json", 233 "front_end/formatter_worker/module.json",
234 "front_end/formatter_worker/RelaxedJSONParser.js", 234 "front_end/formatter_worker/RelaxedJSONParser.js",
235 "front_end/gonzales/gonzales-scss.js", 235 "front_end/gonzales/gonzales-scss.js",
236 "front_end/gonzales/module.json", 236 "front_end/gonzales/module.json",
237 "front_end/gonzales/SCSSParser.js", 237 "front_end/gonzales/SCSSParser.js",
238 "front_end/heap_snapshot_model/HeapSnapshotModel.js",
pfeldman 2017/01/11 23:01:42 it needs to have a module.json
chenwilliam 2017/01/11 23:41:59 done. I added it for all the new modules I made re
238 "front_end/heap_snapshot_worker.js", 239 "front_end/heap_snapshot_worker.js",
239 "front_end/heap_snapshot_worker.json", 240 "front_end/heap_snapshot_worker.json",
240 "front_end/heap_snapshot_worker/AllocationProfile.js", 241 "front_end/heap_snapshot_worker/AllocationProfile.js",
241 "front_end/heap_snapshot_worker/HeapSnapshot.js", 242 "front_end/heap_snapshot_worker/HeapSnapshot.js",
242 "front_end/heap_snapshot_worker/HeapSnapshotLoader.js", 243 "front_end/heap_snapshot_worker/HeapSnapshotLoader.js",
243 "front_end/heap_snapshot_worker/HeapSnapshotWorker.js", 244 "front_end/heap_snapshot_worker/HeapSnapshotWorker.js",
244 "front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js", 245 "front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js",
245 "front_end/heap_snapshot_worker/module.json", 246 "front_end/heap_snapshot_worker/module.json",
246 "front_end/host/InspectorFrontendHost.js", 247 "front_end/host/InspectorFrontendHost.js",
247 "front_end/host/InspectorFrontendHostAPI.js", 248 "front_end/host/InspectorFrontendHostAPI.js",
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 "front_end/persistence/FileSystemWorkspaceBinding.js", 344 "front_end/persistence/FileSystemWorkspaceBinding.js",
344 "front_end/persistence/Persistence.js", 345 "front_end/persistence/Persistence.js",
345 "front_end/persistence/PersistenceUtils.js", 346 "front_end/persistence/PersistenceUtils.js",
346 "front_end/platform/module.json", 347 "front_end/platform/module.json",
347 "front_end/platform/utilities.js", 348 "front_end/platform/utilities.js",
348 "front_end/profiler/BottomUpProfileDataGrid.js", 349 "front_end/profiler/BottomUpProfileDataGrid.js",
349 "front_end/profiler/CPUProfileFlameChart.js", 350 "front_end/profiler/CPUProfileFlameChart.js",
350 "front_end/profiler/CPUProfileView.js", 351 "front_end/profiler/CPUProfileView.js",
351 "front_end/profiler/heapProfiler.css", 352 "front_end/profiler/heapProfiler.css",
352 "front_end/profiler/HeapProfileView.js", 353 "front_end/profiler/HeapProfileView.js",
353 "front_end/profiler/HeapSnapshotCommon.js",
354 "front_end/profiler/HeapSnapshotDataGrids.js", 354 "front_end/profiler/HeapSnapshotDataGrids.js",
355 "front_end/profiler/HeapSnapshotGridNodes.js", 355 "front_end/profiler/HeapSnapshotGridNodes.js",
356 "front_end/profiler/HeapSnapshotProxy.js", 356 "front_end/profiler/HeapSnapshotProxy.js",
357 "front_end/profiler/HeapSnapshotView.js", 357 "front_end/profiler/HeapSnapshotView.js",
358 "front_end/profiler/module.json", 358 "front_end/profiler/module.json",
359 "front_end/profiler/ProfileDataGrid.js", 359 "front_end/profiler/ProfileDataGrid.js",
360 "front_end/profiler/ProfileLauncherView.js", 360 "front_end/profiler/ProfileLauncherView.js",
361 "front_end/profiler/profilesPanel.css", 361 "front_end/profiler/profilesPanel.css",
362 "front_end/profiler/ProfilesPanel.js", 362 "front_end/profiler/ProfilesPanel.js",
363 "front_end/profiler/profilesSidebarTree.css", 363 "front_end/profiler/profilesSidebarTree.css",
(...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 "$resources_out_dir/audits2/audits2_module.js", 794 "$resources_out_dir/audits2/audits2_module.js",
795 "$resources_out_dir/cm/cm_module.js", 795 "$resources_out_dir/cm/cm_module.js",
796 "$resources_out_dir/color_picker/color_picker_module.js", 796 "$resources_out_dir/color_picker/color_picker_module.js",
797 "$resources_out_dir/console/console_module.js", 797 "$resources_out_dir/console/console_module.js",
798 "$resources_out_dir/cookie_table/cookie_table_module.js", 798 "$resources_out_dir/cookie_table/cookie_table_module.js",
799 "$resources_out_dir/css_tracker/css_tracker_module.js", 799 "$resources_out_dir/css_tracker/css_tracker_module.js",
800 "$resources_out_dir/data_grid/data_grid_module.js", 800 "$resources_out_dir/data_grid/data_grid_module.js",
801 "$resources_out_dir/devices/devices_module.js", 801 "$resources_out_dir/devices/devices_module.js",
802 "$resources_out_dir/diff/diff_module.js", 802 "$resources_out_dir/diff/diff_module.js",
803 "$resources_out_dir/elements/elements_module.js", 803 "$resources_out_dir/elements/elements_module.js",
804 "$resources_out_dir/heap_snapshot_model/heap_snapshot_model_module.js",
804 "$resources_out_dir/inline_editor/inline_editor_module.js", 805 "$resources_out_dir/inline_editor/inline_editor_module.js",
805 "$resources_out_dir/layer_viewer/layer_viewer_module.js", 806 "$resources_out_dir/layer_viewer/layer_viewer_module.js",
806 "$resources_out_dir/layers/layers_module.js", 807 "$resources_out_dir/layers/layers_module.js",
807 "$resources_out_dir/network/network_module.js", 808 "$resources_out_dir/network/network_module.js",
808 "$resources_out_dir/perf_ui/perf_ui_module.js", 809 "$resources_out_dir/perf_ui/perf_ui_module.js",
809 "$resources_out_dir/profiler/profiler_module.js", 810 "$resources_out_dir/profiler/profiler_module.js",
810 "$resources_out_dir/quick_open/quick_open_module.js", 811 "$resources_out_dir/quick_open/quick_open_module.js",
811 "$resources_out_dir/resources/resources_module.js", 812 "$resources_out_dir/resources/resources_module.js",
812 "$resources_out_dir/sass/sass_module.js", 813 "$resources_out_dir/sass/sass_module.js",
813 "$resources_out_dir/security/security_module.js", 814 "$resources_out_dir/security/security_module.js",
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1060 ".eslintrc.js", 1061 ".eslintrc.js",
1061 "devtools-node-modules/", 1062 "devtools-node-modules/",
1062 "front_end/", 1063 "front_end/",
1063 "scripts/buildbot/run_eslint.py", 1064 "scripts/buildbot/run_eslint.py",
1064 "scripts/local_node/", 1065 "scripts/local_node/",
1065 "//testing/scripts/common.py", 1066 "//testing/scripts/common.py",
1066 "//testing/scripts/run_devtools_check.py", 1067 "//testing/scripts/run_devtools_check.py",
1067 "//testing/xvfb.py", 1068 "//testing/xvfb.py",
1068 ] 1069 ]
1069 } 1070 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698