summaryrefslogtreecommitdiffstats
path: root/ppapi
diff options
context:
space:
mode:
authormseaborn <mseaborn@chromium.org>2016-03-14 14:33:03 -0700
committerCommit bot <commit-bot@chromium.org>2016-03-14 21:35:18 +0000
commiteea1fa26c3d6fa0bd6e088980f1e55b15660ada9 (patch)
tree51dafc22ea875a898da245fc92ea058977c9e0b6 /ppapi
parentb6f61ce5c35e985cf07279ea25fd846b0b9d6f9d (diff)
downloadchromium_src-eea1fa26c3d6fa0bd6e088980f1e55b15660ada9.zip
chromium_src-eea1fa26c3d6fa0bd6e088980f1e55b15660ada9.tar.gz
chromium_src-eea1fa26c3d6fa0bd6e088980f1e55b15660ada9.tar.bz2
NaCl cleanup: Remove ppapi_test_lib from the Scons build
This is no longer used in the Scons build since I removed the Scons-based tests in ppapi/native_client/tests/nacl_browser/browser_dynamic_library/. However, ppapi_test_lib is still used by chrome/test/data/nacl/, by Gyp/GN-built tests. BUG=154400 TEST=nacl_integration on the trybots Review URL: https://codereview.chromium.org/1796963002 Cr-Commit-Position: refs/heads/master@{#381076}
Diffstat (limited to 'ppapi')
-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'])