| 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 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 'dependencies': [ | 121 'dependencies': [ |
| 122 '../config.gyp:config', | 122 '../config.gyp:config', |
| 123 'blink_platform.gyp:blink_platform', | 123 'blink_platform.gyp:blink_platform', |
| 124 ], | 124 ], |
| 125 'defines': [ | 125 'defines': [ |
| 126 'INSIDE_BLINK', | 126 'INSIDE_BLINK', |
| 127 ], | 127 ], |
| 128 'sources': [ | 128 'sources': [ |
| 129 '<@(platform_test_support_files)', | 129 '<@(platform_test_support_files)', |
| 130 ], | 130 ], |
| 131 # Disable c4267 warnings until we fix size_t to int truncations. | |
| 132 'msvs_disabled_warnings': [ 4267 ], | |
| 133 }, | 131 }, |
| 134 ], | 132 ], |
| 135 'conditions': [ | 133 'conditions': [ |
| 136 ['OS=="android" and gtest_target_type == "shared_library"', { | 134 ['OS=="android" and gtest_target_type == "shared_library"', { |
| 137 'targets': [{ | 135 'targets': [{ |
| 138 'target_name': 'blink_heap_unittests_apk', | 136 'target_name': 'blink_heap_unittests_apk', |
| 139 'type': 'none', | 137 'type': 'none', |
| 140 'dependencies': [ | 138 'dependencies': [ |
| 141 '<(DEPTH)/base/base.gyp:base_java', | 139 '<(DEPTH)/base/base.gyp:base_java', |
| 142 '<(DEPTH)/net/net.gyp:net_java', | 140 '<(DEPTH)/net/net.gyp:net_java', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 '../../../../build/isolate.gypi', | 216 '../../../../build/isolate.gypi', |
| 219 ], | 217 ], |
| 220 'sources': [ | 218 'sources': [ |
| 221 'blink_platform_unittests.isolate', | 219 'blink_platform_unittests.isolate', |
| 222 ], | 220 ], |
| 223 } | 221 } |
| 224 ], | 222 ], |
| 225 }], | 223 }], |
| 226 ], | 224 ], |
| 227 } | 225 } |
| OLD | NEW |