| 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 }, |
| 11 'target_conditions': [ | 11 'target_conditions': [ |
| 12 ['sandbox_windows_target==1', { | 12 ['sandbox_windows_target==1', { |
| 13 # Files that are shared between the 32-bit and the 64-bit versions | 13 # Files that are shared between the 32-bit and the 64-bit versions |
| 14 # of the Windows sandbox library. | 14 # of the Windows sandbox library. |
| 15 'sources': [ | 15 'sources': [ |
| 16 'src/acl.cc', | 16 'src/acl.cc', |
| 17 'src/acl.h', | 17 'src/acl.h', |
| 18 'src/app_container.cc', | |
| 19 'src/app_container.h', | |
| 20 'src/broker_services.cc', | 18 'src/broker_services.cc', |
| 21 'src/broker_services.h', | 19 'src/broker_services.h', |
| 22 'src/crosscall_client.h', | 20 'src/crosscall_client.h', |
| 23 'src/crosscall_params.h', | 21 'src/crosscall_params.h', |
| 24 'src/crosscall_server.cc', | 22 'src/crosscall_server.cc', |
| 25 'src/crosscall_server.h', | 23 'src/crosscall_server.h', |
| 26 'src/eat_resolver.cc', | 24 'src/eat_resolver.cc', |
| 27 'src/eat_resolver.h', | 25 'src/eat_resolver.h', |
| 28 'src/filesystem_dispatcher.cc', | 26 'src/filesystem_dispatcher.cc', |
| 29 'src/filesystem_dispatcher.h', | 27 'src/filesystem_dispatcher.h', |
| (...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 }, | 257 }, |
| 260 { | 258 { |
| 261 'target_name': 'sbox_unittests', | 259 'target_name': 'sbox_unittests', |
| 262 'type': 'executable', | 260 'type': 'executable', |
| 263 'dependencies': [ | 261 'dependencies': [ |
| 264 'sandbox', | 262 'sandbox', |
| 265 '../base/base.gyp:test_support_base', | 263 '../base/base.gyp:test_support_base', |
| 266 '../testing/gtest.gyp:gtest', | 264 '../testing/gtest.gyp:gtest', |
| 267 ], | 265 ], |
| 268 'sources': [ | 266 'sources': [ |
| 269 'src/app_container_unittest.cc', | |
| 270 'src/interception_unittest.cc', | 267 'src/interception_unittest.cc', |
| 271 'src/service_resolver_unittest.cc', | 268 'src/service_resolver_unittest.cc', |
| 272 'src/restricted_token_unittest.cc', | 269 'src/restricted_token_unittest.cc', |
| 273 'src/job_unittest.cc', | 270 'src/job_unittest.cc', |
| 274 'src/sid_unittest.cc', | 271 'src/sid_unittest.cc', |
| 275 'src/policy_engine_unittest.cc', | 272 'src/policy_engine_unittest.cc', |
| 276 'src/policy_low_level_unittest.cc', | 273 'src/policy_low_level_unittest.cc', |
| 277 'src/policy_opcodes_unittest.cc', | 274 'src/policy_opcodes_unittest.cc', |
| 278 'src/ipc_unittest.cc', | 275 'src/ipc_unittest.cc', |
| 279 'src/sandbox_nt_util_unittest.cc', | 276 'src/sandbox_nt_util_unittest.cc', |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 400 '../../build/isolate.gypi', | 397 '../../build/isolate.gypi', |
| 401 ], | 398 ], |
| 402 'sources': [ | 399 'sources': [ |
| 403 '../sbox_validation_tests.isolate', | 400 '../sbox_validation_tests.isolate', |
| 404 ], | 401 ], |
| 405 }, | 402 }, |
| 406 ], | 403 ], |
| 407 }], | 404 }], |
| 408 ], | 405 ], |
| 409 } | 406 } |
| OLD | NEW |