Changeset 140910 in webkit


Ignore:
Timestamp:
Jan 26, 2013 2:01:32 AM (11 years ago)
Author:
jschuh@chromium.org
Message:

[CHROMIUM] Suppress more c4267 build warnings for Win64 targets
https://bugs.webkit.org/show_bug.cgi?id=107993

Source/WebCore:

No new tests. No behavior change.

Reviewed by Abhishek Arya.

  • WebCore.gyp/WebCore.gyp:

Source/WTF:

Reviewed by Abhishek Arya.

  • WTF.gyp/WTF.gyp:
Location:
trunk/Source
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r140857 r140910  
     12013-01-26  Justin Schuh  <jschuh@chromium.org>
     2
     3        [CHROMIUM] Suppress more c4267 build warnings for Win64 targets
     4        https://bugs.webkit.org/show_bug.cgi?id=107993
     5
     6        Reviewed by Abhishek Arya.
     7
     8        * WTF.gyp/WTF.gyp:
     9
    1102013-01-25  Eric Seidel  <eric@webkit.org>
    211
  • trunk/Source/WTF/WTF.gyp/WTF.gyp

    r140579 r140910  
    143143          # (e.g. in StringImpl.h).
    144144          4355,
     145          # Disable c4267 warnings until we fix size_t to int truncations.
     146          4267,
    145147        ],
    146148      },
  • trunk/Source/WebCore/ChangeLog

    r140908 r140910  
     12013-01-26  Justin Schuh  <jschuh@chromium.org>
     2
     3        [CHROMIUM] Suppress more c4267 build warnings for Win64 targets
     4        https://bugs.webkit.org/show_bug.cgi?id=107993
     5
     6        No new tests. No behavior change.
     7
     8        Reviewed by Abhishek Arya.
     9
     10        * WebCore.gyp/WebCore.gyp:
     11
    1122013-01-24  Patrick Gansterer  <paroga@webkit.org>
    213
  • trunk/Source/WebCore/WebCore.gyp/WebCore.gyp

    r140863 r140910  
    16101610        ['exclude', 'AllInOne\\.cpp$'],
    16111611      ],
     1612      # Disable c4267 warnings until we fix size_t to int truncations.
     1613      'msvs_disabled_warnings': [ 4267, ],
    16121614    },
    16131615    {
     
    16501652        'webcore_prerequisites',
    16511653      ],
     1654      # Disable c4267 warnings until we fix size_t to int truncations.
     1655      'msvs_disabled_warnings': [ 4267, 4334 ],
    16521656      # This is needed for mac because of webkit_system_interface. It'd be nice
    16531657      # if this hard dependency could be split off the rest.
     
    21712175        }],
    21722176      ],
     2177      # Disable c4267 warnings until we fix size_t to int truncations.
     2178      'msvs_disabled_warnings': [ 4267, 4334, ],
    21732179    },
    21742180    {
Note: See TracChangeset for help on using the changeset viewer.