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

Side by Side Diff: sandbox/sandbox.gyp

Issue 62127: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | « printing/printing.gyp ('k') | sdch/sdch.gyp » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'includes': [ 6 'includes': [
7 '../build/common.gypi', 7 '../build/common.gypi',
8 ], 8 ],
9 'conditions': [ 9 'conditions': [
10 [ 'OS=="win"', { 10 [ 'OS=="win"', {
11 'targets': [ 11 'targets': [
12 { 12 {
13 'target_name': 'sandbox', 13 'target_name': 'sandbox',
14 'type': 'static_library', 14 'type': '<(library)',
15 'dependencies': [ 15 'dependencies': [
16 '../testing/gtest.gyp:gtest', 16 '../testing/gtest.gyp:gtest',
17 '../base/base.gyp:base', 17 '../base/base.gyp:base',
18 ], 18 ],
19 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343', 19 'msvs_guid': '881F6A97-D539-4C48-B401-DF04385B2343',
20 'sources': [ 20 'sources': [
21 'src/acl.cc', 21 'src/acl.cc',
22 'src/acl.h', 22 'src/acl.h',
23 'src/dep.cc', 23 'src/dep.cc',
24 'src/dep.h', 24 'src/dep.h',
(...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
317 'Debug': { 317 'Debug': {
318 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', 318 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h',
319 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', 319 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc',
320 }, 320 },
321 }, 321 },
322 }, 322 },
323 ], 323 ],
324 }], 324 }],
325 ], 325 ],
326 } 326 }
OLDNEW
« no previous file with comments | « printing/printing.gyp ('k') | sdch/sdch.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698