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

Side by Side Diff: components/data_reduction_proxy/core/common/version.gni

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 | « components/bookmarks/common/android/BUILD.gn ('k') | components/domain_reliability/BUILD.gn » ('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 # Runs the version processing script over the given template file to produce 5 # Runs the version processing script over the given template file to produce
6 # an output file. This is used for generating various forms of files that 6 # an output file. This is used for generating various forms of files that
7 # incorporate the product name and version. 7 # incorporate the product name and version.
8 # 8 #
9 # This template automatically includes VERSION, 9 # This template automatically includes VERSION,
10 # 10 #
(...skipping 21 matching lines...) Expand all
32 } 32 }
33 script = "//build/util/version.py" 33 script = "//build/util/version.py"
34 34
35 version_path = "//chrome/VERSION" 35 version_path = "//chrome/VERSION"
36 36
37 inputs = [ 37 inputs = [
38 version_path, 38 version_path,
39 invoker.source, 39 invoker.source,
40 ] 40 ]
41 41
42 outputs = [ invoker.output ] 42 outputs = [
43 invoker.output,
44 ]
43 45
44 args = [ 46 args = [
45 "-f", 47 "-f",
46 rebase_path(version_path, root_build_dir), 48 rebase_path(version_path, root_build_dir),
47 rebase_path(invoker.source, root_build_dir), 49 rebase_path(invoker.source, root_build_dir),
48 rebase_path(invoker.output, root_build_dir), 50 rebase_path(invoker.output, root_build_dir),
49 ] 51 ]
50 } 52 }
51 } 53 }
OLDNEW
« no previous file with comments | « components/bookmarks/common/android/BUILD.gn ('k') | components/domain_reliability/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698