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

Side by Side Diff: base/base.gyp

Issue 11825006: Make all base targets build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 | base/cpu_unittest.cc » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 '../third_party/icu/icu.gyp:icui18n', 263 '../third_party/icu/icu.gyp:icui18n',
264 '../third_party/icu/icu.gyp:icuuc', 264 '../third_party/icu/icu.gyp:icuuc',
265 ], 265 ],
266 'conditions': [ 266 'conditions': [
267 ['toolkit_uses_gtk==1', { 267 ['toolkit_uses_gtk==1', {
268 'dependencies': [ 268 'dependencies': [
269 # i18n/rtl.cc uses gtk 269 # i18n/rtl.cc uses gtk
270 '../build/linux/system.gyp:gtk', 270 '../build/linux/system.gyp:gtk',
271 ], 271 ],
272 }], 272 }],
273 ['OS == "win"', {
274 'msvs_disabled_warnings': [
275 4267,
brettw 2013/01/09 19:20:05 Can you add a comment here about what this is disa
jschuh 2013/01/09 20:42:49 Done.
276 ],
277 }],
273 ], 278 ],
274 'export_dependent_settings': [ 279 'export_dependent_settings': [
275 'base', 280 'base',
276 ], 281 ],
277 'defines': [ 282 'defines': [
278 'BASE_I18N_IMPLEMENTATION', 283 'BASE_I18N_IMPLEMENTATION',
279 ], 284 ],
280 'sources': [ 285 'sources': [
281 'i18n/base_i18n_export.h', 286 'i18n/base_i18n_export.h',
282 'i18n/bidi_line_iterator.cc', 287 'i18n/bidi_line_iterator.cc',
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 ['OS == "win"', { 706 ['OS == "win"', {
702 'dependencies': [ 707 'dependencies': [
703 '../third_party/icu/icu.gyp:icudata', 708 '../third_party/icu/icu.gyp:icudata',
704 ], 709 ],
705 'sources!': [ 710 'sources!': [
706 'file_descriptor_shuffle_unittest.cc', 711 'file_descriptor_shuffle_unittest.cc',
707 'files/dir_reader_posix_unittest.cc', 712 'files/dir_reader_posix_unittest.cc',
708 'threading/worker_pool_posix_unittest.cc', 713 'threading/worker_pool_posix_unittest.cc',
709 'message_pump_libevent_unittest.cc', 714 'message_pump_libevent_unittest.cc',
710 ], 715 ],
716 'msvs_disabled_warnings': [
717 4267,
718 ],
711 }, { # OS != "win" 719 }, { # OS != "win"
712 'dependencies': [ 720 'dependencies': [
713 '../third_party/libevent/libevent.gyp:libevent' 721 '../third_party/libevent/libevent.gyp:libevent'
714 ], 722 ],
715 'sources/': [ 723 'sources/': [
716 ['exclude', '^win/'], 724 ['exclude', '^win/'],
717 ], 725 ],
718 'sources!': [ 726 'sources!': [
719 'debug/trace_event_win_unittest.cc', 727 'debug/trace_event_win_unittest.cc',
720 'time_win_unittest.cc', 728 'time_win_unittest.cc',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1123 'base_unittests.isolate', 1131 'base_unittests.isolate',
1124 ], 1132 ],
1125 'sources': [ 1133 'sources': [
1126 'base_unittests.isolate', 1134 'base_unittests.isolate',
1127 ], 1135 ],
1128 }, 1136 },
1129 ], 1137 ],
1130 }], 1138 }],
1131 ], 1139 ],
1132 } 1140 }
OLDNEW
« no previous file with comments | « no previous file | base/cpu_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698