| 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': '<(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 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', |
| 20 'sources': [ | 20 'sources': [ |
| 21 'src/acl.cc', | 21 'src/acl.cc', |
| 22 'src/acl.h', | 22 'src/acl.h', |
| 23 'src/dep.cc', | 23 'src/dep.cc', |
| 24 'src/dep.h', | 24 'src/dep.h', |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 317 'Debug': { | 317 'Debug': { |
| 318 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', | 318 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', |
| 319 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', | 319 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', |
| 320 }, | 320 }, |
| 321 }, | 321 }, |
| 322 }, | 322 }, |
| 323 ], | 323 ], |
| 324 }], | 324 }], |
| 325 ], | 325 ], |
| 326 } | 326 } |
| OLD | NEW |