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

Side by Side Diff: chrome/chrome_tests.gypi

Issue 12295005: Make chrome_tests build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 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 | 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'pyautolib_sources': [ 6 'pyautolib_sources': [
7 'app/chrome_command_ids.h', 7 'app/chrome_command_ids.h',
8 'app/chrome_dll_resource.h', 8 'app/chrome_dll_resource.h',
9 'common/automation_constants.h', 9 'common/automation_constants.h',
10 'common/pref_names.cc', 10 'common/pref_names.cc',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'dependencies': [ 73 'dependencies': [
74 'chrome.gyp:crash_service_win64', # run time dependency 74 'chrome.gyp:crash_service_win64', # run time dependency
75 ], 75 ],
76 }], 76 }],
77 ['toolkit_uses_gtk == 1', { 77 ['toolkit_uses_gtk == 1', {
78 'dependencies': [ 78 'dependencies': [
79 '../build/linux/system.gyp:gtk', 79 '../build/linux/system.gyp:gtk',
80 ], 80 ],
81 }], 81 }],
82 ], 82 ],
83 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
84 'msvs_disabled_warnings': [ 4267, ],
83 }, 85 },
84 { 86 {
85 'target_name': 'automated_ui_tests', 87 'target_name': 'automated_ui_tests',
86 'type': 'executable', 88 'type': 'executable',
87 'dependencies': [ 89 'dependencies': [
88 'browser', 90 'browser',
89 'chrome_resources.gyp:theme_resources', 91 'chrome_resources.gyp:theme_resources',
90 'renderer', 92 'renderer',
91 'test_support_common', 93 'test_support_common',
92 'test_support_ui', 94 'test_support_ui',
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 ], 433 ],
432 'msvs_settings': { 434 'msvs_settings': {
433 'VCLinkerTool': { 435 'VCLinkerTool': {
434 'conditions': [ 436 'conditions': [
435 ['incremental_chrome_dll==1', { 437 ['incremental_chrome_dll==1', {
436 'UseLibraryDependencyInputs': "true", 438 'UseLibraryDependencyInputs': "true",
437 }], 439 }],
438 ], 440 ],
439 }, 441 },
440 }, 442 },
443 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
444 'msvs_disabled_warnings': [ 4267, ],
441 }, { # else: OS != "win" 445 }, { # else: OS != "win"
442 'sources!': [ 446 'sources!': [
443 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc', 447 'browser/ui/views/ssl_client_certificate_selector_browsertest.cc',
444 ], 448 ],
445 }], # OS != "win" 449 }], # OS != "win"
446 ], # conditions 450 ], # conditions
447 }, 451 },
448 { 452 {
449 # Third-party support sources for chromedriver_lib. 453 # Third-party support sources for chromedriver_lib.
450 'target_name': 'chromedriver_support', 454 'target_name': 'chromedriver_support',
(...skipping 1640 matching lines...) Expand 10 before | Expand all | Expand 10 after
2091 ], 2095 ],
2092 'configurations': { 2096 'configurations': {
2093 'Debug_Base': { 2097 'Debug_Base': {
2094 'msvs_settings': { 2098 'msvs_settings': {
2095 'VCLinkerTool': { 2099 'VCLinkerTool': {
2096 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', 2100 'LinkIncremental': '<(msvs_large_module_debug_link_mode)',
2097 }, 2101 },
2098 }, 2102 },
2099 }, 2103 },
2100 }, 2104 },
2105 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
2106 'msvs_disabled_warnings': [ 4267, ],
2101 }], 2107 }],
2102 ['OS=="mac"', { 2108 ['OS=="mac"', {
2103 'sources': [ 2109 'sources': [
2104 'test/perf/mach_ports_test.cc', 2110 'test/perf/mach_ports_test.cc',
2105 ], 2111 ],
2106 }], 2112 }],
2107 ['use_x11==1', { 2113 ['use_x11==1', {
2108 'dependencies': [ 2114 'dependencies': [
2109 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', 2115 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
2110 ], 2116 ],
(...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after
3118 # more details. 3124 # more details.
3119 'DebugInformationFormat': '3', 3125 'DebugInformationFormat': '3',
3120 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb', 3126 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/browser_tests.exe.pdb',
3121 }, 3127 },
3122 }, 3128 },
3123 }, 3129 },
3124 ], 3130 ],
3125 }], 3131 }],
3126 ], # 'conditions' 3132 ], # 'conditions'
3127 } 3133 }
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