forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.gn
81 lines (66 loc) · 1.8 KB
/
BUILD.gn
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2014 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/config/android/config.gni")
import("//printing/buildflags/buildflags.gni")
import("//tools/grit/grit_rule.gni")
about_credits_file = "$target_gen_dir/about_credits.html"
group("resources") {
public_deps = [
":components_resources",
":components_scaled_resources",
]
}
grit("components_resources") {
source = "components_resources.grd"
inputs = [
about_credits_file,
]
outputs = [
"grit/components_resources.h",
"components_resources.pak",
]
output_dir = "$root_gen_dir/components"
use_brotli = true
grit_flags = [
"-E",
"about_credits_file=" + rebase_path(about_credits_file, root_build_dir),
]
defines = [
"enable_basic_printing=$enable_basic_printing",
"enable_print_preview=$enable_print_preview",
]
deps = [
":about_credits",
]
}
grit("components_scaled_resources") {
source = "components_scaled_resources.grd"
outputs = [
"grit/components_scaled_resources.h",
"grit/components_scaled_resources_map.cc",
"grit/components_scaled_resources_map.h",
"components_resources_100_percent.pak",
"components_resources_200_percent.pak",
"components_resources_300_percent.pak",
]
output_dir = "$root_gen_dir/components"
}
action("about_credits") {
script = "//tools/licenses.py"
depfile = "$target_gen_dir/$target_name.d"
inputs = [
"../about_ui/resources/about_credits.tmpl",
"../about_ui/resources/about_credits_entry.tmpl",
]
outputs = [
about_credits_file,
]
args = [
"--target-os=$target_os",
"--depfile",
rebase_path(depfile, root_build_dir),
"credits",
rebase_path(about_credits_file, root_build_dir),
]
}