| 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/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| 11 # When set, turns off the (normally-on) iterator debugging and related stuff | 11 # When set, turns off the (normally-on) iterator debugging and related stuff |
| 12 # that is normally turned on for Debug builds. These are generally useful for | 12 # that is normally turned on for Debug builds. These are generally useful for |
| 13 # catching bugs but in some cases may cause conflicts or excessive slowness. | 13 # catching bugs but in some cases may cause conflicts or excessive slowness. |
| 14 disable_iterator_debugging = false | 14 disable_iterator_debugging = false |
| 15 | 15 |
| 16 # Set to true to force deterministic builds (this isn't working yet but this | 16 # Set to true to not store any build metadata (this isn't working yet but |
| 17 # flag will help us to get there). See http://crbug.com/314403. | 17 # this flag will help us to get there). See http://crbug.com/314403. |
| 18 # TODO(sebmarchand): Update this comment once this flag guarantee a | 18 # TODO(sebmarchand): Update this comment once this flag guarantee that |
| 19 # deterministic build. | 19 # there's no build metadata in the build artifacts. |
| 20 force_deterministic_build = false | 20 dont_embed_build_metadata = false |
| 21 } | 21 } |
| 22 | 22 |
| 23 # TODO(brettw) Most of these should be removed. Instead of global feature | 23 # TODO(brettw) Most of these should be removed. Instead of global feature |
| 24 # flags, we should have more modular flags that apply only to a target and its | 24 # flags, we should have more modular flags that apply only to a target and its |
| 25 # dependents. For example, depending on the "x11" meta-target should define | 25 # dependents. For example, depending on the "x11" meta-target should define |
| 26 # USE_X11 for all dependents so that everything that could use X11 gets the | 26 # USE_X11 for all dependents so that everything that could use X11 gets the |
| 27 # define, but anything that doesn't depend on X11 doesn't see it. | 27 # define, but anything that doesn't depend on X11 doesn't see it. |
| 28 # | 28 # |
| 29 # For now we define these globally to match the current GYP build. | 29 # For now we define these globally to match the current GYP build. |
| 30 config("feature_flags") { | 30 config("feature_flags") { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 } | 70 } |
| 71 if (enable_printing > 0) { | 71 if (enable_printing > 0) { |
| 72 defines += [ "ENABLE_PRINTING=1" ] | 72 defines += [ "ENABLE_PRINTING=1" ] |
| 73 if (enable_printing < 2) { | 73 if (enable_printing < 2) { |
| 74 defines += [ "ENABLE_FULL_PRINTING=1" ] | 74 defines += [ "ENABLE_FULL_PRINTING=1" ] |
| 75 } | 75 } |
| 76 } | 76 } |
| 77 if (enable_spellcheck) { | 77 if (enable_spellcheck) { |
| 78 defines += [ "ENABLE_SPELLCHECK=1" ] | 78 defines += [ "ENABLE_SPELLCHECK=1" ] |
| 79 } | 79 } |
| 80 if (force_deterministic_build) { | 80 if (dont_embed_build_metadata) { |
| 81 defines += [ "FORCE_DETERMINISTIC_BUILD" ] | 81 defines += [ "DONT_EMBED_BUILD_METADATA" ] |
| 82 } | 82 } |
| 83 if (use_udev) { | 83 if (use_udev) { |
| 84 # TODO(brettw) should probably be "=1". | 84 # TODO(brettw) should probably be "=1". |
| 85 defines += [ "USE_UDEV" ] | 85 defines += [ "USE_UDEV" ] |
| 86 } | 86 } |
| 87 if (toolkit_views) { | 87 if (toolkit_views) { |
| 88 defines += [ "TOOLKIT_VIEWS=1" ] | 88 defines += [ "TOOLKIT_VIEWS=1" ] |
| 89 } | 89 } |
| 90 if (ui_compositor_image_transport) { | 90 if (ui_compositor_image_transport) { |
| 91 # TODO(brettw) should probably be "=1". | 91 # TODO(brettw) should probably be "=1". |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 "CoreText.framework", | 234 "CoreText.framework", |
| 235 "Foundation.framework", | 235 "Foundation.framework", |
| 236 "UIKit.framework", | 236 "UIKit.framework", |
| 237 ] | 237 ] |
| 238 } else if (is_linux) { | 238 } else if (is_linux) { |
| 239 libs = [ | 239 libs = [ |
| 240 "dl", | 240 "dl", |
| 241 ] | 241 ] |
| 242 } | 242 } |
| 243 } | 243 } |
| OLD | NEW |