Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(377)

Side by Side Diff: build/config/BUILD.gn

Issue 164773005: Pull GN @ 252040, update calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: long line Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | build/config/android/config.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | build/config/android/config.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698