| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |