summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ppapi/native_client/chrome_main.scons1
-rw-r--r--ppapi/native_client/tests/ppapi_test_lib/nacl.scons27
2 files changed, 0 insertions, 28 deletions
diff --git a/ppapi/native_client/chrome_main.scons b/ppapi/native_client/chrome_main.scons
index cd35319..341c1a4 100644
--- a/ppapi/native_client/chrome_main.scons
+++ b/ppapi/native_client/chrome_main.scons
@@ -36,7 +36,6 @@ ppapi_scons_files['untrusted_irt_scons_files'] = []
ppapi_scons_files['nonvariant_test_scons_files'] = [
'tests/breakpad_crash_test/nacl.scons',
- 'tests/ppapi_test_lib/nacl.scons',
]
ppapi_scons_files['irt_variant_test_scons_files'] = [
diff --git a/ppapi/native_client/tests/ppapi_test_lib/nacl.scons b/ppapi/native_client/tests/ppapi_test_lib/nacl.scons
deleted file mode 100644
index cc667a1..0000000
--- a/ppapi/native_client/tests/ppapi_test_lib/nacl.scons
+++ /dev/null
@@ -1,27 +0,0 @@
-# -*- python -*-
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-#
-# Test library for testing PPAPI C layer for PPB_ and PPP_ interfaces.
-#
-# TODO(polina): also factor in the C++ layer?
-# TODO(polina): add trusted build.scons.
-#
-# module_instance.cc - implements PPP and PPP_Instance interfaces.
-# get_browser_interface.cc - implements interface lookup helpers.
-# internal_utils.cc - implements internal helper functions and globals.
-# test_interface.cc - implements the test interface.
-#
-# See ppapi_test_example for sample usage.
-
-Import('env')
-
-env.Prepend(CPPDEFINES=['XP_UNIX'])
-
-env.ComponentLibrary('ppapi_test_lib',
- ['get_browser_interface.cc',
- 'internal_utils.cc',
- 'testable_callback.cc',
- 'module_instance.cc',
- 'test_interface.cc'])