diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-19 05:22:57 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-19 05:22:57 +0000 |
commit | 35aaf250767c9e8110d4b2a718d9be022ab3eee9 (patch) | |
tree | 9e0afecdf7750114ce97e05f9d19726fba39205b /cloud_print | |
parent | 9238644f427502492f2f70ff275d4e8d97a28a57 (diff) | |
download | chromium_src-35aaf250767c9e8110d4b2a718d9be022ab3eee9.zip chromium_src-35aaf250767c9e8110d4b2a718d9be022ab3eee9.tar.gz chromium_src-35aaf250767c9e8110d4b2a718d9be022ab3eee9.tar.bz2 |
Make cloud_print service build on Win64
Just c4267 build suppressions.
BUG=166496
BUG=167187
TBR=abodenha@chromium.org
R=abodenha@chromium.org
Review URL: https://chromiumcodereview.appspot.com/12282034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183161 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cloud_print')
-rw-r--r-- | cloud_print/service/service.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cloud_print/service/service.gyp b/cloud_print/service/service.gyp index 1a30919..73dfcc1 100644 --- a/cloud_print/service/service.gyp +++ b/cloud_print/service/service.gyp @@ -35,6 +35,8 @@ 'dependencies': [ '<(DEPTH)/chrome/chrome.gyp:launcher_support', ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [ 4267, ], }], ], }, @@ -59,6 +61,8 @@ 'dependencies': [ '<(DEPTH)/chrome/chrome.gyp:chrome_version_header', ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [ 4267, ], }], ], 'msvs_settings': { |