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

Side by Side Diff: third_party/brotli/brotli.gni

Issue 1956893002: Added brotli enc/ and tools/ directories. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated to most recent build tools Created 4 years, 7 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 | « third_party/brotli/README.chromium ('k') | third_party/brotli/dec/Makefile » ('j') | 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 2016 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 import("//build/compiled_action.gni")
6
7 # Compresses a file with brotli.
8 #
9 # Variables
10 # input_file: Path to input file.
11 # output_file: Path to output file.
12 #
13 template("compress_file_brotli") {
14 compiled_action(target_name) {
15 forward_variables_from(invoker,
16 [
17 "deps",
18 "testonly",
19 ])
20 tool = "//third_party/brotli:bro"
21 inputs = [
22 invoker.input_file,
23 ]
24 outputs = [
25 invoker.output_file,
26 ]
27 args = [
28 "--force",
29 "--input",
30 rebase_path(invoker.input_file, root_build_dir),
31 "--output",
32 rebase_path(invoker.output_file, root_build_dir),
33 ]
34 }
35 }
OLDNEW
« no previous file with comments | « third_party/brotli/README.chromium ('k') | third_party/brotli/dec/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698