aboutsummaryrefslogtreecommitdiffhomepage
path: root/build.ninja
blob: 1857870d76715e3e87dab950a3bfa3d79c1ae50a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Copyright 2021 Benjamin Barenblat
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.

name = wayback_machine_button

rule generate_png
  command = inkscape -w $width -h $width -o $out $in && optipng -o7 $out
  description = Generating $out

rule minify_html
  command = minify $in | htmlmin >$out
  description = Minifying $in

rule minify_js
  command = uglifyjs $in -m --toplevel -o $out
  description = Minifying $in

rule minify_json
  command = jq -Sc . $in >$out
  description = Minifying $in

rule zip
  command = zip -qr $out $in
  description = Zipping $out

build $name/background.js: minify_js background.js
build $name/manifest.json: minify_json manifest.json
build $name/options.html: minify_html options.html
build $name/options.js: minify_js options.js
build $name/icon128.png: generate_png third_party/icon.svg
  width = 128
build $name/icon48.png: generate_png third_party/icon.svg
  width = 48
build $name/icon16.png: generate_png third_party/icon.svg
  width = 16

build icon_bordered.png: generate_png third_party/icon_bordered.svg
  width = 128
build $name.zip: zip $name/background.js $name/manifest.json $
    $name/options.html $name/options.js $name/icon128.png $name/icon48.png $
    $name/icon16.png