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

Side by Side Diff: src/trusted/gio/gio_wrapped_desc_tests.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_wrapped_desc.gyp ('k') | src/trusted/gio/testdata/some_binary_file » ('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 'variables': {
8 'conditions': [
9 ['OS=="win"', {
10 'msvs_cygwin_shell': 0,
11 }],
12 ],
13 },
14 'includes': [
15 '../../../build/common.gypi',
16 ],
17 'target_defaults': {
18 'variables': {
19 'target_base': 'none',
20 },
21 'target_conditions': [
22 ['OS=="mac"', {
23 'xcode_settings': {
24 'GCC_ENABLE_CPP_RTTI': 'YES', # override -fno-rtti
25 },
26 }],
27 ],
28 'cflags_cc!': ['-fno-rtti'],
29 },
30 'targets': [
31 {
32 'target_name': 'gio_shm_test',
33 'type': 'executable',
34 'dependencies': [
35 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio',
36 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_c',
37 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
38 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
39 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
40 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc',
41 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac l_util',
42 ],
43 'sources': [
44 'gio_shm_test.c',
45 ],
46 },
47 {
48 'target_name': 'gio_shm_unbounded_test',
49 'type': 'executable',
50 'dependencies': [
51 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio',
52 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_c',
53 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
54 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
55 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
56 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc',
57 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac l_util',
58 ],
59 'sources': [
60 'gio_shm_unbounded_test.c',
61 ],
62 },
63 {
64 'target_name': 'gio_nacl_desc_test',
65 'type': 'executable',
66 'dependencies': [
67 '<(DEPTH)/native_client/src/shared/gio/gio.gyp:gio',
68 '<(DEPTH)/native_client/src/shared/imc/imc.gyp:imc_c',
69 '<(DEPTH)/native_client/src/shared/platform/platform.gyp:platform',
70 '<(DEPTH)/native_client/src/shared/srpc/srpc.gyp:nonnacl_srpc',
71 '<(DEPTH)/native_client/src/trusted/desc/desc.gyp:nrd_xfer',
72 '<(DEPTH)/native_client/src/trusted/gio/gio_wrapped_desc.gyp:gio_wrapped _desc',
73 '<(DEPTH)/native_client/src/trusted/nonnacl_util/nonnacl_util.gyp:nonnac l_util',
74 ],
75 'sources': [
76 'gio_nacl_desc_test.c',
77 ],
78 },
79 ],
80 }
OLDNEW
« no previous file with comments | « src/trusted/gio/gio_wrapped_desc.gyp ('k') | src/trusted/gio/testdata/some_binary_file » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698