blob: f93fa1862a78504e60047f5a4952f3035682e843 [file] [log] [blame]
Torne (Richard Coles)58218062012-11-14 11:43:16 +00001# 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.
4
5{
6 'variables': {
7 'chromium_code': 1,
8 },
9 'conditions': [
10 [ 'OS=="win"', {
11 'includes': [
12 'win/sandbox_win.gypi',
13 ],
14 }],
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000015 [ 'OS=="linux" or OS=="android"', {
Torne (Richard Coles)58218062012-11-14 11:43:16 +000016 'includes': [
17 'linux/sandbox_linux.gypi',
18 ],
19 }],
Bo Liu5c02ac12014-05-01 10:37:37 -070020 [ 'OS=="mac" and OS!="ios"', {
21 'includes': [
22 'mac/sandbox_mac.gypi',
23 ],
24 }],
Torne (Richard Coles)2a99a7e2013-03-28 15:31:22 +000025 [ 'OS!="win" and OS!="mac" and OS!="linux" and OS!="android"', {
26 # A 'default' to accomodate the "sandbox" target.
Torne (Richard Coles)58218062012-11-14 11:43:16 +000027 'targets': [
28 {
29 'target_name': 'sandbox',
30 'type': 'none',
31 }
32 ]
33 }],
34 ],
35}