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

Side by Side Diff: build/secondary/third_party/trace-viewer/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 | « build/secondary/chrome/BUILD.gn ('k') | build/secondary/tools/grit/grit_rule.gni » ('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 tracing_html_files = [ 5 tracing_html_files = [
6 "trace_viewer/about_tracing/profiling_view.html", 6 "trace_viewer/about_tracing/profiling_view.html",
7 "trace_viewer/tracing/record_selection_dialog.html", 7 "trace_viewer/tracing/record_selection_dialog.html",
8 "trace_viewer/tracing/sampling_summary_side_panel.html", 8 "trace_viewer/tracing/sampling_summary_side_panel.html",
9 "trace_viewer/tracing/time_summary_side_panel.html", 9 "trace_viewer/tracing/time_summary_side_panel.html",
10 "trace_viewer/tracing/input_latency_side_panel.html", 10 "trace_viewer/tracing/input_latency_side_panel.html",
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 "third_party/tvcm/src/tvcm/images/ui-states.png", 300 "third_party/tvcm/src/tvcm/images/ui-states.png",
301 ] 301 ]
302 302
303 # TODO: ideally this would go into the target_gen_dir, but this requires some 303 # TODO: ideally this would go into the target_gen_dir, but this requires some
304 # changes to the scripts that process them. 304 # changes to the scripts that process them.
305 output_resource_dir = "$root_gen_dir/content/browser/tracing" 305 output_resource_dir = "$root_gen_dir/content/browser/tracing"
306 306
307 action("generate_about_tracing") { 307 action("generate_about_tracing") {
308 script = "trace_viewer/build/generate_about_tracing_contents" 308 script = "trace_viewer/build/generate_about_tracing_contents"
309 309
310 source_prereqs = tracing_html_files + tracing_css_files + tracing_js_files + 310 inputs = tracing_html_files + tracing_css_files + tracing_js_files +
311 tracing_img_files 311 tracing_img_files
312 outputs = [ 312 outputs = [
313 "$output_resource_dir/about_tracing.js", 313 "$output_resource_dir/about_tracing.js",
314 "$output_resource_dir/about_tracing.html", 314 "$output_resource_dir/about_tracing.html",
315 ] 315 ]
316 316
317 args = [ 317 args = [
318 "--outdir", rebase_path(output_resource_dir, root_build_dir), 318 "--outdir", rebase_path(output_resource_dir, root_build_dir),
319 ] 319 ]
320 } 320 }
OLDNEW
« no previous file with comments | « build/secondary/chrome/BUILD.gn ('k') | build/secondary/tools/grit/grit_rule.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698