| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 [ 'OS=="win"', { | 10 [ 'OS=="win"', { |
| 11 'includes': [ | 11 'includes': [ |
| 12 'win/sandbox_win.gypi', | 12 'win/sandbox_win.gypi', |
| 13 ], | 13 ], |
| 14 }], | 14 }], |
| 15 [ 'OS=="linux" or OS=="android"', { | 15 [ 'OS=="linux" or OS=="android"', { |
| 16 'includes': [ | 16 'includes': [ |
| 17 'linux/sandbox_linux.gypi', | 17 'linux/sandbox_linux.gypi', |
| 18 ], | 18 ], |
| 19 }], | 19 }], |
| 20 [ 'OS=="mac" and OS!="ios"', { |
| 21 'includes': [ |
| 22 'mac/sandbox_mac.gypi', |
| 23 ], |
| 24 }], |
| 20 [ 'OS!="win" and OS!="mac" and OS!="linux" and OS!="android"', { | 25 [ 'OS!="win" and OS!="mac" and OS!="linux" and OS!="android"', { |
| 21 # A 'default' to accomodate the "sandbox" target. | 26 # A 'default' to accomodate the "sandbox" target. |
| 22 'targets': [ | 27 'targets': [ |
| 23 { | 28 { |
| 24 'target_name': 'sandbox', | 29 'target_name': 'sandbox', |
| 25 'type': 'none', | 30 'type': 'none', |
| 26 } | 31 } |
| 27 ] | 32 ] |
| 28 }], | 33 }], |
| 29 ], | 34 ], |
| 30 } | 35 } |
| OLD | NEW |