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

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

Issue 2529303003: DevTools: move FileSystemMapping from Workspace to Persistence (Closed)
Patch Set: fix tests Created 4 years 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 devtools_embedder_scripts = [ 9 devtools_embedder_scripts = [
10 "front_end/devtools_compatibility.js", 10 "front_end/devtools_compatibility.js",
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 "front_end/sdk/ServiceWorkerManager.js", 137 "front_end/sdk/ServiceWorkerManager.js",
138 "front_end/sdk/SourceMap.js", 138 "front_end/sdk/SourceMap.js",
139 "front_end/sdk/SubTargetsManager.js", 139 "front_end/sdk/SubTargetsManager.js",
140 "front_end/sdk/Target.js", 140 "front_end/sdk/Target.js",
141 "front_end/sdk/TargetManager.js", 141 "front_end/sdk/TargetManager.js",
142 "front_end/sdk/TracingManager.js", 142 "front_end/sdk/TracingManager.js",
143 "front_end/sdk/TracingModel.js", 143 "front_end/sdk/TracingModel.js",
144 ] 144 ]
145 devtools_workspace_js_files = [ 145 devtools_workspace_js_files = [
146 "front_end/workspace/FileManager.js", 146 "front_end/workspace/FileManager.js",
147 "front_end/workspace/FileSystemMapping.js",
148 "front_end/workspace/IsolatedFileSystem.js", 147 "front_end/workspace/IsolatedFileSystem.js",
149 "front_end/workspace/IsolatedFileSystemManager.js", 148 "front_end/workspace/IsolatedFileSystemManager.js",
150 "front_end/workspace/SearchConfig.js", 149 "front_end/workspace/SearchConfig.js",
151 "front_end/workspace/UISourceCode.js", 150 "front_end/workspace/UISourceCode.js",
152 "front_end/workspace/Workspace.js", 151 "front_end/workspace/Workspace.js",
153 ] 152 ]
154 devtools_bindings_js_files = [ 153 devtools_bindings_js_files = [
155 "front_end/bindings/BlackboxManager.js", 154 "front_end/bindings/BlackboxManager.js",
156 "front_end/bindings/BreakpointManager.js", 155 "front_end/bindings/BreakpointManager.js",
157 "front_end/bindings/CompilerScriptMapping.js", 156 "front_end/bindings/CompilerScriptMapping.js",
158 "front_end/bindings/ContentProviderBasedProject.js", 157 "front_end/bindings/ContentProviderBasedProject.js",
159 "front_end/bindings/CSSWorkspaceBinding.js", 158 "front_end/bindings/CSSWorkspaceBinding.js",
160 "front_end/bindings/DebuggerWorkspaceBinding.js", 159 "front_end/bindings/DebuggerWorkspaceBinding.js",
161 "front_end/bindings/DefaultScriptMapping.js", 160 "front_end/bindings/DefaultScriptMapping.js",
162 "front_end/bindings/FileUtils.js", 161 "front_end/bindings/FileUtils.js",
163 "front_end/bindings/LiveLocation.js", 162 "front_end/bindings/LiveLocation.js",
164 "front_end/bindings/NetworkProject.js", 163 "front_end/bindings/NetworkProject.js",
165 "front_end/bindings/PresentationConsoleMessageHelper.js", 164 "front_end/bindings/PresentationConsoleMessageHelper.js",
166 "front_end/bindings/ResourceScriptMapping.js", 165 "front_end/bindings/ResourceScriptMapping.js",
167 "front_end/bindings/ResourceUtils.js", 166 "front_end/bindings/ResourceUtils.js",
168 "front_end/bindings/SASSSourceMapping.js", 167 "front_end/bindings/SASSSourceMapping.js",
169 "front_end/bindings/StylesSourceMapping.js", 168 "front_end/bindings/StylesSourceMapping.js",
170 "front_end/bindings/TempFile.js", 169 "front_end/bindings/TempFile.js",
171 ] 170 ]
172 devtools_persistence_js_files = [ 171 devtools_persistence_js_files = [
173 "front_end/persistence/FileSystemWorkspaceBinding.js", 172 "front_end/persistence/FileSystemWorkspaceBinding.js",
173 "front_end/persistence/FileSystemMapping.js",
174 "front_end/persistence/DefaultMapping.js", 174 "front_end/persistence/DefaultMapping.js",
175 "front_end/persistence/Automapping.js", 175 "front_end/persistence/Automapping.js",
176 "front_end/persistence/Persistence.js", 176 "front_end/persistence/Persistence.js",
177 "front_end/persistence/PersistenceUtils.js", 177 "front_end/persistence/PersistenceUtils.js",
178 ] 178 ]
179 devtools_platform_js_files = [ 179 devtools_platform_js_files = [
180 "front_end/platform/DOMExtension.js", 180 "front_end/platform/DOMExtension.js",
181 "front_end/platform/utilities.js", 181 "front_end/platform/utilities.js",
182 ] 182 ]
183 devtools_toolbox_bootstrap_js_files = 183 devtools_toolbox_bootstrap_js_files =
(...skipping 980 matching lines...) Expand 10 before | Expand all | Expand 10 after
1164 "scripts/closure/", 1164 "scripts/closure/",
1165 "scripts/compile_frontend.py", 1165 "scripts/compile_frontend.py",
1166 "scripts/jsdoc_validator/", 1166 "scripts/jsdoc_validator/",
1167 "//testing/scripts/run_devtools_closure_compile.py", 1167 "//testing/scripts/run_devtools_closure_compile.py",
1168 "//testing/scripts/common.py", 1168 "//testing/scripts/common.py",
1169 "//testing/xvfb.py", 1169 "//testing/xvfb.py",
1170 "//third_party/WebKit/Source/core/inspector/browser_protocol.json", 1170 "//third_party/WebKit/Source/core/inspector/browser_protocol.json",
1171 "//v8/src/inspector/js_protocol.json", 1171 "//v8/src/inspector/js_protocol.json",
1172 ] 1172 ]
1173 } 1173 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698