| Index: third_party/re2/BUILD.gn
|
| diff --git a/third_party/re2/BUILD.gn b/third_party/re2/BUILD.gn
|
| index f33fbd33109f52d0d3fbbb3e3809dec42c6b4f3f..e77aad25e5f899bdfdc886996222e47be5d9aa4c 100644
|
| --- a/third_party/re2/BUILD.gn
|
| +++ b/third_party/re2/BUILD.gn
|
| @@ -59,8 +59,8 @@ static_library("re2") {
|
| "util/util.h",
|
| ]
|
|
|
| - configs -= "//build/config/compiler:chromium_code"
|
| - configs += "//build/config/compiler:no_chromium_code"
|
| + configs -= [ "//build/config/compiler:chromium_code" ]
|
| + configs += [ "//build/config/compiler:no_chromium_code" ]
|
| direct_dependent_configs = [ ":re2_config" ]
|
|
|
| deps = [
|
| @@ -70,6 +70,6 @@ static_library("re2") {
|
| if (is_win) {
|
| include_dirs = [ "mswin" ]
|
| } else {
|
| - sources -= "mswin/stdint.h"
|
| + sources -= [ "mswin/stdint.h" ]
|
| }
|
| }
|
|
|