| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 'dependencies': [ | 375 'dependencies': [ |
| 376 'sbox_integration_tests', | 376 'sbox_integration_tests', |
| 377 ], | 377 ], |
| 378 'includes': [ | 378 'includes': [ |
| 379 '../../build/isolate.gypi', | 379 '../../build/isolate.gypi', |
| 380 ], | 380 ], |
| 381 'sources': [ | 381 'sources': [ |
| 382 '../sbox_integration_tests.isolate', | 382 '../sbox_integration_tests.isolate', |
| 383 ], | 383 ], |
| 384 }, | 384 }, |
| 385 { |
| 386 'target_name': 'sbox_unittests_run', |
| 387 'type': 'none', |
| 388 'dependencies': [ |
| 389 'sbox_unittests', |
| 390 ], |
| 391 'includes': [ |
| 392 '../../build/isolate.gypi', |
| 393 ], |
| 394 'sources': [ |
| 395 '../sbox_unittests.isolate', |
| 396 ], |
| 397 }, |
| 385 ], | 398 ], |
| 386 }], | 399 }], |
| 387 ], | 400 ], |
| 388 } | 401 } |
| OLD | NEW |