-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.gn
105 lines (85 loc) · 2.56 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
# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/buildflag_header.gni")
import("//build/config/cast.gni")
import("//build/config/chrome_build.gni")
import("//build/config/chromeos/args.gni")
import("//build/config/chromeos/ui_mode.gni")
import("//build/config/features.gni")
import("//build/util/process_version.gni")
import("//build_overrides/build.gni")
source_set("buildflag_header_h") {
sources = [ "buildflag.h" ]
}
buildflag_header("branding_buildflags") {
header = "branding_buildflags.h"
if (is_chrome_branded) {
flags = [
"CHROMIUM_BRANDING=0",
"GOOGLE_CHROME_BRANDING=1",
]
} else {
flags = [
"CHROMIUM_BRANDING=1",
"GOOGLE_CHROME_BRANDING=0",
]
}
if (is_chrome_for_testing) {
assert(!is_chrome_branded,
"`is_chrome_for_testing` is incompatible with `is_chrome_branded`")
flags += [ "CHROME_FOR_TESTING=1" ]
} else {
flags += [ "CHROME_FOR_TESTING=0" ]
}
# Note: `GOOGLE_CHROME_FOR_TESTING_BRANDING` and `CHROMIUM_BRANDING` are not
# mutually exclusive.
if (is_chrome_for_testing_branded) {
assert(is_chrome_for_testing,
"`is_chrome_for_testing_branded` requires `is_chrome_for_testing`")
flags += [ "GOOGLE_CHROME_FOR_TESTING_BRANDING=1" ]
} else {
flags += [ "GOOGLE_CHROME_FOR_TESTING_BRANDING=0" ]
}
}
buildflag_header("blink_buildflags") {
header = "blink_buildflags.h"
flags = [ "USE_BLINK=$use_blink" ]
}
buildflag_header("chromecast_buildflags") {
header = "chromecast_buildflags.h"
flags = [
"IS_CASTOS=$is_castos",
"IS_CAST_ANDROID=$is_cast_android",
"ENABLE_CAST_RECEIVER=$enable_cast_receiver",
]
}
buildflag_header("chromeos_buildflags") {
header = "chromeos_buildflags.h"
flags = [
"IS_CHROMEOS_DEVICE=$is_chromeos_device",
"IS_CHROMEOS_LACROS=$is_chromeos_lacros",
"IS_CHROMEOS_ASH=$is_chromeos_ash",
"IS_CHROMEOS_WITH_HW_DETAILS=$is_chromeos_with_hw_details",
"IS_REVEN=$is_reven",
]
}
buildflag_header("robolectric_buildflags") {
header = "robolectric_buildflags.h"
flags = [ "IS_ROBOLECTRIC=$is_robolectric" ]
}
if (build_with_chromium) {
group("gold_common_pytype") {
testonly = true
data = [ "//build/skia_gold_common/" ]
data_deps = [ "//testing:pytype_dependencies" ]
}
}
if (is_chromeos) {
process_version("version_metadata") {
sources = [ "//chrome/VERSION" ]
template_file = "metadata.json.in"
output = "$root_out_dir/metadata.json"
process_only = true
}
}