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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
122 { | 122 { |
123 'action_name': 'make_integration_tests_clang', | 123 'action_name': 'make_integration_tests_clang', |
124 'inputs': ['<@(integration_tests_common_source_files)'], | 124 'inputs': ['<@(integration_tests_common_source_files)'], |
125 'outputs': ['<(PRODUCT_DIR)/integration_tests_clang_dll.dll'], | 125 'outputs': ['<(PRODUCT_DIR)/integration_tests_clang_dll.dll'], |
126 'action': [ | 126 'action': [ |
127 '<(python_exe)', | 127 '<(python_exe)', |
128 'make_integration_tests_clang.py', | 128 'make_integration_tests_clang.py', |
129 '--output-dir=<(PRODUCT_DIR)', | 129 '--output-dir=<(PRODUCT_DIR)', |
130 '--input-files=<(_inputs)', | 130 '--input-files=<(_inputs)', |
131 '--target-name=integration_tests_clang_dll', | 131 '--target-name=integration_tests_clang_dll', |
| 132 '--def-file=integration_tests_clang_dll.def' |
132 ], | 133 ], |
133 }, | 134 }, |
134 ], | 135 ], |
135 }, | 136 }, |
136 { | 137 { |
137 'target_name': 'integration_tests_dll', | 138 'target_name': 'integration_tests_dll', |
138 'type': 'loadable_module', | 139 'type': 'loadable_module', |
139 'sources': [ | 140 'sources': [ |
140 '<@(integration_tests_common_source_files)', | 141 '<@(integration_tests_common_source_files)', |
141 '<@(integration_tests_other_files)' | 142 '<@(integration_tests_other_files)' |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
245 # Asan agent is compiled without large address spaces to allow a | 246 # Asan agent is compiled without large address spaces to allow a |
246 # memory optimization on the shadow memory. Agents should run in both | 247 # memory optimization on the shadow memory. Agents should run in both |
247 # modes, thus in the long term, we should remove this. | 248 # modes, thus in the long term, we should remove this. |
248 # Disable support for large address spaces. | 249 # Disable support for large address spaces. |
249 'LargeAddressAware': 1, | 250 'LargeAddressAware': 1, |
250 }, | 251 }, |
251 }, | 252 }, |
252 }, | 253 }, |
253 ], | 254 ], |
254 } | 255 } |
OLD | NEW |