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

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

Issue 2649023007: DevTools: implement release note behind an experiment (Closed)
Patch Set: address CL comments Created 3 years, 10 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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 "front_end/heap_snapshot_model/HeapSnapshotModel.js", 239 "front_end/heap_snapshot_model/HeapSnapshotModel.js",
240 "front_end/heap_snapshot_model/module.json", 240 "front_end/heap_snapshot_model/module.json",
241 "front_end/heap_snapshot_worker.js", 241 "front_end/heap_snapshot_worker.js",
242 "front_end/heap_snapshot_worker.json", 242 "front_end/heap_snapshot_worker.json",
243 "front_end/heap_snapshot_worker/AllocationProfile.js", 243 "front_end/heap_snapshot_worker/AllocationProfile.js",
244 "front_end/heap_snapshot_worker/HeapSnapshot.js", 244 "front_end/heap_snapshot_worker/HeapSnapshot.js",
245 "front_end/heap_snapshot_worker/HeapSnapshotLoader.js", 245 "front_end/heap_snapshot_worker/HeapSnapshotLoader.js",
246 "front_end/heap_snapshot_worker/HeapSnapshotWorker.js", 246 "front_end/heap_snapshot_worker/HeapSnapshotWorker.js",
247 "front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js", 247 "front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js",
248 "front_end/heap_snapshot_worker/module.json", 248 "front_end/heap_snapshot_worker/module.json",
249 "front_end/help/module.json",
250 "front_end/help/releaseNote.css",
251 "front_end/help/ReleaseNote.js",
alph 2017/02/21 23:19:42 nit: ReleaseNotes
chenwilliam 2017/02/22 02:36:38 It seems more consistent to keep it singular every
252 "front_end/help/ReleaseNoteText.js",
249 "front_end/host/InspectorFrontendHost.js", 253 "front_end/host/InspectorFrontendHost.js",
250 "front_end/host/InspectorFrontendHostAPI.js", 254 "front_end/host/InspectorFrontendHostAPI.js",
251 "front_end/host/module.json", 255 "front_end/host/module.json",
252 "front_end/host/Platform.js", 256 "front_end/host/Platform.js",
253 "front_end/host/ResourceLoader.js", 257 "front_end/host/ResourceLoader.js",
254 "front_end/host/UserMetrics.js", 258 "front_end/host/UserMetrics.js",
255 "front_end/inline_editor/bezierEditor.css", 259 "front_end/inline_editor/bezierEditor.css",
256 "front_end/inline_editor/BezierEditor.js", 260 "front_end/inline_editor/BezierEditor.js",
257 "front_end/inline_editor/bezierSwatch.css", 261 "front_end/inline_editor/bezierSwatch.css",
258 "front_end/inline_editor/BezierUI.js", 262 "front_end/inline_editor/BezierUI.js",
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 "$resources_out_dir/color_picker/color_picker_module.js", 818 "$resources_out_dir/color_picker/color_picker_module.js",
815 "$resources_out_dir/console/console_module.js", 819 "$resources_out_dir/console/console_module.js",
816 "$resources_out_dir/cookie_table/cookie_table_module.js", 820 "$resources_out_dir/cookie_table/cookie_table_module.js",
817 "$resources_out_dir/css_tracker/css_tracker_module.js", 821 "$resources_out_dir/css_tracker/css_tracker_module.js",
818 "$resources_out_dir/data_grid/data_grid_module.js", 822 "$resources_out_dir/data_grid/data_grid_module.js",
819 "$resources_out_dir/devices/devices_module.js", 823 "$resources_out_dir/devices/devices_module.js",
820 "$resources_out_dir/diff/diff_module.js", 824 "$resources_out_dir/diff/diff_module.js",
821 "$resources_out_dir/elements/elements_module.js", 825 "$resources_out_dir/elements/elements_module.js",
822 "$resources_out_dir/event_listeners/event_listeners_module.js", 826 "$resources_out_dir/event_listeners/event_listeners_module.js",
823 "$resources_out_dir/heap_snapshot_model/heap_snapshot_model_module.js", 827 "$resources_out_dir/heap_snapshot_model/heap_snapshot_model_module.js",
828 "$resources_out_dir/help/help_module.js",
alph 2017/02/21 23:19:42 Do you need this?
chenwilliam 2017/02/22 02:36:38 Removed. I forgot to remove this when I made this
824 "$resources_out_dir/inline_editor/inline_editor_module.js", 829 "$resources_out_dir/inline_editor/inline_editor_module.js",
825 "$resources_out_dir/layer_viewer/layer_viewer_module.js", 830 "$resources_out_dir/layer_viewer/layer_viewer_module.js",
826 "$resources_out_dir/layers/layers_module.js", 831 "$resources_out_dir/layers/layers_module.js",
827 "$resources_out_dir/network/network_module.js", 832 "$resources_out_dir/network/network_module.js",
828 "$resources_out_dir/perf_ui/perf_ui_module.js", 833 "$resources_out_dir/perf_ui/perf_ui_module.js",
829 "$resources_out_dir/profiler/profiler_module.js", 834 "$resources_out_dir/profiler/profiler_module.js",
830 "$resources_out_dir/quick_open/quick_open_module.js", 835 "$resources_out_dir/quick_open/quick_open_module.js",
831 "$resources_out_dir/resources/resources_module.js", 836 "$resources_out_dir/resources/resources_module.js",
832 "$resources_out_dir/sass/sass_module.js", 837 "$resources_out_dir/sass/sass_module.js",
833 "$resources_out_dir/security/security_module.js", 838 "$resources_out_dir/security/security_module.js",
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
1081 ".eslintrc.js", 1086 ".eslintrc.js",
1082 "devtools-node-modules/", 1087 "devtools-node-modules/",
1083 "front_end/", 1088 "front_end/",
1084 "scripts/buildbot/run_eslint.py", 1089 "scripts/buildbot/run_eslint.py",
1085 "scripts/local_node/", 1090 "scripts/local_node/",
1086 "//testing/scripts/common.py", 1091 "//testing/scripts/common.py",
1087 "//testing/scripts/run_devtools_check.py", 1092 "//testing/scripts/run_devtools_check.py",
1088 "//testing/xvfb.py", 1093 "//testing/xvfb.py",
1089 ] 1094 ]
1090 } 1095 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698