mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
11 lines
242 B
Plaintext
11 lines
242 B
Plaintext
config("compiler") {
|
|
if (is_win) {
|
|
if (is_component_build) {
|
|
cflags += [
|
|
"/EHsc", # Assume C functions can't throw exceptions and don't catch
|
|
# structured exceptions (only C++ ones).
|
|
]
|
|
}
|
|
}
|
|
}
|