Fix Crashes in the New Autofill UI
[chromium-blink-merge.git] / sandbox / sandbox.gyp
blobc953f08aa659d68879bdcab45055b2ebe11a16b0
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
3 # found in the LICENSE file.
6   'variables': {
7     'chromium_code': 1,
8   },
9   'conditions': [
10     [ 'OS=="win"', {
11       'includes': [
12         'win/sandbox_win.gypi',
13       ],
14     }],
15     [ 'OS=="linux"', {
16       'includes': [
17         'linux/sandbox_linux.gypi',
18       ],
19     }],
20     [ 'OS!="win" and OS!="mac" and OS!="linux"', {
21       # We need a 'default' to accomodate the "sandbox" target, for instance
22       # on Android.
23       'targets': [
24         {
25           'target_name': 'sandbox',
26           'type': 'none',
27         }
28        ]
29     }],
30   ],