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

Side by Side Diff: sandbox/sandbox.gyp

Issue 10783004: Move Windows Sandbox, trybots version (don't commit me!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to top of tree Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « content/worker/worker_main.cc ('k') | sandbox/sandbox_poc/main_ui_window.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'sandbox_win.gypi', 12 'win/sandbox_win.gypi',
13 ], 13 ],
14 }], 14 }],
15 [ 'OS=="linux"', { 15 [ 'OS=="linux"', {
16 'includes': [ 16 'includes': [
17 'sandbox_linux.gypi', 17 'sandbox_linux.gypi',
18 ], 18 ],
19 }], 19 }],
20 [ 'OS!="win" and OS!="mac" and OS!="linux"', { 20 [ 'OS!="win" and OS!="mac" and OS!="linux"', {
21 # We need a 'default' to accomodate the "sandbox" target, for instance 21 # We need a 'default' to accomodate the "sandbox" target, for instance
22 # on Android. 22 # on Android.
23 'targets': [ 23 'targets': [
24 { 24 {
25 'target_name': 'sandbox', 25 'target_name': 'sandbox',
26 'type': 'none', 26 'type': 'none',
27 } 27 }
28 ] 28 ]
29 }], 29 }],
30 ], 30 ],
31 } 31 }
OLDNEW
« no previous file with comments | « content/worker/worker_main.cc ('k') | sandbox/sandbox_poc/main_ui_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698