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

Unified Diff: src/trusted/gio/build.scons

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/trusted/gio/BUILD.gn ('k') | src/trusted/gio/gio_nacl_desc.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/gio/build.scons
diff --git a/src/trusted/gio/build.scons b/src/trusted/gio/build.scons
deleted file mode 100644
index 9f3a5235b23c929698f469c2a85acff0aba3f218..0000000000000000000000000000000000000000
--- a/src/trusted/gio/build.scons
+++ /dev/null
@@ -1,83 +0,0 @@
-# -*- python -*-
-# Copyright (c) 2010 The Native Client Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-
-Import('env')
-
-# TODO(robertm): consider adding this to the top level scons files
-env.Append(CPPPATH=['${TARGET_ROOT}'])
-
-env.DualLibrary('gio_wrapped_desc',
- ['gio_shm.c',
- 'gio_shm_unbounded.c',
- 'gio_nacl_desc.c',
- ])
-
-# ----------------------------------------------------------
-# Unit Tests
-# ----------------------------------------------------------
-
-if not env.Bit('coverage_enabled') or not env.Bit('windows'):
- gio_shm_test_exe = env.ComponentProgram('gio_shm_test',
- ['gio_shm_test.c'],
- EXTRA_LIBS=['gio_wrapped_desc',
- 'nonnacl_srpc',
- 'nrd_xfer',
- 'nacl_base',
- 'imc',
- 'platform',
- 'gio',
- ])
- if env.Bit('target_arm'):
- params = [ '-n', '512', '-m', '2']
- else:
- params = [] # default
- node = env.CommandTest(
- 'gio_shm_test.out',
- command=[gio_shm_test_exe] + params)
- env.AddNodeToTestSuite(node, ['large_tests'], 'run_gio_shm_test')
-
- gio_shm_unbounded_test_exe = (
- env.ComponentProgram('gio_shm_unbounded_test',
- ['gio_shm_unbounded_test.c'],
- EXTRA_LIBS=['gio_wrapped_desc',
- 'nonnacl_srpc',
- 'nrd_xfer',
- 'nacl_base',
- 'imc',
- 'platform',
- 'gio',
- ]))
- node = env.CommandTest(
- 'gio_shm_unbounded_test.out',
- command=[gio_shm_unbounded_test_exe,])
-
- env.AddNodeToTestSuite(node, ['small_tests'], 'run_gio_shm_unbounded_test')
-
- gio_nacl_desc_test_exe = env.ComponentProgram(
- 'gio_nacl_desc_test',
- ['gio_nacl_desc_test.c'],
- EXTRA_LIBS=['gio_wrapped_desc',
- 'nonnacl_srpc',
- 'nrd_xfer',
- 'nacl_base',
- 'imc',
- 'platform',
- 'gio',
- ])
-
- temp_path = env.MakeEmptyFile(prefix='tmp_gio')
-
- node = env.CommandTest('gio_nacl_desc_test.out',
- command = [gio_nacl_desc_test_exe,
- # TODO(krasin): use
- # testdata/some_binary_file, since
- # it's used just as a file with
- # bytes, not as a NaCl module.
- env.File('../service_runtime/testdata/fib_array.nexe'),
- temp_path])
-
- env.AddNodeToTestSuite(node, ['small_tests'], 'run_gio_nacl_desc_test')
« no previous file with comments | « src/trusted/gio/BUILD.gn ('k') | src/trusted/gio/gio_nacl_desc.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698