OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'sandbox_windows_target': 0, | 8 'sandbox_windows_target': 0, |
9 'target_arch%': 'ia32', | 9 'target_arch%': 'ia32', |
10 }, | 10 }, |
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
211 }, | 211 }, |
212 { | 212 { |
213 'target_name': 'sbox_integration_tests', | 213 'target_name': 'sbox_integration_tests', |
214 'type': 'executable', | 214 'type': 'executable', |
215 'dependencies': [ | 215 'dependencies': [ |
216 'sandbox', | 216 'sandbox', |
217 '../base/base.gyp:test_support_base', | 217 '../base/base.gyp:test_support_base', |
218 '../testing/gtest.gyp:gtest', | 218 '../testing/gtest.gyp:gtest', |
219 ], | 219 ], |
220 'sources': [ | 220 'sources': [ |
| 221 'src/address_sanitizer_test.cc', |
221 'src/app_container_test.cc', | 222 'src/app_container_test.cc', |
222 'src/file_policy_test.cc', | 223 'src/file_policy_test.cc', |
223 'src/handle_inheritance_test.cc', | 224 'src/handle_inheritance_test.cc', |
224 'src/handle_policy_test.cc', | 225 'src/handle_policy_test.cc', |
225 'tests/integration_tests/integration_tests_test.cc', | 226 'tests/integration_tests/integration_tests_test.cc', |
226 'src/handle_closer_test.cc', | 227 'src/handle_closer_test.cc', |
227 'src/integrity_level_test.cc', | 228 'src/integrity_level_test.cc', |
228 'src/ipc_ping_test.cc', | 229 'src/ipc_ping_test.cc', |
229 'src/named_pipe_policy_test.cc', | 230 'src/named_pipe_policy_test.cc', |
230 'src/policy_target_test.cc', | 231 'src/policy_target_test.cc', |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
363 ], | 364 ], |
364 }, | 365 }, |
365 'defines': [ | 366 'defines': [ |
366 '<@(nacl_win64_defines)', | 367 '<@(nacl_win64_defines)', |
367 ] | 368 ] |
368 }, | 369 }, |
369 ], | 370 ], |
370 }], | 371 }], |
371 ], | 372 ], |
372 } | 373 } |
OLD | NEW |