OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 source_set("sandbox") { | 7 source_set("sandbox") { |
8 sources = [ | 8 sources = [ |
9 "src/acl.cc", | 9 "src/acl.cc", |
10 "src/acl.h", | 10 "src/acl.h", |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 "wow_helper/wow_helper.pdb", | 178 "wow_helper/wow_helper.pdb", |
179 ] | 179 ] |
180 outputs = [ | 180 outputs = [ |
181 "$root_out_dir/{{source_file_part}}", | 181 "$root_out_dir/{{source_file_part}}", |
182 ] | 182 ] |
183 } | 183 } |
184 } | 184 } |
185 | 185 |
186 test("sbox_integration_tests") { | 186 test("sbox_integration_tests") { |
187 sources = [ | 187 sources = [ |
| 188 "src/address_sanitizer_test.cc", |
188 "src/app_container_test.cc", | 189 "src/app_container_test.cc", |
189 "src/file_policy_test.cc", | 190 "src/file_policy_test.cc", |
190 "src/handle_inheritance_test.cc", | 191 "src/handle_inheritance_test.cc", |
191 "src/handle_policy_test.cc", | 192 "src/handle_policy_test.cc", |
192 "tests/integration_tests/integration_tests_test.cc", | 193 "tests/integration_tests/integration_tests_test.cc", |
193 "src/handle_closer_test.cc", | 194 "src/handle_closer_test.cc", |
194 "src/integrity_level_test.cc", | 195 "src/integrity_level_test.cc", |
195 "src/ipc_ping_test.cc", | 196 "src/ipc_ping_test.cc", |
196 "src/named_pipe_policy_test.cc", | 197 "src/named_pipe_policy_test.cc", |
197 "src/policy_target_test.cc", | 198 "src/policy_target_test.cc", |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 "sandbox_poc/pocdll/network.cc", | 290 "sandbox_poc/pocdll/network.cc", |
290 "sandbox_poc/pocdll/pocdll.cc", | 291 "sandbox_poc/pocdll/pocdll.cc", |
291 "sandbox_poc/pocdll/processes_and_threads.cc", | 292 "sandbox_poc/pocdll/processes_and_threads.cc", |
292 "sandbox_poc/pocdll/registry.cc", | 293 "sandbox_poc/pocdll/registry.cc", |
293 "sandbox_poc/pocdll/spyware.cc", | 294 "sandbox_poc/pocdll/spyware.cc", |
294 "sandbox_poc/pocdll/utils.h", | 295 "sandbox_poc/pocdll/utils.h", |
295 ] | 296 ] |
296 | 297 |
297 defines = [ "POCDLL_EXPORTS" ] | 298 defines = [ "POCDLL_EXPORTS" ] |
298 } | 299 } |
OLD | NEW |