| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 declare_args() { | 7 declare_args() { |
| 8 # When set, turns off the (normally-on) iterator debugging and related stuff | 8 # When set, turns off the (normally-on) iterator debugging and related stuff |
| 9 # that is normall turned on for Debug builds. These are generally useful for | 9 # that is normally turned on for Debug builds. These are generally useful for |
| 10 # catching bugs but in some cases may cause conflicts or excessive slowness. | 10 # catching bugs but in some cases may cause conflicts or excessive slowness. |
| 11 disable_iterator_debugging = false | 11 disable_iterator_debugging = false |
| 12 } | 12 } |
| 13 | 13 |
| 14 # TODO(brettw) Most of these should be removed. Instead of global feature | 14 # TODO(brettw) Most of these should be removed. Instead of global feature |
| 15 # flags, we should have more modular flags that apply only to a target and its | 15 # flags, we should have more modular flags that apply only to a target and its |
| 16 # dependents. For example, depending on the "x11" meta-target should define | 16 # dependents. For example, depending on the "x11" meta-target should define |
| 17 # USE_X11 for all dependents so that everything that could use X11 gets the | 17 # USE_X11 for all dependents so that everything that could use X11 gets the |
| 18 # define, but anything that doesn't depend on X11 doesn't see it. | 18 # define, but anything that doesn't depend on X11 doesn't see it. |
| 19 # | 19 # |
| (...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "CoreText.framework", | 158 "CoreText.framework", |
| 159 "Foundation.framework", | 159 "Foundation.framework", |
| 160 "UIKit.framework", | 160 "UIKit.framework", |
| 161 ] | 161 ] |
| 162 } else if (is_linux) { | 162 } else if (is_linux) { |
| 163 libs = [ | 163 libs = [ |
| 164 "dl", | 164 "dl", |
| 165 ] | 165 ] |
| 166 } | 166 } |
| 167 } | 167 } |
| OLD | NEW |