Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 Google Inc. | |
| 2 # | |
| 3 # Use of this source code is governed by a BSD-style license that can be | |
| 4 # found in the LICENSE file. | |
| 5 | |
| 6 declare_args() { | |
| 7 } | |
| 8 | |
| 9 # Chrome's GN environment sets up a bunch of default configs we don't need/want here. | |
| 10 unwanted_configs = [ | |
| 11 "//build/config/clang:extra_warnings", | |
| 12 "//build/config/clang:find_bad_constructs", | |
| 13 "//build/config/compiler:chromium_code", | |
| 14 "//build/config:feature_flags", | |
| 15 ] | |
| OLD | NEW |