| OLD | NEW | 
|---|
| 1 # | 1 # | 
| 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 
| 3 # | 3 # | 
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without | 
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are | 
| 6 # met: | 6 # met: | 
| 7 # | 7 # | 
| 8 #     * Redistributions of source code must retain the above copyright | 8 #     * Redistributions of source code must retain the above copyright | 
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. | 
| 10 #     * Redistributions in binary form must reproduce the above | 10 #     * Redistributions in binary form must reproduce the above | 
| (...skipping 479 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 490                 # This step ensures that any Objective-C names that aren't | 490                 # This step ensures that any Objective-C names that aren't | 
| 491                 # redefined to be "safe" above will cause a build failure. | 491                 # redefined to be "safe" above will cause a build failure. | 
| 492                 'postbuild_name': 'Check Objective-C Rename', | 492                 'postbuild_name': 'Check Objective-C Rename', | 
| 493                 'variables': { | 493                 'variables': { | 
| 494                   'class_whitelist_regex': | 494                   'class_whitelist_regex': | 
| 495                       'ChromiumWebCoreObjC|TCMVisibleView|RTCMFlippedView', | 495                       'ChromiumWebCoreObjC|TCMVisibleView|RTCMFlippedView', | 
| 496                   'category_whitelist_regex': | 496                   'category_whitelist_regex': | 
| 497                       'TCMInterposing|ScrollAnimatorChromiumMacExt|WebCoreTheme'
      , | 497                       'TCMInterposing|ScrollAnimatorChromiumMacExt|WebCoreTheme'
      , | 
| 498                 }, | 498                 }, | 
| 499                 'action': [ | 499                 'action': [ | 
| 500                   'scripts/check_objc_rename.sh', | 500                   '../build/scripts/check_objc_rename.sh', | 
| 501                   '<(class_whitelist_regex)', | 501                   '<(class_whitelist_regex)', | 
| 502                   '<(category_whitelist_regex)', | 502                   '<(category_whitelist_regex)', | 
| 503                 ], | 503                 ], | 
| 504               }, | 504               }, | 
| 505             ], | 505             ], | 
| 506           }, | 506           }, | 
| 507         }], | 507         }], | 
| 508         ['OS=="win"', { | 508         ['OS=="win"', { | 
| 509           'direct_dependent_settings': { | 509           'direct_dependent_settings': { | 
| 510             'defines': [ | 510             'defines': [ | 
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 1091         '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', | 1091         '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', | 
| 1092         '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', | 1092         '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', | 
| 1093         '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', | 1093         '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', | 
| 1094       ], | 1094       ], | 
| 1095       'sources/': [ | 1095       'sources/': [ | 
| 1096         ['exclude', 'testing/js'], | 1096         ['exclude', 'testing/js'], | 
| 1097       ], | 1097       ], | 
| 1098     }, | 1098     }, | 
| 1099   ],  # targets | 1099   ],  # targets | 
| 1100 } | 1100 } | 
| OLD | NEW | 
|---|