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

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

Issue 2694923002: DevTools: Changes Drawer (Closed)
Patch Set: Remove event listener on willHide Created 3 years, 9 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/Images/smallIcons.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 "front_end/bindings/FileUtils.js", 55 "front_end/bindings/FileUtils.js",
56 "front_end/bindings/LiveLocation.js", 56 "front_end/bindings/LiveLocation.js",
57 "front_end/bindings/module.json", 57 "front_end/bindings/module.json",
58 "front_end/bindings/NetworkProject.js", 58 "front_end/bindings/NetworkProject.js",
59 "front_end/bindings/PresentationConsoleMessageHelper.js", 59 "front_end/bindings/PresentationConsoleMessageHelper.js",
60 "front_end/bindings/ResourceScriptMapping.js", 60 "front_end/bindings/ResourceScriptMapping.js",
61 "front_end/bindings/ResourceUtils.js", 61 "front_end/bindings/ResourceUtils.js",
62 "front_end/bindings/SASSSourceMapping.js", 62 "front_end/bindings/SASSSourceMapping.js",
63 "front_end/bindings/StylesSourceMapping.js", 63 "front_end/bindings/StylesSourceMapping.js",
64 "front_end/bindings/TempFile.js", 64 "front_end/bindings/TempFile.js",
65 "front_end/changes/changesView.css",
66 "front_end/changes/ChangesView.js",
67 "front_end/changes/module.json",
65 "front_end/cm/activeline.js", 68 "front_end/cm/activeline.js",
66 "front_end/cm/closebrackets.js", 69 "front_end/cm/closebrackets.js",
67 "front_end/cm/codemirror.css", 70 "front_end/cm/codemirror.css",
68 "front_end/cm/codemirror.js", 71 "front_end/cm/codemirror.js",
69 "front_end/cm/comment.js", 72 "front_end/cm/comment.js",
70 "front_end/cm/markselection.js", 73 "front_end/cm/markselection.js",
71 "front_end/cm/matchbrackets.js", 74 "front_end/cm/matchbrackets.js",
72 "front_end/cm/module.json", 75 "front_end/cm/module.json",
73 "front_end/cm/multiplex.js", 76 "front_end/cm/multiplex.js",
74 "front_end/cm/overlay.js", 77 "front_end/cm/overlay.js",
(...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after
823 "$resources_out_dir/toolbox.js", 826 "$resources_out_dir/toolbox.js",
824 "$resources_out_dir/audits2_worker.js", 827 "$resources_out_dir/audits2_worker.js",
825 "$resources_out_dir/formatter_worker.js", 828 "$resources_out_dir/formatter_worker.js",
826 "$resources_out_dir/heap_snapshot_worker.js", 829 "$resources_out_dir/heap_snapshot_worker.js",
827 "$resources_out_dir/utility_shared_worker.js", 830 "$resources_out_dir/utility_shared_worker.js",
828 831
829 # this contains non-autostart non-remote modules only. 832 # this contains non-autostart non-remote modules only.
830 "$resources_out_dir/animation/animation_module.js", 833 "$resources_out_dir/animation/animation_module.js",
831 "$resources_out_dir/audits/audits_module.js", 834 "$resources_out_dir/audits/audits_module.js",
832 "$resources_out_dir/audits2/audits2_module.js", 835 "$resources_out_dir/audits2/audits2_module.js",
836 "$resources_out_dir/changes/changes_module.js",
833 "$resources_out_dir/cm/cm_module.js", 837 "$resources_out_dir/cm/cm_module.js",
834 "$resources_out_dir/color_picker/color_picker_module.js", 838 "$resources_out_dir/color_picker/color_picker_module.js",
835 "$resources_out_dir/console/console_module.js", 839 "$resources_out_dir/console/console_module.js",
836 "$resources_out_dir/cookie_table/cookie_table_module.js", 840 "$resources_out_dir/cookie_table/cookie_table_module.js",
837 "$resources_out_dir/coverage/coverage_module.js", 841 "$resources_out_dir/coverage/coverage_module.js",
838 "$resources_out_dir/data_grid/data_grid_module.js", 842 "$resources_out_dir/data_grid/data_grid_module.js",
839 "$resources_out_dir/devices/devices_module.js", 843 "$resources_out_dir/devices/devices_module.js",
840 "$resources_out_dir/diff/diff_module.js", 844 "$resources_out_dir/diff/diff_module.js",
841 "$resources_out_dir/elements/elements_module.js", 845 "$resources_out_dir/elements/elements_module.js",
842 "$resources_out_dir/event_listeners/event_listeners_module.js", 846 "$resources_out_dir/event_listeners/event_listeners_module.js",
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
1109 ".eslintrc.js", 1113 ".eslintrc.js",
1110 "devtools-node-modules/", 1114 "devtools-node-modules/",
1111 "front_end/", 1115 "front_end/",
1112 "scripts/buildbot/run_eslint.py", 1116 "scripts/buildbot/run_eslint.py",
1113 "scripts/local_node/", 1117 "scripts/local_node/",
1114 "//testing/scripts/common.py", 1118 "//testing/scripts/common.py",
1115 "//testing/scripts/run_devtools_check.py", 1119 "//testing/scripts/run_devtools_check.py",
1116 "//testing/xvfb.py", 1120 "//testing/xvfb.py",
1117 ] 1121 ]
1118 } 1122 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/devtools/front_end/Images/smallIcons.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698