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

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

Issue 2515583002: DevTools: move FileSystemWorkspaceBinding under persistence/ (Closed)
Patch Set: rebaseline Created 4 years, 1 month 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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 "front_end/workspace/Workspace.js", 154 "front_end/workspace/Workspace.js",
155 ] 155 ]
156 devtools_bindings_js_files = [ 156 devtools_bindings_js_files = [
157 "front_end/bindings/BlackboxManager.js", 157 "front_end/bindings/BlackboxManager.js",
158 "front_end/bindings/BreakpointManager.js", 158 "front_end/bindings/BreakpointManager.js",
159 "front_end/bindings/CompilerScriptMapping.js", 159 "front_end/bindings/CompilerScriptMapping.js",
160 "front_end/bindings/ContentProviderBasedProject.js", 160 "front_end/bindings/ContentProviderBasedProject.js",
161 "front_end/bindings/CSSWorkspaceBinding.js", 161 "front_end/bindings/CSSWorkspaceBinding.js",
162 "front_end/bindings/DebuggerWorkspaceBinding.js", 162 "front_end/bindings/DebuggerWorkspaceBinding.js",
163 "front_end/bindings/DefaultScriptMapping.js", 163 "front_end/bindings/DefaultScriptMapping.js",
164 "front_end/bindings/FileSystemWorkspaceBinding.js",
165 "front_end/bindings/FileUtils.js", 164 "front_end/bindings/FileUtils.js",
166 "front_end/bindings/LiveLocation.js", 165 "front_end/bindings/LiveLocation.js",
167 "front_end/bindings/NetworkProject.js", 166 "front_end/bindings/NetworkProject.js",
168 "front_end/bindings/PresentationConsoleMessageHelper.js", 167 "front_end/bindings/PresentationConsoleMessageHelper.js",
169 "front_end/bindings/ResourceScriptMapping.js", 168 "front_end/bindings/ResourceScriptMapping.js",
170 "front_end/bindings/ResourceUtils.js", 169 "front_end/bindings/ResourceUtils.js",
171 "front_end/bindings/SASSSourceMapping.js", 170 "front_end/bindings/SASSSourceMapping.js",
172 "front_end/bindings/StylesSourceMapping.js", 171 "front_end/bindings/StylesSourceMapping.js",
173 "front_end/bindings/TempFile.js", 172 "front_end/bindings/TempFile.js",
174 ] 173 ]
175 devtools_persistence_js_files = [ 174 devtools_persistence_js_files = [
175 "front_end/persistence/FileSystemWorkspaceBinding.js",
176 "front_end/persistence/DefaultMapping.js", 176 "front_end/persistence/DefaultMapping.js",
177 "front_end/persistence/Automapping.js", 177 "front_end/persistence/Automapping.js",
178 "front_end/persistence/Persistence.js", 178 "front_end/persistence/Persistence.js",
179 "front_end/persistence/PersistenceUtils.js", 179 "front_end/persistence/PersistenceUtils.js",
180 ] 180 ]
181 devtools_platform_js_files = [ 181 devtools_platform_js_files = [
182 "front_end/platform/DOMExtension.js", 182 "front_end/platform/DOMExtension.js",
183 "front_end/platform/utilities.js", 183 "front_end/platform/utilities.js",
184 ] 184 ]
185 devtools_toolbox_bootstrap_js_files = 185 devtools_toolbox_bootstrap_js_files =
(...skipping 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
1148 deps = [ 1148 deps = [
1149 ":frontend_protocol_sources", 1149 ":frontend_protocol_sources",
1150 ":supported_css_properties", 1150 ":supported_css_properties",
1151 ] 1151 ]
1152 sources = generated_scripts 1152 sources = generated_scripts
1153 outputs = [ 1153 outputs = [
1154 "$resources_out_debug_dir/{{source_file_part}}", 1154 "$resources_out_debug_dir/{{source_file_part}}",
1155 ] 1155 ]
1156 } 1156 }
1157 } 1157 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698