| 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("//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 | 7 |
| 8 visibility = [ "//third_party/WebKit/Source/*" ] | 8 visibility = [ "//third_party/WebKit/Source/*" ] |
| 9 | 9 |
| 10 protocol_file = "../../devtools/protocol.json" | 10 protocol_file = "../../devtools/protocol.json" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 outputs = [ | 70 outputs = [ |
| 71 output_file, | 71 output_file, |
| 72 ] | 72 ] |
| 73 | 73 |
| 74 args = [ | 74 args = [ |
| 75 "-o", | 75 "-o", |
| 76 rebase_path(output_file, root_build_dir), | 76 rebase_path(output_file, root_build_dir), |
| 77 rebase_path(protocol_file, root_build_dir), | 77 rebase_path(protocol_file, root_build_dir), |
| 78 ] | 78 ] |
| 79 } | 79 } |
| 80 |
| 81 convert_file_to_header_with_character_array("injected_script_source") { |
| 82 input_file_path = "v8/InjectedScriptSource.js" |
| 83 output_file_path = "$blink_core_output_dir/InjectedScriptSource.h" |
| 84 character_array_name = "InjectedScriptSource_js" |
| 85 } |
| 86 |
| 87 convert_file_to_header_with_character_array("debugger_script") { |
| 88 input_file_path = "v8/DebuggerScript.js" |
| 89 output_file_path = "$blink_core_output_dir/DebuggerScript.h" |
| 90 character_array_name = "DebuggerScript_js" |
| 91 } |
| OLD | NEW |