| 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 ], |
| 131 }, | 133 }, |
| 132 ], | 134 ], |
| 133 'conditions': [ | 135 'conditions': [ |
| 134 ['OS=="android" and gtest_target_type == "shared_library"', { | 136 ['OS=="android" and gtest_target_type == "shared_library"', { |
| 135 'targets': [{ | 137 'targets': [{ |
| 136 'target_name': 'blink_heap_unittests_apk', | 138 'target_name': 'blink_heap_unittests_apk', |
| 137 'type': 'none', | 139 'type': 'none', |
| 138 'dependencies': [ | 140 'dependencies': [ |
| 139 '<(DEPTH)/base/base.gyp:base_java', | 141 '<(DEPTH)/base/base.gyp:base_java', |
| 140 '<(DEPTH)/net/net.gyp:net_java', | 142 '<(DEPTH)/net/net.gyp:net_java', |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 '../../../../build/isolate.gypi', | 218 '../../../../build/isolate.gypi', |
| 217 ], | 219 ], |
| 218 'sources': [ | 220 'sources': [ |
| 219 'blink_platform_unittests.isolate', | 221 'blink_platform_unittests.isolate', |
| 220 ], | 222 ], |
| 221 } | 223 } |
| 222 ], | 224 ], |
| 223 }], | 225 }], |
| 224 ], | 226 ], |
| 225 } | 227 } |
| OLD | NEW |