| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |