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

Side by Side Diff: content/browser/devtools/BUILD.gn

Issue 375873006: Rename source_prereqs to inputs in the GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « components/policy/BUILD.gn ('k') | content/browser/tracing/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 # In GYP: devtools_resources target. 7 # In GYP: devtools_resources target.
8 group("resources") { 8 group("resources") {
9 deps = [ 9 deps = [
10 ":devtools_resources", 10 ":devtools_resources",
11 ":devtools_protocol_constants", 11 ":devtools_protocol_constants",
12 ] 12 ]
13 } 13 }
14 14
15 # In GYP: devtools_resources action in the devtools_resources target. 15 # In GYP: devtools_resources action in the devtools_resources target.
16 action("devtools_resources") { 16 action("devtools_resources") {
17 visibility = ":resources" 17 visibility = ":resources"
18 18
19 # This can't use grit_rule.gni because the grd file is generated at build 19 # This can't use grit_rule.gni because the grd file is generated at build
20 # time, so the trick of using grit_info to get the real inputs/outputs at GYP 20 # time, so the trick of using grit_info to get the real inputs/outputs at GYP
21 # time isn't possible. 21 # time isn't possible.
22 script = "//tools/grit/grit.py" 22 script = "//tools/grit/grit.py"
23 23
24 grdfile = "$root_gen_dir/devtools/devtools_resources.grd" 24 grdfile = "$root_gen_dir/devtools/devtools_resources.grd"
25 25
26 source_prereqs = [ grdfile ] + 26 inputs = [ grdfile ] +
27 rebase_path(exec_script("//tools/grit/grit_info.py", [ "--inputs" ], 27 rebase_path(exec_script("//tools/grit/grit_info.py", [ "--inputs" ],
28 "list lines"), 28 "list lines"),
29 ".", "//") 29 ".", "//")
30 30
31 out_dir = "$root_gen_dir/webkit" 31 out_dir = "$root_gen_dir/webkit"
32 outputs = [ 32 outputs = [
33 "$out_dir/grit/devtools_resources.h", 33 "$out_dir/grit/devtools_resources.h",
34 "$out_dir/devtools_resources.pak", 34 "$out_dir/devtools_resources.pak",
35 "$out_dir/grit/devtools_resources_map.cc", 35 "$out_dir/grit/devtools_resources_map.cc",
36 "$out_dir/grit/devtools_resources_map.h", 36 "$out_dir/grit/devtools_resources_map.h",
(...skipping 13 matching lines...) Expand all
50 ] 50 ]
51 } 51 }
52 52
53 action("devtools_protocol_constants") { 53 action("devtools_protocol_constants") {
54 visibility = ":resources" 54 visibility = ":resources"
55 55
56 script = "//content/public/browser/devtools_protocol_constants_generator.py" 56 script = "//content/public/browser/devtools_protocol_constants_generator.py"
57 57
58 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json" 58 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json"
59 browser_protocol = "browser_protocol.json" 59 browser_protocol = "browser_protocol.json"
60 source_prereqs = [ blink_protocol, browser_protocol ] 60 inputs = [ blink_protocol, browser_protocol ]
61 61
62 outputs = [ 62 outputs = [
63 "$target_gen_dir/devtools_protocol_constants.cc", 63 "$target_gen_dir/devtools_protocol_constants.cc",
64 "$target_gen_dir/devtools_protocol_constants.h", 64 "$target_gen_dir/devtools_protocol_constants.h",
65 ] 65 ]
66 66
67 args = [ "content" ] + rebase_path(outputs, root_build_dir) + [ 67 args = [ "content" ] + rebase_path(outputs, root_build_dir) + [
68 rebase_path(blink_protocol, root_build_dir), 68 rebase_path(blink_protocol, root_build_dir),
69 rebase_path(browser_protocol, root_build_dir), 69 rebase_path(browser_protocol, root_build_dir),
70 ] 70 ]
71 } 71 }
OLDNEW
« no previous file with comments | « components/policy/BUILD.gn ('k') | content/browser/tracing/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698