| Index: ios/BUILD.gn
|
| diff --git a/ios/BUILD.gn b/ios/BUILD.gn
|
| index e4dc67fbd1a9f3fd0a0aa5568884e63526e91196..59c46dacad7e63cf5b7c8e532cdafb04c8ee17fe 100644
|
| --- a/ios/BUILD.gn
|
| +++ b/ios/BUILD.gn
|
| @@ -9,8 +9,23 @@ declare_args() {
|
| # components/cronet/tools/cr_cronet.py as cronet requires specific
|
| # gn args to build correctly).
|
| is_cronet_build = false
|
| +
|
| + # TODO(brettw) bug 684096: Remove these. These are to prevent unused
|
| + # override warnings on iOS from the setting of the default_args in the
|
| + # toplevel //.gn file. Since iOS doesn't compile V8, GN complains that
|
| + # the overrides are never used.
|
| + v8_extra_library_files = []
|
| + v8_experimental_extra_library_files = []
|
| + v8_enable_gdbjit = false
|
| + v8_imminent_deprecation_warnings = false
|
| }
|
|
|
| +# Prevent warnings for unused build args above.
|
| +assert(v8_extra_library_files != 0)
|
| +assert(v8_experimental_extra_library_files != 0)
|
| +assert(!v8_enable_gdbjit)
|
| +assert(!v8_imminent_deprecation_warnings)
|
| +
|
| # This list all targets that needs to be build as part of "gn_all" on iOS.
|
| # This list should generally only include executables, but since some code
|
| # has not yet been upstreamed it will sometimes also include targets that
|
|
|