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

Side by Side Diff: build/common.gypi

Issue 11238074: GTTF: Fix build with _GLIBCXX_DEBUG (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | chrome/browser/profiles/profile_impl.cc » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after
1561 'defines': ['USE_XI2_MT=<(use_xi2_mt)'], 1561 'defines': ['USE_XI2_MT=<(use_xi2_mt)'],
1562 }], 1562 }],
1563 ['file_manager_extension==1', { 1563 ['file_manager_extension==1', {
1564 'defines': ['FILE_MANAGER_EXTENSION=1'], 1564 'defines': ['FILE_MANAGER_EXTENSION=1'],
1565 }], 1565 }],
1566 ['profiling==1', { 1566 ['profiling==1', {
1567 'defines': ['ENABLE_PROFILING=1'], 1567 'defines': ['ENABLE_PROFILING=1'],
1568 }], 1568 }],
1569 ['OS=="linux" and glibcxx_debug==1', { 1569 ['OS=="linux" and glibcxx_debug==1', {
1570 'defines': ['_GLIBCXX_DEBUG=1',], 1570 'defines': ['_GLIBCXX_DEBUG=1',],
1571 'cflags_cc!': ['-fno-rtti'], 1571 'cflags_cc+': ['-g'],
Elliot Glaysher 2012/10/24 16:39:39 +tzik I don't understand why this was here in the
Paweł Hajdan Jr. 2012/10/24 16:50:17 Good question. There was a bug in gcc (http://gcc.
1572 'cflags_cc+': ['-frtti', '-g'],
1573 }], 1572 }],
1574 ['remoting==1', { 1573 ['remoting==1', {
1575 'defines': ['ENABLE_REMOTING=1'], 1574 'defines': ['ENABLE_REMOTING=1'],
1576 }], 1575 }],
1577 ['enable_webrtc==1', { 1576 ['enable_webrtc==1', {
1578 'defines': ['ENABLE_WEBRTC=1'], 1577 'defines': ['ENABLE_WEBRTC=1'],
1579 }], 1578 }],
1580 ['proprietary_codecs==1', { 1579 ['proprietary_codecs==1', {
1581 'defines': ['USE_PROPRIETARY_CODECS'], 1580 'defines': ['USE_PROPRIETARY_CODECS'],
1582 }], 1581 }],
(...skipping 2091 matching lines...) Expand 10 before | Expand all | Expand 10 after
3674 # settings in target dicts. SYMROOT is a special case, because many other 3673 # settings in target dicts. SYMROOT is a special case, because many other
3675 # Xcode variables depend on it, including variables such as 3674 # Xcode variables depend on it, including variables such as
3676 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 3675 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
3677 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 3676 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
3678 # files to appear (when present) in the UI as actual files and not red 3677 # files to appear (when present) in the UI as actual files and not red
3679 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 3678 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
3680 # and therefore SYMROOT, needs to be set at the project level. 3679 # and therefore SYMROOT, needs to be set at the project level.
3681 'SYMROOT': '<(DEPTH)/xcodebuild', 3680 'SYMROOT': '<(DEPTH)/xcodebuild',
3682 }, 3681 },
3683 } 3682 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/profiles/profile_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698