| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 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 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 }] | 90 }] |
| 91 ], | 91 ], |
| 92 # Disable c4267 warnings until we fix size_t to int truncations. | 92 # Disable c4267 warnings until we fix size_t to int truncations. |
| 93 'msvs_disabled_warnings': [ 4267, 4334, ], | 93 'msvs_disabled_warnings': [ 4267, 4334, ], |
| 94 }, | 94 }, |
| 95 { | 95 { |
| 96 # GN version: //third_party/WebKit/Source/modules:modules_testing | 96 # GN version: //third_party/WebKit/Source/modules:modules_testing |
| 97 'target_name': 'modules_testing', | 97 'target_name': 'modules_testing', |
| 98 'type': 'static_library', | 98 'type': 'static_library', |
| 99 'dependencies': [ | 99 'dependencies': [ |
| 100 'modules', |
| 100 '../config.gyp:config', | 101 '../config.gyp:config', |
| 101 ], | 102 ], |
| 102 'defines': [ | 103 'defines': [ |
| 103 'BLINK_IMPLEMENTATION=1', | 104 'BLINK_IMPLEMENTATION=1', |
| 104 'INSIDE_BLINK', | 105 'INSIDE_BLINK', |
| 105 ], | 106 ], |
| 106 'sources': [ | 107 'sources': [ |
| 107 '<@(modules_testing_files)', | 108 '<@(modules_testing_files)', |
| 108 '<(bindings_modules_v8_output_dir)/V8InternalsPartial.cpp', | 109 '<(bindings_modules_v8_output_dir)/V8InternalsPartial.cpp', |
| 109 '<(bindings_modules_v8_output_dir)/V8InternalsPartial.h', | 110 '<(bindings_modules_v8_output_dir)/V8InternalsPartial.h', |
| 110 ], | 111 ], |
| 111 'conditions': [ | 112 'conditions': [ |
| 112 ['component=="shared_library"', { | 113 ['component=="shared_library"', { |
| 113 'dependencies': [ | 114 'dependencies': [ |
| 114 '../core/core.gyp:webcore_shared', | 115 '../core/core.gyp:webcore_shared', |
| 115 '<(DEPTH)/gin/gin.gyp:gin', | 116 '<(DEPTH)/gin/gin.gyp:gin', |
| 116 ], | 117 ], |
| 117 }, { | 118 }, { |
| 118 'dependencies': [ | 119 'dependencies': [ |
| 119 '../core/core.gyp:webcore', | 120 '../core/core.gyp:webcore', |
| 120 ], | 121 ], |
| 121 }], | 122 }], |
| 122 ], | 123 ], |
| 123 }], | 124 }], |
| 124 } | 125 } |
| OLD | NEW |