Home | History | Annotate | Download | only in grit
      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
      3 # found in the LICENSE file.
      4 
      5 # This target creates a stamp file that depends on all the sources in the grit
      6 # directory. By depending on this, a target can force itself to be rebuilt if
      7 # grit itself changes.
      8 action("grit_sources") {
      9   depfile = "$target_out_dir/grit_sources.d"
     10   script = "//build/secondary/tools/grit/stamp_grit_sources.py"
     11 
     12   inputs = [ "grit.py" ]
     13 
     14   # Note that we can't call this "grit_sources.stamp" because that file is
     15   # implicitly created by GN for script actions.
     16   outputs = [ "$target_out_dir/grit_sources.script.stamp" ]
     17 
     18   args = [
     19     rebase_path("//tools/grit", root_build_dir),
     20     rebase_path(outputs[0], root_build_dir),
     21     rebase_path(depfile, root_build_dir)
     22   ]
     23 }
     24