Commit 259ab537 authored by tzik@chromium.org's avatar tzik@chromium.org

Drop unneeded warning suppression on mac

BUG=162783

Review URL: https://codereview.chromium.org/400873003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@285578 0039d316-1c4b-4281-b951-d872f2087c98
parent 6c324da4
...@@ -3999,7 +3999,6 @@ ...@@ -3999,7 +3999,6 @@
['OS=="mac"', { ['OS=="mac"', {
'cflags': [ 'cflags': [
'-mllvm -asan-globals=0', # http://crbug.com/352073 '-mllvm -asan-globals=0', # http://crbug.com/352073
'-Wno-error=unused-function', # http://crbug.com/162783
], ],
}], }],
], ],
...@@ -4019,13 +4018,6 @@ ...@@ -4019,13 +4018,6 @@
], ],
}], }],
], ],
'conditions': [
['OS=="mac"', {
'cflags': [
'-Wno-error=unused-function', # http://crbug.com/162783
],
}],
],
}], }],
['ubsan_vptr==1', { ['ubsan_vptr==1', {
'target_conditions': [ 'target_conditions': [
...@@ -4048,13 +4040,6 @@ ...@@ -4048,13 +4040,6 @@
], ],
}], }],
], ],
'conditions': [
['OS=="mac"', {
'cflags': [
'-Wno-error=unused-function', # http://crbug.com/162783
],
}],
],
}], }],
['asan_coverage!=0', { ['asan_coverage!=0', {
'target_conditions': [ 'target_conditions': [
...@@ -4638,13 +4623,6 @@ ...@@ -4638,13 +4623,6 @@
'-Wl,--warn-shared-textrel', '-Wl,--warn-shared-textrel',
'-Wl,--fatal-warnings', '-Wl,--fatal-warnings',
], ],
'conditions': [
['OS=="mac"', {
'cflags!': [
'-Wno-error=unused-function', # http://crbug.com/162783
],
}],
],
}], }],
# Settings for building host targets on mac. # Settings for building host targets on mac.
['_toolset=="host" and host_os=="mac"', { ['_toolset=="host" and host_os=="mac"', {
...@@ -4802,7 +4780,6 @@ ...@@ -4802,7 +4780,6 @@
'OTHER_CFLAGS': [ 'OTHER_CFLAGS': [
'-fsanitize=address', '-fsanitize=address',
'-mllvm -asan-globals=0', # http://crbug.com/352073 '-mllvm -asan-globals=0', # http://crbug.com/352073
'-Wno-error=unused-function', # http://crbug.com/162783
'-gline-tables-only', '-gline-tables-only',
], ],
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment