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

Side by Side Diff: third_party/WebKit/Source/core/inspector/v8/v8_inspector.gyp

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: updated the chromevox script 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
(Empty)
1 # Copyright 2016 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //third_party/WebKit/Source/core/inspector/v8:injected_scrip t_sources
9 'target_name': 'injected_script_sources',
10 'type': 'none',
11 'dependencies': [
12 'injected_script',
13 'debugger_script',
14 ]
15 },
16 {
17 # GN version: //third_party/WebKit/Source/core/inspector/v8:injected_scrip t
18 'target_name': 'injected_script',
19 'type': 'none',
20 'actions': [
21 {
22 'action_name': 'ConvertFileToHeaderWithCharacterArray',
23 'inputs': [
24 'build/xxd.py',
25 'InjectedScriptSource.js',
26 ],
27 'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/v8/Injec tedScriptSource.h', ],
28 'action': [
29 'python', 'build/xxd.py', 'InjectedScriptSource_js', 'InjectedScript Source.js', '<@(_outputs)'
30 ],
31 },
32 ],
33 # Since this target generates header files, it needs to be a hard dependen cy.
34 'hard_dependency': 1,
35 },
36 {
37 # GN version: //third_party/WebKit/Source/core/inspector/v8:debugger_scrip t
38 'target_name': 'debugger_script',
39 'type': 'none',
40 'actions': [
41 {
42 'action_name': 'ConvertFileToHeaderWithCharacterArray',
43 'inputs': [
44 'build/xxd.py',
45 'DebuggerScript.js',
46 ],
47 'outputs': [ '<(SHARED_INTERMEDIATE_DIR)/blink/core/inspector/v8/Debug gerScript.h', ],
48 'action': [
49 'python', 'build/xxd.py', 'DebuggerScript_js', 'DebuggerScript.js', '<@(_outputs)'
50 ],
51 },
52 ],
53 # Since this target generates header files, it needs to be a hard dependen cy.
54 'hard_dependency': 1,
55 },
56 ], # targets
57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698