| OLD | NEW |
| 1 # Copyright 2013 Google Inc. All Rights Reserved. | 1 # Copyright 2013 Google Inc. All Rights Reserved. |
| 2 # | 2 # |
| 3 # Licensed under the Apache License, Version 2.0 (the "License"); | 3 # Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 # you may not use this file except in compliance with the License. | 4 # you may not use this file except in compliance with the License. |
| 5 # You may obtain a copy of the License at | 5 # You may obtain a copy of the License at |
| 6 # | 6 # |
| 7 # http://www.apache.org/licenses/LICENSE-2.0 | 7 # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 # | 8 # |
| 9 # Unless required by applicable law or agreed to in writing, software | 9 # Unless required by applicable law or agreed to in writing, software |
| 10 # distributed under the License is distributed on an "AS IS" BASIS, | 10 # distributed under the License is distributed on an "AS IS" BASIS, |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 'target_name': 'integration_tests_clang_dll', | 115 'target_name': 'integration_tests_clang_dll', |
| 116 'type': 'none', | 116 'type': 'none', |
| 117 'msvs_cygwin_shell': 0, | 117 'msvs_cygwin_shell': 0, |
| 118 'dependencies': [ | 118 'dependencies': [ |
| 119 '<(src)/syzygy/pe/pe.gyp:export_dll', | 119 '<(src)/syzygy/pe/pe.gyp:export_dll', |
| 120 '<(src)/syzygy/agent/asan/asan.gyp:syzyasan_rtl' | 120 '<(src)/syzygy/agent/asan/asan.gyp:syzyasan_rtl' |
| 121 ], | 121 ], |
| 122 'actions': [ | 122 'actions': [ |
| 123 { | 123 { |
| 124 'action_name': 'make_integration_tests_clang', | 124 'action_name': 'make_integration_tests_clang', |
| 125 'inputs': ['<@(integration_tests_common_source_files)'], | 125 'inputs': [ |
| 126 '<@(integration_tests_common_source_files)', |
| 127 'allocator_shim.cc' |
| 128 ], |
| 126 'outputs': [ | 129 'outputs': [ |
| 127 '<(PRODUCT_DIR)/integration_tests_clang_dll.dll', | 130 '<(PRODUCT_DIR)/integration_tests_clang_dll.dll', |
| 128 '<(PRODUCT_DIR)/integration_tests_clang_dll.pdb' | 131 '<(PRODUCT_DIR)/integration_tests_clang_dll.pdb' |
| 129 ], | 132 ], |
| 130 'action': [ | 133 'action': [ |
| 131 '<(python_exe)', | 134 '<(python_exe)', |
| 132 'make_integration_tests_clang.py', | 135 'make_integration_tests_clang.py', |
| 133 '--output-dir=<(PRODUCT_DIR)', | 136 '--output-dir=<(PRODUCT_DIR)', |
| 134 '--input-files=<(_inputs)', | 137 '--input-files=<(_inputs)', |
| 135 '--target-name=integration_tests_clang_dll', | 138 '--target-name=integration_tests_clang_dll', |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 # Asan agent is compiled without large address spaces to allow a | 253 # Asan agent is compiled without large address spaces to allow a |
| 251 # memory optimization on the shadow memory. Agents should run in both | 254 # memory optimization on the shadow memory. Agents should run in both |
| 252 # modes, thus in the long term, we should remove this. | 255 # modes, thus in the long term, we should remove this. |
| 253 # Disable support for large address spaces. | 256 # Disable support for large address spaces. |
| 254 'LargeAddressAware': 1, | 257 'LargeAddressAware': 1, |
| 255 }, | 258 }, |
| 256 }, | 259 }, |
| 257 }, | 260 }, |
| 258 ], | 261 ], |
| 259 } | 262 } |
| OLD | NEW |