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

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

Issue 2938503002: DevTools: unify Network & CPU throttling (Closed)
Patch Set: fmt Created 3 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
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 "front_end/main/ExecutionContextSelector.js", 304 "front_end/main/ExecutionContextSelector.js",
305 "front_end/main/GCActionDelegate.js", 305 "front_end/main/GCActionDelegate.js",
306 "front_end/main/Main.js", 306 "front_end/main/Main.js",
307 "front_end/main/module.json", 307 "front_end/main/module.json",
308 "front_end/main/remoteDebuggingTerminatedScreen.css", 308 "front_end/main/remoteDebuggingTerminatedScreen.css",
309 "front_end/main/renderingOptions.css", 309 "front_end/main/renderingOptions.css",
310 "front_end/main/RenderingOptions.js", 310 "front_end/main/RenderingOptions.js",
311 "front_end/main/RequestAppBannerActionDelegate.js", 311 "front_end/main/RequestAppBannerActionDelegate.js",
312 "front_end/main/SimpleApp.js", 312 "front_end/main/SimpleApp.js",
313 "front_end/main/targetCrashedScreen.css", 313 "front_end/main/targetCrashedScreen.css",
314 "front_end/mobile_throttling/CPUThrottlingManager.js",
315 "front_end/mobile_throttling/module.json", 314 "front_end/mobile_throttling/module.json",
316 "front_end/mobile_throttling/NetworkConditionsSelector.js", 315 "front_end/mobile_throttling/ThrottlingSelector.js",
317 "front_end/mobile_throttling/networkConditionsSettingsTab.css", 316 "front_end/mobile_throttling/throttlingSettingsTab.css",
318 "front_end/mobile_throttling/NetworkConditionsSettingsTab.js", 317 "front_end/mobile_throttling/ThrottlingSettingsTab.js",
319 "front_end/network/blockedURLsPane.css", 318 "front_end/network/blockedURLsPane.css",
320 "front_end/network/BlockedURLsPane.js", 319 "front_end/network/BlockedURLsPane.js",
321 "front_end/network/eventSourceMessagesView.css", 320 "front_end/network/eventSourceMessagesView.css",
322 "front_end/network/EventSourceMessagesView.js", 321 "front_end/network/EventSourceMessagesView.js",
323 "front_end/network/FilterSuggestionBuilder.js", 322 "front_end/network/FilterSuggestionBuilder.js",
324 "front_end/network/HARWriter.js", 323 "front_end/network/HARWriter.js",
325 "front_end/network/JSONView.js", 324 "front_end/network/JSONView.js",
326 "front_end/network/module.json", 325 "front_end/network/module.json",
327 "front_end/network/networkConfigView.css", 326 "front_end/network/networkConfigView.css",
328 "front_end/network/NetworkConfigView.js", 327 "front_end/network/NetworkConfigView.js",
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 "front_end/sdk/CSSStyleDeclaration.js", 489 "front_end/sdk/CSSStyleDeclaration.js",
491 "front_end/sdk/CSSStyleSheetHeader.js", 490 "front_end/sdk/CSSStyleSheetHeader.js",
492 "front_end/sdk/DOMDebuggerModel.js", 491 "front_end/sdk/DOMDebuggerModel.js",
493 "front_end/sdk/DebuggerModel.js", 492 "front_end/sdk/DebuggerModel.js",
494 "front_end/sdk/DOMModel.js", 493 "front_end/sdk/DOMModel.js",
495 "front_end/sdk/EmulationModel.js", 494 "front_end/sdk/EmulationModel.js",
496 "front_end/sdk/FilmStripModel.js", 495 "front_end/sdk/FilmStripModel.js",
497 "front_end/sdk/HeapProfilerModel.js", 496 "front_end/sdk/HeapProfilerModel.js",
498 "front_end/sdk/LayerTreeBase.js", 497 "front_end/sdk/LayerTreeBase.js",
499 "front_end/sdk/LogModel.js", 498 "front_end/sdk/LogModel.js",
499 "front_end/sdk/MobileThrottling.js",
500 "front_end/sdk/module.json", 500 "front_end/sdk/module.json",
501 "front_end/sdk/NetworkManager.js", 501 "front_end/sdk/NetworkManager.js",
502 "front_end/sdk/NetworkRequest.js", 502 "front_end/sdk/NetworkRequest.js",
503 "front_end/sdk/OverlayModel.js", 503 "front_end/sdk/OverlayModel.js",
504 "front_end/sdk/PaintProfiler.js", 504 "front_end/sdk/PaintProfiler.js",
505 "front_end/sdk/ProfileTreeModel.js", 505 "front_end/sdk/ProfileTreeModel.js",
506 "front_end/sdk/RemoteObject.js", 506 "front_end/sdk/RemoteObject.js",
507 "front_end/sdk/Resource.js", 507 "front_end/sdk/Resource.js",
508 "front_end/sdk/ResourceTreeModel.js", 508 "front_end/sdk/ResourceTreeModel.js",
509 "front_end/sdk/RuntimeModel.js", 509 "front_end/sdk/RuntimeModel.js",
(...skipping 653 matching lines...) Expand 10 before | Expand all | Expand 10 after
1163 ".eslintrc.js", 1163 ".eslintrc.js",
1164 "devtools-node-modules/", 1164 "devtools-node-modules/",
1165 "front_end/", 1165 "front_end/",
1166 "scripts/buildbot/run_eslint.py", 1166 "scripts/buildbot/run_eslint.py",
1167 "scripts/local_node/", 1167 "scripts/local_node/",
1168 "//testing/scripts/common.py", 1168 "//testing/scripts/common.py",
1169 "//testing/scripts/run_devtools_check.py", 1169 "//testing/scripts/run_devtools_check.py",
1170 "//testing/xvfb.py", 1170 "//testing/xvfb.py",
1171 ] 1171 ]
1172 } 1172 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698