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 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 }, | 201 }, |
202 ], | 202 ], |
203 }], | 203 }], |
204 ], | 204 ], |
205 }, | 205 }, |
206 { | 206 { |
207 'target_name': 'sbox_integration_tests', | 207 'target_name': 'sbox_integration_tests', |
208 'type': 'executable', | 208 'type': 'executable', |
209 'dependencies': [ | 209 'dependencies': [ |
210 'sandbox', | 210 'sandbox', |
| 211 '../base/base.gyp:test_support_base', |
211 '../testing/gtest.gyp:gtest', | 212 '../testing/gtest.gyp:gtest', |
212 ], | 213 ], |
213 'sources': [ | 214 'sources': [ |
214 'src/app_container_test.cc', | 215 'src/app_container_test.cc', |
215 'src/file_policy_test.cc', | 216 'src/file_policy_test.cc', |
216 'src/handle_inheritance_test.cc', | 217 'src/handle_inheritance_test.cc', |
217 'src/handle_policy_test.cc', | 218 'src/handle_policy_test.cc', |
218 'tests/integration_tests/integration_tests_test.cc', | 219 'tests/integration_tests/integration_tests_test.cc', |
219 'src/handle_closer_test.cc', | 220 'src/handle_closer_test.cc', |
220 'src/integrity_level_test.cc', | 221 'src/integrity_level_test.cc', |
(...skipping 11 matching lines...) Expand all Loading... |
232 'tests/common/test_utils.cc', | 233 'tests/common/test_utils.cc', |
233 'tests/common/test_utils.h', | 234 'tests/common/test_utils.h', |
234 'tests/integration_tests/integration_tests.cc', | 235 'tests/integration_tests/integration_tests.cc', |
235 ], | 236 ], |
236 }, | 237 }, |
237 { | 238 { |
238 'target_name': 'sbox_validation_tests', | 239 'target_name': 'sbox_validation_tests', |
239 'type': 'executable', | 240 'type': 'executable', |
240 'dependencies': [ | 241 'dependencies': [ |
241 'sandbox', | 242 'sandbox', |
| 243 '../base/base.gyp:test_support_base', |
242 '../testing/gtest.gyp:gtest', | 244 '../testing/gtest.gyp:gtest', |
243 ], | 245 ], |
244 'sources': [ | 246 'sources': [ |
245 'tests/common/controller.cc', | 247 'tests/common/controller.cc', |
246 'tests/common/controller.h', | 248 'tests/common/controller.h', |
247 'tests/validation_tests/unit_tests.cc', | 249 'tests/validation_tests/unit_tests.cc', |
248 'tests/validation_tests/commands.cc', | 250 'tests/validation_tests/commands.cc', |
249 'tests/validation_tests/commands.h', | 251 'tests/validation_tests/commands.h', |
250 'tests/validation_tests/suite.cc', | 252 'tests/validation_tests/suite.cc', |
251 ], | 253 ], |
252 }, | 254 }, |
253 { | 255 { |
254 'target_name': 'sbox_unittests', | 256 'target_name': 'sbox_unittests', |
255 'type': 'executable', | 257 'type': 'executable', |
256 'dependencies': [ | 258 'dependencies': [ |
257 'sandbox', | 259 'sandbox', |
| 260 '../base/base.gyp:test_support_base', |
258 '../testing/gtest.gyp:gtest', | 261 '../testing/gtest.gyp:gtest', |
259 ], | 262 ], |
260 'sources': [ | 263 'sources': [ |
261 'src/app_container_unittest.cc', | 264 'src/app_container_unittest.cc', |
262 'src/interception_unittest.cc', | 265 'src/interception_unittest.cc', |
263 'src/service_resolver_unittest.cc', | 266 'src/service_resolver_unittest.cc', |
264 'src/restricted_token_unittest.cc', | 267 'src/restricted_token_unittest.cc', |
265 'src/job_unittest.cc', | 268 'src/job_unittest.cc', |
266 'src/sid_unittest.cc', | 269 'src/sid_unittest.cc', |
267 'src/policy_engine_unittest.cc', | 270 'src/policy_engine_unittest.cc', |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 ], | 357 ], |
355 }, | 358 }, |
356 'defines': [ | 359 'defines': [ |
357 '<@(nacl_win64_defines)', | 360 '<@(nacl_win64_defines)', |
358 ] | 361 ] |
359 }, | 362 }, |
360 ], | 363 ], |
361 }], | 364 }], |
362 ], | 365 ], |
363 } | 366 } |
OLD | NEW |