OLD | NEW |
1 # | 1 # |
2 # Copyright (C) 2011 Google Inc. All rights reserved. | 2 # Copyright (C) 2011 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 'webkit_unit_tests', | 146 'webkit_unit_tests', |
147 ], | 147 ], |
148 'variables': { | 148 'variables': { |
149 'test_suite_name': 'webkit_unit_tests', | 149 'test_suite_name': 'webkit_unit_tests', |
150 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)w
ebkit_unit_tests<(SHARED_LIB_SUFFIX)', | 150 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)w
ebkit_unit_tests<(SHARED_LIB_SUFFIX)', |
151 'additional_input_paths': ['<(asset_location)/content_shell.
pak'], | 151 'additional_input_paths': ['<(asset_location)/content_shell.
pak'], |
152 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', | 152 'asset_location': '<(PRODUCT_DIR)/content_shell/assets', |
153 'conditions': [ | 153 'conditions': [ |
154 ['v8_use_external_startup_data==1', { | 154 ['v8_use_external_startup_data==1', { |
155 'additional_input_paths': [ | 155 'additional_input_paths': [ |
156 '<(asset_location)/natives_blob.bin', | 156 '<(asset_location)/natives_blob_<(arch_suffix).bin', |
157 '<(asset_location)/snapshot_blob.bin', | 157 '<(asset_location)/snapshot_blob_<(arch_suffix).bin', |
158 ], | 158 ], |
159 }], | 159 }], |
160 ], | 160 ], |
161 }, | 161 }, |
162 'includes': [ '../../../../build/apk_test.gypi' ], | 162 'includes': [ |
| 163 '../../../../build/apk_test.gypi', |
| 164 '../../../../build/android/v8_external_startup_data_arch_suffi
x.gypi', |
| 165 ], |
163 }], | 166 }], |
164 }], | 167 }], |
165 ['test_isolation_mode != "noop"', { | 168 ['test_isolation_mode != "noop"', { |
166 'targets': [ | 169 'targets': [ |
167 { | 170 { |
168 'target_name': 'webkit_unit_tests_run', | 171 'target_name': 'webkit_unit_tests_run', |
169 'type': 'none', | 172 'type': 'none', |
170 'dependencies': [ | 173 'dependencies': [ |
171 'webkit_unit_tests', | 174 'webkit_unit_tests', |
172 ], | 175 ], |
173 'includes': [ | 176 'includes': [ |
174 '../../../../build/isolate.gypi', | 177 '../../../../build/isolate.gypi', |
175 ], | 178 ], |
176 'sources': [ | 179 'sources': [ |
177 'webkit_unit_tests.isolate', | 180 'webkit_unit_tests.isolate', |
178 ], | 181 ], |
179 }, | 182 }, |
180 ], | 183 ], |
181 }], | 184 }], |
182 ], | 185 ], |
183 } | 186 } |
OLD | NEW |