| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | 6 'includes': [ |
| 7 '../build/common.gypi', | 7 '../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 [ 'OS=="win"', { | 10 [ 'OS=="win"', { |
| 11 'targets': [ | 11 'targets': [ |
| 12 { | 12 { |
| 13 'target_name': 'sandbox', | 13 'target_name': 'sandbox', |
| 14 'type': 'static_library', | 14 'type': 'static_library', |
| 15 'dependencies': [ | 15 'dependencies': [ |
| 16 '../testing/gtest.gyp:gtest', | 16 '../testing/gtest.gyp:gtest', |
| 17 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 18 ], | 18 ], |
| 19 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', |
| 19 'sources': [ | 20 'sources': [ |
| 20 'src/acl.cc', | 21 'src/acl.cc', |
| 21 'src/acl.h', | 22 'src/acl.h', |
| 22 'src/dep.cc', | 23 'src/dep.cc', |
| 23 'src/dep.h', | 24 'src/dep.h', |
| 24 'src/job.cc', | 25 'src/job.cc', |
| 25 'src/job.h', | 26 'src/job.h', |
| 26 'src/restricted_token.cc', | 27 'src/restricted_token.cc', |
| 27 'src/restricted_token.h', | 28 'src/restricted_token.h', |
| 28 'src/restricted_token_utils.cc', | 29 'src/restricted_token_utils.cc', |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 'Debug': { | 308 'Debug': { |
| 308 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', | 309 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', |
| 309 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', | 310 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', |
| 310 }, | 311 }, |
| 311 }, | 312 }, |
| 312 }, | 313 }, |
| 313 ], | 314 ], |
| 314 }], | 315 }], |
| 315 ], | 316 ], |
| 316 } | 317 } |
| OLD | NEW |