blob: e07dd83cb2c1b8097ed35156f5aed02dca5228cd (
plain) (
blame)
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
|
--- chrome/BUILD.gn.orig 2017-09-05 21:05:11.000000000 +0200
+++ chrome/BUILD.gn 2017-09-06 17:18:59.694120000 +0200
@@ -165,7 +165,7 @@
]
data += [ "$root_out_dir/resources.pak" ]
- if (is_linux || is_win) {
+ if (is_linux || is_bsd || is_win) {
data += [
"$root_out_dir/chrome_100_percent.pak",
"$root_out_dir/locales/en-US.pak",
@@ -245,7 +245,7 @@
}
}
- if (is_linux) {
+ if (is_linux || is_bsd) {
sources += [
"app/chrome_dll_resource.h",
"app/chrome_main.cc",
@@ -1783,7 +1783,7 @@
}
}
-if (is_linux) {
+if (is_linux || is_bsd) {
action("manpage") {
if (is_chrome_branded) {
name = "Google Chrome"
|