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

Side by Side Diff: chrome/chrome_tests_unit.gypi

Issue 725173003: Disable incremental linking on win x64 unit_tests, causing link failures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
« 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 2012 The Chromium Authors. All rights reserved. 1 # Copyright 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 'variables': { 5 'variables': {
6 'chrome_unit_tests_sources': [ 6 'chrome_unit_tests_sources': [
7 '../apps/saved_files_service_unittest.cc', 7 '../apps/saved_files_service_unittest.cc',
8 '../components/autofill/content/renderer/test_password_autofill_agent.cc', 8 '../components/autofill/content/renderer/test_password_autofill_agent.cc',
9 '../components/autofill/content/renderer/test_password_autofill_agent.h', 9 '../components/autofill/content/renderer/test_password_autofill_agent.h',
10 '../components/autofill/content/renderer/test_password_generation_agent.cc ', 10 '../components/autofill/content/renderer/test_password_generation_agent.cc ',
(...skipping 1944 matching lines...) Expand 10 before | Expand all | Expand 10 after
1955 '../ui/resources/ui_resources.gyp:ui_resources', 1955 '../ui/resources/ui_resources.gyp:ui_resources',
1956 'chrome_resources.gyp:chrome_resources', 1956 'chrome_resources.gyp:chrome_resources',
1957 'chrome_resources.gyp:chrome_strings', 1957 'chrome_resources.gyp:chrome_strings',
1958 ], 1958 ],
1959 'include_dirs': [ 1959 'include_dirs': [
1960 '..', 1960 '..',
1961 ], 1961 ],
1962 'msvs_settings': { 1962 'msvs_settings': {
1963 'VCLinkerTool': { 1963 'VCLinkerTool': {
1964 'conditions': [ 1964 'conditions': [
1965 ['incremental_chrome_dll==1', { 1965 # Incremental linking on x64 causes LNK1248.
1966 ['incremental_chrome_dll==1 and target_arch!="x64"', {
1966 'UseLibraryDependencyInputs': "true", 1967 'UseLibraryDependencyInputs': "true",
1967 }], 1968 }],
1968 ], 1969 ],
1969 }, 1970 },
1970 }, 1971 },
1971 'sources': [ '<@(chrome_unit_tests_sources)' ], 1972 'sources': [ '<@(chrome_unit_tests_sources)' ],
1972 'conditions': [ 1973 'conditions': [
1973 ['OS!="ios"', { 1974 ['OS!="ios"', {
1974 'dependencies': [ 1975 'dependencies': [
1975 '../components/components.gyp:autofill_content_test_support', 1976 '../components/components.gyp:autofill_content_test_support',
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after
2935 'dependencies': [ 2936 'dependencies': [
2936 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2937 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2937 ], 2938 ],
2938 }], 2939 }],
2939 ], 2940 ],
2940 }, 2941 },
2941 ], 2942 ],
2942 }], 2943 }],
2943 ], # 'conditions' 2944 ], # 'conditions'
2944 } 2945 }
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