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

Side by Side Diff: sky/engine/v8_inspector/BUILD.gn

Issue 754463004: Remove ScriptPreprocessor (Closed) Base URL: https://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
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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
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", 63 "read_from_source_tree.cc",
64 "read_from_source_tree.h", 64 "read_from_source_tree.h",
65 "ScriptBreakpoint.h", 65 "ScriptBreakpoint.h",
66 "ScriptDebugListener.h", 66 "ScriptDebugListener.h",
67 "ScriptDebugServer.cpp", 67 "ScriptDebugServer.cpp",
68 "ScriptDebugServer.h", 68 "ScriptDebugServer.h",
69 "ScriptPreprocessor.cpp",
70 "ScriptPreprocessor.h",
71 "ScriptRegexp.cpp", 69 "ScriptRegexp.cpp",
72 "ScriptRegexp.h", 70 "ScriptRegexp.h",
73 ] 71 ]
74 72
75 # TODO(eseidel): These should be compiled in a separate _generated target. 73 # TODO(eseidel): These should be compiled in a separate _generated target.
76 sources += [ 74 sources += [
77 "$gen_dir/InspectorFrontend.cpp", 75 "$gen_dir/InspectorFrontend.cpp",
78 "$gen_dir/InspectorBackendDispatcher.cpp", 76 "$gen_dir/InspectorBackendDispatcher.cpp",
79 "$gen_dir/InspectorTypeBuilder.cpp", 77 "$gen_dir/InspectorTypeBuilder.cpp",
80 ] 78 ]
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 112
115 inputs = [ protocol_file ] 113 inputs = [ protocol_file ]
116 output_file = "$gen_dir/InspectorProtocolVersion.h" 114 output_file = "$gen_dir/InspectorProtocolVersion.h"
117 outputs = [ output_file ] 115 outputs = [ output_file ]
118 116
119 args = [ 117 args = [
120 "-o", rebase_path(output_file, root_build_dir), 118 "-o", rebase_path(output_file, root_build_dir),
121 rebase_path(protocol_file, root_build_dir), 119 rebase_path(protocol_file, root_build_dir),
122 ] 120 ]
123 } 121 }
OLDNEW
« no previous file with comments | « sky/engine/bindings/core/v8/V8ScriptRunner.cpp ('k') | sky/engine/v8_inspector/InspectorDebuggerAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698