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

Side by Side Diff: src/trusted/gio/gio_wrapped_desc.gyp

Issue 594733005: Cleanup: Remove src/trusted/gio/, since it is unused (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Fix Created 6 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 | Annotate | Revision Log
« no previous file with comments | « src/trusted/gio/gio_shm_unbounded_test.c ('k') | src/trusted/gio/gio_wrapped_desc_tests.gyp » ('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 # -*- python -*-
2 # Copyright 2010 The Native Client Authors. All rights reserved. Use
3 # of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
5
6 {
7 'includes': [
8 '../../../build/common.gypi',
9 ],
10 'target_defaults': {
11 'variables':{
12 'target_base': 'none',
13 },
14 'target_conditions': [
15 ['OS=="linux" or OS=="mac"', {
16 'cflags': [
17 '-fexceptions',
18 ],
19 'cflags_cc' : [
20 '-frtti',
21 ]
22 }],
23 ['OS=="mac"', {
24 'xcode_settings': {
25 'GCC_ENABLE_CPP_EXCEPTIONS': 'YES', # -fexceptions
26 'GCC_ENABLE_CPP_RTTI': 'YES', # -frtti
27 }
28 }],
29 ],
30 },
31 'targets': [
32 {
33 'target_name': 'gio_wrapped_desc',
34 'type': 'static_library',
35 'sources': [
36 'gio_shm.c',
37 'gio_shm_unbounded.c',
38 'gio_nacl_desc.c',
39 ],
40 'dependencies': [
41 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio',
42 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
43 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
44 ],
45 },
46 ],
47 'conditions': [
48 ['OS=="win" and target_arch=="ia32"', {
49 'targets': [
50 {
51 'target_name': 'gio_wrapped_desc64',
52 'type': 'static_library',
53 'variables': {
54 'win_target': 'x64',
55 },
56 'sources': [
57 'gio_shm.c',
58 'gio_shm_unbounded.c',
59 'gio_nacl_desc.c',
60 ],
61 'dependencies': [
62 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio64',
63 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform64' ,
64 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer64',
65 ],
66 },
67 ],
68 }],
69 ]
70 }
OLDNEW
« no previous file with comments | « src/trusted/gio/gio_shm_unbounded_test.c ('k') | src/trusted/gio/gio_wrapped_desc_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698