| 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 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 'dependencies': [ | 137 'dependencies': [ |
| 138 '<(DEPTH)/base/base.gyp:base_java', | 138 '<(DEPTH)/base/base.gyp:base_java', |
| 139 '<(DEPTH)/net/net.gyp:net_java', | 139 '<(DEPTH)/net/net.gyp:net_java', |
| 140 'blink_heap_unittests', | 140 'blink_heap_unittests', |
| 141 ], | 141 ], |
| 142 'conditions': [ | 142 'conditions': [ |
| 143 ['v8_use_external_startup_data==1', { | 143 ['v8_use_external_startup_data==1', { |
| 144 'dependencies': [ | 144 'dependencies': [ |
| 145 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snapshot', | 145 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8_external_snapshot', |
| 146 ], | 146 ], |
| 147 'variables': { | 147 'copies': [ |
| 148 'dest_path': '<(asset_location)', | 148 { |
| 149 'renaming_sources': [ | 149 'destination': '<(asset_location)', |
| 150 '<(PRODUCT_DIR)/natives_blob.bin', | 150 'files': [ |
| 151 '<(PRODUCT_DIR)/snapshot_blob.bin', | 151 '<(PRODUCT_DIR)/natives_blob.bin', |
| 152 ], | 152 '<(PRODUCT_DIR)/snapshot_blob.bin', |
| 153 'renaming_destinations': [ | 153 ], |
| 154 'natives_blob_<(arch_suffix).bin', | 154 }, |
| 155 'snapshot_blob_<(arch_suffix).bin', | 155 ], |
| 156 ], | |
| 157 'clear': 1, | |
| 158 }, | |
| 159 'includes': ['../../../../build/android/copy_ex.gypi'], | |
| 160 }], | 156 }], |
| 161 ], | 157 ], |
| 162 'variables': { | 158 'variables': { |
| 163 'test_suite_name': 'blink_heap_unittests', | 159 'test_suite_name': 'blink_heap_unittests', |
| 164 'conditions': [ | 160 'conditions': [ |
| 165 ['v8_use_external_startup_data==1', { | 161 ['v8_use_external_startup_data==1', { |
| 166 'asset_location': '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets'
, | 162 'asset_location': '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets'
, |
| 167 'additional_input_paths': [ | 163 'additional_input_paths': [ |
| 168 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/natives_blob_<(a
rch_suffix).bin', | 164 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/natives_blob.bin
', |
| 169 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/snapshot_blob_<(
arch_suffix).bin', | 165 '<(PRODUCT_DIR)/blink_heap_unittests_apk/assets/snapshot_blob.bi
n', |
| 170 ], | 166 ], |
| 171 }], | 167 }], |
| 172 ], | 168 ], |
| 173 }, | 169 }, |
| 174 'includes': [ | 170 'includes': [ '../../../../build/apk_test.gypi' ], |
| 175 '../../../../build/apk_test.gypi', | |
| 176 '../../../../build/android/v8_external_startup_data_arch_suffix.gypi', | |
| 177 ], | |
| 178 }, | 171 }, |
| 179 { | 172 { |
| 180 'target_name': 'blink_platform_unittests_apk', | 173 'target_name': 'blink_platform_unittests_apk', |
| 181 'type': 'none', | 174 'type': 'none', |
| 182 'dependencies': [ | 175 'dependencies': [ |
| 183 '<(DEPTH)/base/base.gyp:base_java', | 176 '<(DEPTH)/base/base.gyp:base_java', |
| 184 '<(DEPTH)/net/net.gyp:net_java', | 177 '<(DEPTH)/net/net.gyp:net_java', |
| 185 'blink_platform_unittests', | 178 'blink_platform_unittests', |
| 186 ], | 179 ], |
| 187 'variables': { | 180 'variables': { |
| (...skipping 27 matching lines...) Expand all Loading... |
| 215 '../../../../build/isolate.gypi', | 208 '../../../../build/isolate.gypi', |
| 216 ], | 209 ], |
| 217 'sources': [ | 210 'sources': [ |
| 218 'blink_platform_unittests.isolate', | 211 'blink_platform_unittests.isolate', |
| 219 ], | 212 ], |
| 220 } | 213 } |
| 221 ], | 214 ], |
| 222 }], | 215 }], |
| 223 ], | 216 ], |
| 224 } | 217 } |
| OLD | NEW |