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

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 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
275 'msvs_disabled_warnings': [
276 4267,
277 ],
278 }],
273 ], 279 ],
274 'export_dependent_settings': [ 280 'export_dependent_settings': [
275 'base', 281 'base',
276 ], 282 ],
277 'defines': [ 283 'defines': [
278 'BASE_I18N_IMPLEMENTATION', 284 'BASE_I18N_IMPLEMENTATION',
279 ], 285 ],
280 'sources': [ 286 'sources': [
281 'i18n/base_i18n_export.h', 287 'i18n/base_i18n_export.h',
282 'i18n/bidi_line_iterator.cc', 288 'i18n/bidi_line_iterator.cc',
(...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after
701 ['OS == "win"', { 707 ['OS == "win"', {
702 'dependencies': [ 708 'dependencies': [
703 '../third_party/icu/icu.gyp:icudata', 709 '../third_party/icu/icu.gyp:icudata',
704 ], 710 ],
705 'sources!': [ 711 'sources!': [
706 'file_descriptor_shuffle_unittest.cc', 712 'file_descriptor_shuffle_unittest.cc',
707 'files/dir_reader_posix_unittest.cc', 713 'files/dir_reader_posix_unittest.cc',
708 'threading/worker_pool_posix_unittest.cc', 714 'threading/worker_pool_posix_unittest.cc',
709 'message_pump_libevent_unittest.cc', 715 'message_pump_libevent_unittest.cc',
710 ], 716 ],
717 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
718 'msvs_disabled_warnings': [
719 4267,
720 ],
711 }, { # OS != "win" 721 }, { # OS != "win"
712 'dependencies': [ 722 'dependencies': [
713 '../third_party/libevent/libevent.gyp:libevent' 723 '../third_party/libevent/libevent.gyp:libevent'
714 ], 724 ],
715 'sources/': [ 725 'sources/': [
716 ['exclude', '^win/'], 726 ['exclude', '^win/'],
717 ], 727 ],
718 'sources!': [ 728 'sources!': [
719 'debug/trace_event_win_unittest.cc', 729 'debug/trace_event_win_unittest.cc',
720 'time_win_unittest.cc', 730 'time_win_unittest.cc',
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after
1123 'base_unittests.isolate', 1133 'base_unittests.isolate',
1124 ], 1134 ],
1125 'sources': [ 1135 'sources': [
1126 'base_unittests.isolate', 1136 'base_unittests.isolate',
1127 ], 1137 ],
1128 }, 1138 },
1129 ], 1139 ],
1130 }], 1140 }],
1131 ], 1141 ],
1132 } 1142 }
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