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

Side by Side Diff: Source/devtools/devtools.gypi

Issue 1178563002: DevTools: Refactor network panel overview (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: update test. Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
1 # 1 #
2 # Copyright (C) 2013 Google Inc. All rights reserved. 2 # Copyright (C) 2013 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 595 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 'front_end/timeline/MemoryCountersGraph.js', 606 'front_end/timeline/MemoryCountersGraph.js',
607 'front_end/timeline/PaintProfilerView.js', 607 'front_end/timeline/PaintProfilerView.js',
608 'front_end/timeline/TimelineEventOverview.js', 608 'front_end/timeline/TimelineEventOverview.js',
609 'front_end/timeline/TimelineFlameChart.js', 609 'front_end/timeline/TimelineFlameChart.js',
610 'front_end/timeline/TimelineFrameModel.js', 610 'front_end/timeline/TimelineFrameModel.js',
611 'front_end/timeline/TimelineFrameOverview.js', 611 'front_end/timeline/TimelineFrameOverview.js',
612 'front_end/timeline/TimelineJSProfile.js', 612 'front_end/timeline/TimelineJSProfile.js',
613 'front_end/timeline/TimelineLayersView.js', 613 'front_end/timeline/TimelineLayersView.js',
614 'front_end/timeline/TimelineMemoryOverview.js', 614 'front_end/timeline/TimelineMemoryOverview.js',
615 'front_end/timeline/TimelineModel.js', 615 'front_end/timeline/TimelineModel.js',
616 'front_end/timeline/TimelineOverviewPane.js',
617 'front_end/timeline/TimelinePaintProfilerView.js', 616 'front_end/timeline/TimelinePaintProfilerView.js',
618 'front_end/timeline/TimelinePanel.js', 617 'front_end/timeline/TimelinePanel.js',
619 'front_end/timeline/TimelinePresentationModel.js', 618 'front_end/timeline/TimelinePresentationModel.js',
620 'front_end/timeline/TimelineUIUtils.js', 619 'front_end/timeline/TimelineUIUtils.js',
621 'front_end/timeline/TimelineView.js', 620 'front_end/timeline/TimelineView.js',
622 'front_end/timeline/TransformController.js', 621 'front_end/timeline/TransformController.js',
623 ], 622 ],
624 'devtools_ui_lazy_js_files': [ 623 'devtools_ui_lazy_js_files': [
625 'front_end/ui_lazy/dataGrid.css', 624 'front_end/ui_lazy/dataGrid.css',
626 'front_end/ui_lazy/flameChart.css', 625 'front_end/ui_lazy/flameChart.css',
627 'front_end/ui_lazy/overviewGrid.css', 626 'front_end/ui_lazy/overviewGrid.css',
628 'front_end/ui_lazy/pieChart.css', 627 'front_end/ui_lazy/pieChart.css',
629 'front_end/ui_lazy/timelineGrid.css', 628 'front_end/ui_lazy/timelineGrid.css',
630 'front_end/ui_lazy/DataGrid.js', 629 'front_end/ui_lazy/DataGrid.js',
631 'front_end/ui_lazy/FlameChart.js', 630 'front_end/ui_lazy/FlameChart.js',
632 'front_end/ui_lazy/OverviewGrid.js', 631 'front_end/ui_lazy/OverviewGrid.js',
633 'front_end/ui_lazy/PieChart.js', 632 'front_end/ui_lazy/PieChart.js',
634 'front_end/ui_lazy/ShowMoreDataGridNode.js', 633 'front_end/ui_lazy/ShowMoreDataGridNode.js',
635 'front_end/ui_lazy/SortableDataGrid.js', 634 'front_end/ui_lazy/SortableDataGrid.js',
636 'front_end/ui_lazy/TimelineGrid.js', 635 'front_end/ui_lazy/TimelineGrid.js',
636 'front_end/ui_lazy/TimelineOverviewPane.js',
637 'front_end/ui_lazy/ViewportDataGrid.js', 637 'front_end/ui_lazy/ViewportDataGrid.js',
638 ], 638 ],
639 639
640 # Third-party code. 640 # Third-party code.
641 'devtools_cm_css_files': [ 641 'devtools_cm_css_files': [
642 'front_end/cm/codemirror.css', 642 'front_end/cm/codemirror.css',
643 ], 643 ],
644 'devtools_cm_js_files': [ 644 'devtools_cm_js_files': [
645 'front_end/cm/activeline.js', 645 'front_end/cm/activeline.js',
646 'front_end/cm/closebrackets.js', 646 'front_end/cm/closebrackets.js',
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 'front_end/Images/thumbVert.png', 756 'front_end/Images/thumbVert.png',
757 'front_end/Images/touchCursor.png', 757 'front_end/Images/touchCursor.png',
758 'front_end/Images/touchCursor_2x.png', 758 'front_end/Images/touchCursor_2x.png',
759 'front_end/Images/updateServiceWorker.svg', 759 'front_end/Images/updateServiceWorker.svg',
760 ], 760 ],
761 'devtools_extension_api_files': [ 761 'devtools_extension_api_files': [
762 'front_end/extensions/ExtensionAPI.js', 762 'front_end/extensions/ExtensionAPI.js',
763 ], 763 ],
764 }, 764 },
765 } 765 }
OLDNEW
« no previous file with comments | « LayoutTests/inspector/tracing/timeline-window-filter.html ('k') | Source/devtools/front_end/network/NetworkLogView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698