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/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/chrome_build.gni") | |
7 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
10 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
11 | 10 |
12 declare_args() { | 11 declare_args() { |
13 # When set, turns off the (normally-on) iterator debugging and related stuff | 12 # When set, turns off the (normally-on) iterator debugging and related stuff |
14 # that is normally turned on for Debug builds. These are generally useful for | 13 # that is normally turned on for Debug builds. These are generally useful for |
15 # catching bugs but in some cases may cause conflicts or excessive slowness. | 14 # catching bugs but in some cases may cause conflicts or excessive slowness. |
16 disable_iterator_debugging = false | 15 disable_iterator_debugging = false |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 "CoreFoundation.framework", | 338 "CoreFoundation.framework", |
340 "CoreGraphics.framework", | 339 "CoreGraphics.framework", |
341 "CoreText.framework", | 340 "CoreText.framework", |
342 "Foundation.framework", | 341 "Foundation.framework", |
343 "UIKit.framework", | 342 "UIKit.framework", |
344 ] | 343 ] |
345 } else if (is_linux) { | 344 } else if (is_linux) { |
346 libs = [ "dl" ] | 345 libs = [ "dl" ] |
347 } | 346 } |
348 } | 347 } |
OLD | NEW |