Home | History | Annotate | Download | only in tracing
      1 # Copyright (c) 2013 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   'includes': [
      7     'trace_viewer.gypi',
      8   ],
      9   'targets': [
     10     {
     11       'target_name': 'generate_about_tracing',
     12       'type': 'none',
     13       'actions': [
     14         {
     15           'action_name': 'generate_about_tracing',
     16           'script_name': 'bin/generate_about_tracing_contents',
     17           'inputs': [
     18             '<@(tracing_files)',
     19           ],
     20           'outputs': [
     21             '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/about_tracing.js',
     22             '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing/about_tracing.html'
     23           ],
     24           'action': ['python', '<@(_script_name)',
     25                      '--outdir', '<(SHARED_INTERMEDIATE_DIR)/content/browser/tracing']
     26         }
     27       ]
     28     }
     29   ]
     30 }
     31