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

Side by Side Diff: third_party/WebKit/Source/core/inspector/BUILD.gn

Issue 1670813003: DevTools: do not use platform/ to load injected scripts into inspector/v8. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months 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("//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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698