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

Side by Side Diff: build/config/zip.gni

Issue 1345733002: move zip template to a non-android-specific .gni file (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: move zip.gni up one directory Created 5 years, 3 months 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/config/android/internal_rules.gni ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 # Creates a zip archive of the inputs.
6 # If base_dir is provided, the archive paths will be relative to it.
7 template("zip") {
8 set_sources_assignment_filter([])
9 if (defined(invoker.testonly)) {
10 testonly = invoker.testonly
11 }
12
13 assert(defined(invoker.inputs))
14 assert(defined(invoker.output))
15
16 rebase_inputs = rebase_path(invoker.inputs, root_build_dir)
17 rebase_output = rebase_path(invoker.output, root_build_dir)
18 action(target_name) {
19 script = "//build/android/gn/zip.py"
20 depfile = "$target_gen_dir/$target_name.d"
21 inputs = invoker.inputs
22 outputs = [
23 depfile,
24 invoker.output,
25 ]
26 args = [
27 "--depfile",
28 rebase_path(depfile, root_build_dir),
29 "--inputs=$rebase_inputs",
30 "--output=$rebase_output",
31 ]
32 if (defined(invoker.base_dir)) {
33 args += [
34 "--base-dir",
35 rebase_path(invoker.base_dir, root_build_dir),
36 ]
37 }
38
39 if (defined(invoker.deps)) {
40 deps = invoker.deps
41 }
42 if (defined(invoker.public_deps)) {
43 public_deps = invoker.public_deps
44 }
45 if (defined(invoker.data_deps)) {
46 data_deps = invoker.data_deps
47 }
48
49 if (defined(invoker.visibility)) {
50 visibility = invoker.visibility
51 }
52 }
53 }
OLDNEW
« no previous file with comments | « build/config/android/internal_rules.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698