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

Side by Side Diff: webkit/webkit.gyp

Issue 173565: Avoid gcc 4.4 plugin crash by using -O1 instead of -O2 for webkit glue. (Closed)
Patch Set: Created 11 years, 3 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
« no previous file with comments | « no previous file | no next file » | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 'feature_defines': [ 7 'feature_defines': [
8 'ENABLE_CHANNEL_MESSAGING=1', 8 'ENABLE_CHANNEL_MESSAGING=1',
9 'ENABLE_DATABASE=1', 9 'ENABLE_DATABASE=1',
10 'ENABLE_DATAGRID=0', 10 'ENABLE_DATAGRID=0',
(...skipping 1467 matching lines...) Expand 10 before | Expand all | Expand 10 after
1478 ], 1478 ],
1479 # When glue is a dependency, it needs to be a hard dependency. 1479 # When glue is a dependency, it needs to be a hard dependency.
1480 # Dependents may rely on files generated by this target or one of its 1480 # Dependents may rely on files generated by this target or one of its
1481 # own hard dependencies. 1481 # own hard dependencies.
1482 'hard_dependency': 1, 1482 'hard_dependency': 1,
1483 'export_dependent_settings': [ 1483 'export_dependent_settings': [
1484 'webcore', 1484 'webcore',
1485 ], 1485 ],
1486 'conditions': [ 1486 'conditions': [
1487 ['OS=="linux"', { 1487 ['OS=="linux"', {
1488 # Avoid gcc 4.4 plugin crash. See http://crbug.com/20045 for details.
1489 'conditions': [
1490 [ 'gcc_version=="44"', {
1491 'cflags!': [
1492 '-O2',
1493 ],
1494 'cflags': [
1495 '-O1',
1496 ],
1497 }],
1498 ],
1488 'dependencies': [ 1499 'dependencies': [
1489 '../build/linux/system.gyp:gtk', 1500 '../build/linux/system.gyp:gtk',
1490 '../base/base.gyp:linux_versioninfo', 1501 '../base/base.gyp:linux_versioninfo',
1491 ], 1502 ],
1492 'export_dependent_settings': [ 1503 'export_dependent_settings': [
1493 # Users of webcursor.h need the GTK include path. 1504 # Users of webcursor.h need the GTK include path.
1494 '../build/linux/system.gyp:gtk', 1505 '../build/linux/system.gyp:gtk',
1495 ], 1506 ],
1496 'sources!': [ 1507 'sources!': [
1497 'glue/plugins/plugin_stubs.cc', 1508 'glue/plugins/plugin_stubs.cc',
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
1645 }, 1656 },
1646 ], 1657 ],
1647 'conditions': [ 1658 'conditions': [
1648 ['OS=="win"', { 1659 ['OS=="win"', {
1649 'dependencies': ['../build/win/system.gyp:cygwin'], 1660 'dependencies': ['../build/win/system.gyp:cygwin'],
1650 }], 1661 }],
1651 ], 1662 ],
1652 }, 1663 },
1653 ], 1664 ],
1654 } 1665 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698