forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.gn
121 lines (98 loc) · 3.01 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
# 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("//build/config/python.gni")
import("//components/safe_browsing/buildflags.gni")
import("//printing/buildflags/buildflags.gni")
import("//tools/grit/grit_rule.gni")
if (is_android) {
import("//build/config/android/rules.gni")
}
about_credits_file = "$target_gen_dir/about_credits.html"
group("resources") {
public_deps = [
":components_resources",
":components_scaled_resources",
":dev_ui_components_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",
"safe_browsing_mode=$safe_browsing_mode",
"is_fuchsia=$is_fuchsia",
]
deps = [ ":about_credits" ]
if (!is_ios) {
deps += [ "//components/resources/ssl/ssl_error_assistant:make_ssl_error_assistant_protobuf" ]
}
# TODO(crbug/1056278): Enable this on Fuchsia
if (safe_browsing_mode > 0 && !is_fuchsia) {
deps +=
[ "//components/safe_browsing/core/resources:make_file_types_protobuf" ]
}
}
grit("dev_ui_components_resources") {
source = "dev_ui_components_resources.grd"
outputs = [
"grit/dev_ui_components_resources.h",
"dev_ui_components_resources.pak",
]
output_dir = "$root_gen_dir/components"
}
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"
}
# TODO(crbug.com/1112471): Get this to run cleanly under Python 3.
python2_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),
]
}
if (is_android) {
source_set("android_resources") {
sources = [
"android/blocked_content_resource_id.h",
"android/page_info_resource_id.h",
"android/permissions_resource_id.h",
"android/sms_resource_id.h",
"android/theme_resources.h",
"android/webxr_resource_id.h",
]
public_deps = [ "//device/vr/buildflags" ]
}
}