summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPS8
-rw-r--r--ppapi/tests/nacl.scons69
-rw-r--r--ppapi/tests/test_case.nmf7
3 files changed, 4 insertions, 80 deletions
diff --git a/DEPS b/DEPS
index 9c809c5..10a1e49 100644
--- a/DEPS
+++ b/DEPS
@@ -9,10 +9,10 @@ vars = {
"swig_revision": "69281",
# These hashes need to be updated when nacl_revision is changed.
# After changing nacl_revision, run gclient sync to get the new values.
- "nacl_irt_hash_x86_32": "06efd9f7182db27a8d17f910dd001230a4032ab5",
- "nacl_irt_hash_x86_64": "ebb81e9511c2deebbbd2bcfd642b1bb25a9c6f44",
- "nacl_revision": "5679",
- "nacl_tools_revision": "5675",
+ "nacl_irt_hash_x86_32": "6bfe02f196271a3dd2606aa97619c638384d488e",
+ "nacl_irt_hash_x86_64": "9d6b612124b85963160adcfd6a5f0a203405fc9e",
+ "nacl_revision": "5783",
+ "nacl_tools_revision": "5360",
"libjingle_revision": "66",
"libvpx_revision": "90416",
"ffmpeg_revision": "88382",
diff --git a/ppapi/tests/nacl.scons b/ppapi/tests/nacl.scons
deleted file mode 100644
index 197b0f4..0000000
--- a/ppapi/tests/nacl.scons
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright (c) 2010 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.
-
-Import('env')
-
-ppapi_tests_target = 'ppapi_tests_%s.nexe' % env.get('TARGET_FULLARCH')
-
-ppapi_tests_sources = [
- # Common test files
- 'test_case.cc',
- 'test_utils.cc',
- 'testing_instance.cc',
-
- # Compile-time tests
- 'test_c_includes.c',
- 'test_cpp_includes.cc',
- 'test_struct_sizes.c',
-
- # Test cases (PLEASE KEEP THIS SECTION IN ALPHABETICAL ORDER)
- # Add/uncomment PPAPI interfaces below when they get proxied.
- #'test_buffer.cc',
- #'test_char_set.cc',
- #'test_directory_reader.cc',
- #'test_file_io.cc',
- #'test_file_ref.cc',
- #'test_file_system.cc',
- 'test_graphics_2d.cc',
- 'test_image_data.cc',
- 'test_paint_aggregator.cc',
- 'test_post_message.cc',
- 'test_scrollbar.cc',
- #'test_transport.cc',
- #'test_uma.cc',
- # Activating the URL loader test requires a test httpd that
- # understands HTTP POST, which our current httpd.py doesn't.
- # It also requires deactivating the tests that use FileIOTrusted
- # when running in NaCl.
- #'test_url_loader.cc',
- #'test_url_util.cc',
- #'test_video_decoder.cc',
-
- # Deprecated test cases.
- 'test_instance_deprecated.cc',
- # Var_deprecated fails in TestPassReference, and we probably won't
- # fix it.
- #'test_var_deprecated.cc'
- ]
-
-ppapi_tests_nexe = env.ComponentProgram(ppapi_tests_target,
- ppapi_tests_sources,
- EXTRA_LIBS=['${PPAPI_LIBS}',
- 'ppapi_cpp'
- ])
-
-# Note that the html is required to run this program.
-# To run, load page with mode=nacl search string:
-# http://localhost:5103/scons-out/nacl-x86-32/staging/test_case.html?mode=nacl
-# http://localhost:5103/scons-out/nacl-x86-64/staging/test_case.html?mode=nacl
-
-env.Publish(ppapi_tests_target, 'run',
- ['test_url_loader_data/*'], subdir='test_url_loader_data')
-
-env.Publish(ppapi_tests_target, 'run',
- [ppapi_tests_nexe,
- 'test_case.html',
- 'test_case.nmf',
- 'test_image_data',
- 'test_page.css'])
diff --git a/ppapi/tests/test_case.nmf b/ppapi/tests/test_case.nmf
deleted file mode 100644
index 40af7cc..0000000
--- a/ppapi/tests/test_case.nmf
+++ /dev/null
@@ -1,7 +0,0 @@
-{
- "nexes": {
- "x86-64": "ppapi_tests_x86-64.nexe",
- "x86-32": "ppapi_tests_x86-32.nexe",
- "arm" : "ppapi_tests_arm.nexe"
- }
-} \ No newline at end of file