Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: sandbox/sandbox.gyp

Issue 2332843004: Remove GYP files. (Closed)
Patch Set: Merge Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « sandbox/mac/sandbox_mac.gypi ('k') | sandbox/win/sandbox_win.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'conditions': [
10 [ 'OS=="win"', {
11 'includes': [
12 'win/sandbox_win.gypi',
13 ],
14 }],
15 [ 'OS=="linux" or OS=="android"', {
16 'includes': [
17 'linux/sandbox_linux.gypi',
18 ],
19 }],
20 [ 'OS=="mac" and OS!="ios"', {
21 'includes': [
22 'mac/sandbox_mac.gypi',
23 ],
24 }],
25 [ 'OS!="win" and OS!="mac" and OS!="linux" and OS!="android"', {
26 # A 'default' to accomodate the "sandbox" target.
27 'targets': [
28 {
29 'target_name': 'sandbox',
30 'type': 'none',
31 }
32 ]
33 }],
34 ],
35 }
OLDNEW
« no previous file with comments | « sandbox/mac/sandbox_mac.gypi ('k') | sandbox/win/sandbox_win.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698