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

Side by Side Diff: chrome/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 | « chrome/app/BUILD.gn ('k') | chrome/common/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 action("devtools_protocol_constants") { 5 action("devtools_protocol_constants") {
6 script = "//content/public/browser/devtools_protocol_constants_generator.py" 6 script = "//content/public/browser/devtools_protocol_constants_generator.py"
7 7
8 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json" 8 blink_protocol = "//third_party/WebKit/Source/devtools/protocol.json"
9 source_prereqs = [ blink_protocol ] 9 inputs = [ blink_protocol ]
10 outputs = [ 10 outputs = [
11 "$target_gen_dir/devtools_protocol_constants.cc", 11 "$target_gen_dir/devtools_protocol_constants.cc",
12 "$target_gen_dir/devtools_protocol_constants.h", 12 "$target_gen_dir/devtools_protocol_constants.h",
13 ] 13 ]
14 14
15 args = [ "chrome" ] 15 args = [ "chrome" ]
16 args += rebase_path(outputs, root_build_dir) 16 args += rebase_path(outputs, root_build_dir)
17 args += [ rebase_path(blink_protocol, root_build_dir) ] 17 args += [ rebase_path(blink_protocol, root_build_dir) ]
18 } 18 }
19 19
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "devtools_file_system_indexer.cc", 116 "devtools_file_system_indexer.cc",
117 "devtools_target_impl.cc", 117 "devtools_target_impl.cc",
118 "devtools_window.cc", 118 "devtools_window.cc",
119 "devtools_window_base.cc", 119 "devtools_window_base.cc",
120 "remote_debugging_server.cc", 120 "remote_debugging_server.cc",
121 ] 121 ]
122 } else { 122 } else {
123 deps += [ "//third_party/libusb" ] 123 deps += [ "//third_party/libusb" ]
124 } 124 }
125 } 125 }
OLDNEW
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698