| OLD | NEW |
| 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/Source/core/core.gni") | 6 import("//third_party/WebKit/Source/core/core.gni") |
| 7 | 7 |
| 8 devtools_embedder_scripts = [ | 8 devtools_embedder_scripts = [ |
| 9 "front_end/devtools.js", | 9 "front_end/devtools.js", |
| 10 "front_end/Tests.js", | 10 "front_end/Tests.js", |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 "front_end/heap_snapshot_worker/HeapSnapshot.js", | 489 "front_end/heap_snapshot_worker/HeapSnapshot.js", |
| 490 "front_end/heap_snapshot_worker/HeapSnapshotLoader.js", | 490 "front_end/heap_snapshot_worker/HeapSnapshotLoader.js", |
| 491 "front_end/heap_snapshot_worker/HeapSnapshotWorker.js", | 491 "front_end/heap_snapshot_worker/HeapSnapshotWorker.js", |
| 492 "front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js", | 492 "front_end/heap_snapshot_worker/HeapSnapshotWorkerDispatcher.js", |
| 493 "front_end/heap_snapshot_worker/JSHeapSnapshot.js", | 493 "front_end/heap_snapshot_worker/JSHeapSnapshot.js", |
| 494 "front_end/platform/utilities.js", | 494 "front_end/platform/utilities.js", |
| 495 "front_end/profiler/HeapSnapshotCommon.js", | 495 "front_end/profiler/HeapSnapshotCommon.js", |
| 496 ] | 496 ] |
| 497 devtools_layers_js_files = [ | 497 devtools_layers_js_files = [ |
| 498 "front_end/layers/LayerPaintProfilerView.js", | 498 "front_end/layers/LayerPaintProfilerView.js", |
| 499 "front_end/layers/LayersPanel.js", | 499 "front_end/layers/LayersPane.js", |
| 500 ] | 500 ] |
| 501 devtools_network_js_files = [ | 501 devtools_network_js_files = [ |
| 502 "front_end/network/blockedURLsPane.css", | 502 "front_end/network/blockedURLsPane.css", |
| 503 "front_end/network/eventSourceMessagesView.css", | 503 "front_end/network/eventSourceMessagesView.css", |
| 504 "front_end/network/networkConfigView.css", | 504 "front_end/network/networkConfigView.css", |
| 505 "front_end/network/networkLogView.css", | 505 "front_end/network/networkLogView.css", |
| 506 "front_end/network/networkManageCustomHeadersView.css", | 506 "front_end/network/networkManageCustomHeadersView.css", |
| 507 "front_end/network/networkPanel.css", | 507 "front_end/network/networkPanel.css", |
| 508 "front_end/network/requestCookiesView.css", | 508 "front_end/network/requestCookiesView.css", |
| 509 "front_end/network/requestHeadersView.css", | 509 "front_end/network/requestHeadersView.css", |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1156 ] | 1156 ] |
| 1157 } | 1157 } |
| 1158 | 1158 |
| 1159 copy("copy_emulated_devices_images_debug") { | 1159 copy("copy_emulated_devices_images_debug") { |
| 1160 sources = devtools_emulated_devices_images | 1160 sources = devtools_emulated_devices_images |
| 1161 outputs = [ | 1161 outputs = [ |
| 1162 "$resources_out_debug_dir/emulated_devices/{{source_file_part}}", | 1162 "$resources_out_debug_dir/emulated_devices/{{source_file_part}}", |
| 1163 ] | 1163 ] |
| 1164 } | 1164 } |
| 1165 } | 1165 } |
| OLD | NEW |