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: sky/engine/v8_inspector/BUILD.gn

Issue 776743002: Make v8 inspector not crash (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 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
« no previous file with comments | « sky/engine/public/platform/Platform.h ('k') | sky/engine/v8_inspector/DebuggerScript.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/ui.gni") 5 import("//build/config/ui.gni")
6 import("//sky/engine/config.gni") 6 import("//sky/engine/config.gni")
7 7
8 visibility = ["//sky/*"] 8 visibility = ["//sky/*"]
9 9
10 gen_dir = "$root_gen_dir/v8_inspector" 10 gen_dir = "$root_gen_dir/v8_inspector"
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 "InspectorState.h", 53 "InspectorState.h",
54 "InstrumentingAgents.h", 54 "InstrumentingAgents.h",
55 "JSONParser.cpp", 55 "JSONParser.cpp",
56 "JSONParser.h", 56 "JSONParser.h",
57 "PageDebuggerAgent.cpp", 57 "PageDebuggerAgent.cpp",
58 "PageDebuggerAgent.h", 58 "PageDebuggerAgent.h",
59 "PageScriptDebugServer.cpp", 59 "PageScriptDebugServer.cpp",
60 "PageScriptDebugServer.h", 60 "PageScriptDebugServer.h",
61 "PromiseTracker.cpp", 61 "PromiseTracker.cpp",
62 "PromiseTracker.h", 62 "PromiseTracker.h",
63 "read_from_source_tree.cc",
64 "read_from_source_tree.h",
63 "ScriptBreakpoint.h", 65 "ScriptBreakpoint.h",
64 "ScriptDebugListener.h", 66 "ScriptDebugListener.h",
65 "ScriptDebugServer.cpp", 67 "ScriptDebugServer.cpp",
66 "ScriptDebugServer.h", 68 "ScriptDebugServer.h",
67 "ScriptPreprocessor.cpp", 69 "ScriptPreprocessor.cpp",
68 "ScriptPreprocessor.h", 70 "ScriptPreprocessor.h",
69 "ScriptRegexp.cpp", 71 "ScriptRegexp.cpp",
70 "ScriptRegexp.h", 72 "ScriptRegexp.h",
71 ] 73 ]
72 74
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 114
113 inputs = [ protocol_file ] 115 inputs = [ protocol_file ]
114 output_file = "$gen_dir/InspectorProtocolVersion.h" 116 output_file = "$gen_dir/InspectorProtocolVersion.h"
115 outputs = [ output_file ] 117 outputs = [ output_file ]
116 118
117 args = [ 119 args = [
118 "-o", rebase_path(output_file, root_build_dir), 120 "-o", rebase_path(output_file, root_build_dir),
119 rebase_path(protocol_file, root_build_dir), 121 rebase_path(protocol_file, root_build_dir),
120 ] 122 ]
121 } 123 }
OLDNEW
« no previous file with comments | « sky/engine/public/platform/Platform.h ('k') | sky/engine/v8_inspector/DebuggerScript.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698