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