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

Side by Side Diff: chrome/chrome_browser.gypi

Issue 4638003: Add gxx_version (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Use g++ rather than gxx in comments Created 10 years, 1 month 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 | « build/cxx_compiler_version.py ('k') | 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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'browser', 8 'target_name': 'browser',
9 'type': '<(library)', 9 'type': '<(library)',
10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', 10 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA',
(...skipping 4128 matching lines...) Expand 10 before | Expand all | Expand 10 after
4139 '../third_party/protobuf/protobuf.gyp:protoc', 4139 '../third_party/protobuf/protobuf.gyp:protoc',
4140 ], 4140 ],
4141 'action': [ 4141 'action': [
4142 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFI X)', 4142 '<(PRODUCT_DIR)/<(EXECUTABLE_PREFIX)protoc<(EXECUTABLE_SUFFI X)',
4143 'browser/metrics/system_metrics.proto', 4143 'browser/metrics/system_metrics.proto',
4144 '--cpp_out=<(INTERMEDIATE_DIR)/chrome', 4144 '--cpp_out=<(INTERMEDIATE_DIR)/chrome',
4145 ], 4145 ],
4146 }, 4146 },
4147 ], 4147 ],
4148 }], 4148 }],
4149 ['OS=="linux" and gcc_version==45', { 4149 ['OS=="linux" and gxx_version==45', {
4150 # Avoid gcc 4.5 miscompilation of template_url.cc 4150 # Avoid g++ 4.5 miscompilation of template_url.cc
4151 # as per http://crbug.com/41887 4151 # as per http://crbug.com/41887
4152 'cflags': [ 4152 'cflags': [
4153 '-fno-ipa-cp', 4153 '-fno-ipa-cp',
4154 ], 4154 ],
4155 }], 4155 }],
4156 ], 4156 ],
4157 # Exclude files that should be excluded for all non-Windows platforms. 4157 # Exclude files that should be excluded for all non-Windows platforms.
4158 'sources!': [ 4158 'sources!': [
4159 'browser/accessibility/browser_accessibility_win.cc', 4159 'browser/accessibility/browser_accessibility_win.cc',
4160 'browser/accessibility/browser_accessibility_win.h', 4160 'browser/accessibility/browser_accessibility_win.h',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
4315 ], 4315 ],
4316 }, 4316 },
4317 ], 4317 ],
4318 } 4318 }
4319 4319
4320 # Local Variables: 4320 # Local Variables:
4321 # tab-width:2 4321 # tab-width:2
4322 # indent-tabs-mode:nil 4322 # indent-tabs-mode:nil
4323 # End: 4323 # End:
4324 # vim: set expandtab tabstop=2 shiftwidth=2: 4324 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « build/cxx_compiler_version.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698