blob: 04e48f1b9a8f33a2f6929b94740a14b1fe93069d [file] [log] [blame]
Daniel Erata7e61032010-09-13 14:41:40 -07001# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
2# Distributed under the terms of the GNU General Public License v2
3
4#
5# Original Author: The Chromium OS Authors <chromium-os-dev@chromium.org>
6# Purpose: Set -DNDEBUG if the cros-debug USE flag is not defined.
7#
8
9inherit flag-o-matic
10
11IUSE="cros-debug"
12
13cros-debug-add-NDEBUG() {
14 use cros-debug || append-flags -DNDEBUG
15}