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

Side by Side Diff: build/secondary/tools/grit/BUILD.gn

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years 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
« no previous file with comments | « build/secondary/third_party/icu/BUILD.gn ('k') | build/secondary/tools/grit/repack.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 # This target creates a stamp file that depends on all the sources in the grit 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 6 # directory. By depending on this, a target can force itself to be rebuilt if
7 # grit itself changes. 7 # grit itself changes.
8 action("grit_sources") { 8 action("grit_sources") {
9 depfile = "$target_out_dir/grit_sources.d" 9 depfile = "$target_out_dir/grit_sources.d"
10 script = "//build/secondary/tools/grit/stamp_grit_sources.py" 10 script = "//build/secondary/tools/grit/stamp_grit_sources.py"
11 11
12 inputs = [ 12 inputs = [
13 "grit.py", 13 "grit.py",
14 ] 14 ]
15 15
16 # Note that we can't call this "grit_sources.stamp" because that file is 16 # Note that we can't call this "grit_sources.stamp" because that file is
17 # implicitly created by GN for script actions. 17 # implicitly created by GN for script actions.
18 outputs = [ "$target_out_dir/grit_sources.script.stamp" ] 18 outputs = [
19 "$target_out_dir/grit_sources.script.stamp",
20 ]
19 21
20 args = [ 22 args = [
21 rebase_path("//tools/grit", root_build_dir), 23 rebase_path("//tools/grit", root_build_dir),
22 rebase_path(outputs[0], root_build_dir), 24 rebase_path(outputs[0], root_build_dir),
23 rebase_path(depfile, root_build_dir), 25 rebase_path(depfile, root_build_dir),
24 ] 26 ]
25 } 27 }
OLDNEW
« no previous file with comments | « build/secondary/third_party/icu/BUILD.gn ('k') | build/secondary/tools/grit/repack.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698