| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |