| 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=="linux"', { |
| 11 'targets': [ |
| 12 { |
| 13 'target_name': 'chrome-sandbox', |
| 14 'type': 'executable', |
| 15 'sources': [ |
| 16 'linux/suid/sandbox.cc', |
| 17 ], |
| 18 } |
| 19 ], |
| 20 }], |
| 10 [ 'OS=="win"', { | 21 [ 'OS=="win"', { |
| 11 'targets': [ | 22 'targets': [ |
| 12 { | 23 { |
| 13 'target_name': 'sandbox', | 24 'target_name': 'sandbox', |
| 14 'type': '<(library)', | 25 'type': '<(library)', |
| 15 'dependencies': [ | 26 'dependencies': [ |
| 16 '../testing/gtest.gyp:gtest', | 27 '../testing/gtest.gyp:gtest', |
| 17 '../base/base.gyp:base', | 28 '../base/base.gyp:base', |
| 18 ], | 29 ], |
| 19 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', | 30 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', |
| (...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 'Debug': { | 335 'Debug': { |
| 325 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', | 336 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', |
| 326 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', | 337 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', |
| 327 }, | 338 }, |
| 328 }, | 339 }, |
| 329 }, | 340 }, |
| 330 ], | 341 ], |
| 331 }], | 342 }], |
| 332 ], | 343 ], |
| 333 } | 344 } |
| OLD | NEW |