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

Unified Diff: tests/ppapi_proxy/nacl.scons

Issue 7292002: Remove plugin connection to PPAPI scriptable objects (var deprecated). Also (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: '' Created 9 years, 5 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 | « tests/ppapi_proxy/basic_object.nmf ('k') | tests/ppapi_proxy/user_main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/ppapi_proxy/nacl.scons
===================================================================
--- tests/ppapi_proxy/nacl.scons (revision 6005)
+++ tests/ppapi_proxy/nacl.scons (working copy)
@@ -1,52 +0,0 @@
-# -*- python -*-
-# Copyright (c) 2011 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('env')
-
-# TODO(robertm): those should not be necessary once we go -std=c99
-env.FilterOut(CFLAGS=['-pedantic'])
-env.FilterOut(CCFLAGS=['-pedantic'])
-
-basic_obj_sources = env.ComponentObject('basic_object.cc'),
-
-basic_obj_target = 'ppapi_basic_object_%s' % env.get('TARGET_FULLARCH')
-env.Alias('ppapi_basic_object${PROGSUFFIX}',
- ['$STAGING_DIR/%s${PROGSUFFIX}' % basic_obj_target])
-basic_object_nexe = env.ComponentProgram(basic_obj_target,
- [basic_obj_sources],
- EXTRA_LIBS=['${PPAPI_LIBS}'])
-
-# Note that the html and a .nmf manifest is required to run this program.
-dest_copy = env.Replicate('$STAGING_DIR',
- ['basic_object.html',
- 'basic_object.nmf',
- 'user_main.nmf',
- env.File('${SCONSTRUCT_DIR}/tools/browser_tester/'
- 'browserdata/nacltest.js')])
-env.Depends(basic_obj_target, dest_copy)
-
-user_main_target = 'ppapi_user_main_%s' % env.get('TARGET_FULLARCH')
-env.Alias('ppapi_user_main${PROGSUFFIX}',
- ['$STAGING_DIR/%s${PROGSUFFIX}' % user_main_target])
-user_main_nexe = env.ComponentProgram(user_main_target,
- [basic_obj_sources, 'user_main.cc',],
- EXTRA_LIBS=['${PPAPI_LIBS}'])
-
-env.Depends(user_main_target, dest_copy)
-
-node = env.PPAPIBrowserTester(
- 'ppapi_basic_object_browser_test.out',
- url='basic_object.html',
- files=[basic_object_nexe,
- user_main_nexe,
- env.File('basic_object.html'),
- env.File('basic_object.nmf'),
- env.File('user_main.nmf')],
- args=['--enable_experimental_js'])
-
-env.AddNodeToTestSuite(node,
- ['chrome_browser_tests'],
- 'run_ppapi_basic_object_browser_test',
- is_broken=env.PPAPIBrowserTesterIsBroken())
« no previous file with comments | « tests/ppapi_proxy/basic_object.nmf ('k') | tests/ppapi_proxy/user_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698