| Index: content/common/BUILD.gn
|
| diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
|
| index 6bf0f6417f56455b0b10e982cb0be2eb4b599994..9ca66d2428bf3aa2a2ebe2609743ecf7f47dea54 100644
|
| --- a/content/common/BUILD.gn
|
| +++ b/content/common/BUILD.gn
|
| @@ -130,7 +130,10 @@ source_set("common") {
|
| ".",
|
| "//content")
|
|
|
| - configs += [ "//content:content_implementation" ]
|
| + configs += [
|
| + "//content:content_implementation",
|
| + "//build/config/compiler:no_size_t_to_int_warning",
|
| + ]
|
|
|
| public_deps = [
|
| "//gpu/command_buffer/common",
|
| @@ -453,6 +456,11 @@ source_set("common") {
|
| ]
|
| }
|
| }
|
| +
|
| + if (is_win && cpu_arch == "x64") {
|
| + # TODO(jschuh): Remove this after crbug.com/173851 gets fixed.
|
| + cflags = [ "/bigobj" ]
|
| + }
|
| }
|
|
|
| mojom("mojo_bindings") {
|
|
|