Skip to content
Snippets Groups Projects
Commit 37f95c0b authored by nsylvain@chromium.org's avatar nsylvain@chromium.org
Browse files

Don't build using GPO for the tests EXEs we build during

our official build.

BUG=none
Review URL: http://codereview.chromium.org/6034011

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70195 0039d316-1c4b-4281-b951-d872f2087c98
parent b71d82c8
No related merge requests found
......@@ -250,6 +250,17 @@
'test/automated_ui_tests/automated_ui_tests.h',
],
'conditions': [
['OS=="win" and buildtype=="Official"', {
'configurations': {
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'false',
},
},
},
},
},],
['OS=="linux"', {
'dependencies': [
'../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
......@@ -2405,6 +2416,17 @@
'test/startup/startup_test.cc',
],
'conditions': [
['OS=="win" and buildtype=="Official"', {
'configurations': {
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'false',
},
},
},
},
},],
['OS=="linux"', {
'dependencies': [
'../build/linux/system.gyp:gtk',
......@@ -2481,6 +2503,17 @@
'test/reliability/run_all_unittests.cc',
],
'conditions': [
['OS=="win" and buildtype=="Official"', {
'configurations': {
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'false',
},
},
},
},
},],
['OS=="win" and win_use_allocator_shim==1', {
'dependencies': [
'<(allocator_target)',
......@@ -2521,6 +2554,17 @@
'test/page_cycler/page_cycler_test.cc',
],
'conditions': [
['OS=="win" and buildtype=="Official"', {
'configurations': {
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'false',
},
},
},
},
},],
['OS=="linux"', {
'dependencies': [
'../build/linux/system.gyp:gtk',
......
......@@ -222,6 +222,17 @@
}],
],
}],
['OS=="win" and buildtype=="Official"', {
'configurations': {
'Release': {
'msvs_settings': {
'VCCLCompilerTool': {
'WholeProgramOptimization': 'false',
},
},
},
},
},],
['OS=="win"', {
'link_settings': {
'libraries': [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment