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

Side by Side Diff: third_party/WebKit/Source/core/inspector/BUILD.gn

Issue 2734123004: add a new set of commands to resize and position windows (Closed)
Patch Set: add methods to UI domain Created 3 years, 9 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("//third_party/WebKit/Source/bindings/bindings.gni") 5 import("//third_party/WebKit/Source/bindings/bindings.gni")
6 import("//third_party/WebKit/Source/core/core.gni") 6 import("//third_party/WebKit/Source/core/core.gni")
7 import("//third_party/inspector_protocol/inspector_protocol.gni") 7 import("//third_party/inspector_protocol/inspector_protocol.gni")
8 import("//v8/gni/v8.gni") 8 import("//v8/gni/v8.gni")
9 9
10 _inspector_protocol_dir = "//third_party/inspector_protocol" 10 _inspector_protocol_dir = "//third_party/inspector_protocol"
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 "inspector/protocol/Protocol.h", 182 "inspector/protocol/Protocol.h",
183 "inspector/protocol/Rendering.cpp", 183 "inspector/protocol/Rendering.cpp",
184 "inspector/protocol/Rendering.h", 184 "inspector/protocol/Rendering.h",
185 "inspector/protocol/Runtime.h", 185 "inspector/protocol/Runtime.h",
186 "inspector/protocol/Security.cpp", 186 "inspector/protocol/Security.cpp",
187 "inspector/protocol/Security.h", 187 "inspector/protocol/Security.h",
188 "inspector/protocol/Target.cpp", 188 "inspector/protocol/Target.cpp",
189 "inspector/protocol/Target.h", 189 "inspector/protocol/Target.h",
190 "inspector/protocol/Tracing.cpp", 190 "inspector/protocol/Tracing.cpp",
191 "inspector/protocol/Tracing.h", 191 "inspector/protocol/Tracing.h",
192 "inspector/protocol/UI.cpp",
193 "inspector/protocol/UI.h",
192 ] 194 ]
193 195
194 deps = [ 196 deps = [
195 ":protocol_version", 197 ":protocol_version",
196 ] 198 ]
197 } 199 }
198 200
199 # Compiles the sources generated above. 201 # Compiles the sources generated above.
200 source_set("generated") { 202 source_set("generated") {
201 sources = get_target_outputs(":protocol_sources") + 203 sources = get_target_outputs(":protocol_sources") +
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
257 outputs = [ 259 outputs = [
258 output_file, 260 output_file,
259 ] 261 ]
260 262
261 args = [ 263 args = [
262 rebase_path("browser_protocol.json", root_build_dir), 264 rebase_path("browser_protocol.json", root_build_dir),
263 rebase_path(v8_inspector_js_protocol, root_build_dir), 265 rebase_path(v8_inspector_js_protocol, root_build_dir),
264 rebase_path(output_file, root_build_dir), 266 rebase_path(output_file, root_build_dir),
265 ] 267 ]
266 } 268 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698