Mac: Fix creation of dSYM files for the Release target by enabling the |mac_strip_release| GYP variable which was disabled in Chromium revision 235601.
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1541 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
64294f659d
commit
dda0753fa8
6
cef.gypi
6
cef.gypi
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
|
# Copyright (c) 2013 The Chromium Embedded Framework Authors. All rights
|
||||||
# reserved. Use of this source code is governed by a BSD-style license that
|
# reserved. Use of this source code is governed by a BSD-style license that
|
||||||
# can be found in the LICENSE file.
|
# can be found in the LICENSE file.
|
||||||
|
|
||||||
|
@ -19,6 +19,10 @@
|
||||||
}, { # OS!="win"
|
}, { # OS!="win"
|
||||||
'cef_directory' : '<!(echo $CEF_DIRECTORY)',
|
'cef_directory' : '<!(echo $CEF_DIRECTORY)',
|
||||||
}],
|
}],
|
||||||
|
[ 'OS=="mac"', {
|
||||||
|
# Strip symbols and create dSYM files for the Release target.
|
||||||
|
'mac_strip_release': 1,
|
||||||
|
}],
|
||||||
]
|
]
|
||||||
}, 'conditions': [
|
}, 'conditions': [
|
||||||
['os_posix==1 and OS!="mac" and OS!="android"', {
|
['os_posix==1 and OS!="mac" and OS!="android"', {
|
||||||
|
|
Loading…
Reference in New Issue