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

Unified Diff: ppapi/native_client/tests/nacl_browser/nameservice/nacl.scons

Issue 10914053: Relocating files in the nacl repo that belong in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 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
Index: ppapi/native_client/tests/nacl_browser/nameservice/nacl.scons
diff --git a/ppapi/native_client/tests/nacl_browser/nameservice/nacl.scons b/ppapi/native_client/tests/nacl_browser/nameservice/nacl.scons
new file mode 100644
index 0000000000000000000000000000000000000000..ca975a00c9469a1d6520968b863ccaf0cade248e
--- /dev/null
+++ b/ppapi/native_client/tests/nacl_browser/nameservice/nacl.scons
@@ -0,0 +1,41 @@
+# -*- python -*-
+# Copyright (c) 2012 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')
+
+# postmessage version of srpc_nameservice_test
+
+pm_ns_obj = env.ComponentObject('pm_nameservice_test.o',
+ 'pm_nameservice_test.cc')
+pm_ns_nexe_name = env.ProgramNameForNmf('pm_nameservice_test')
+pm_ns_nexe = env.ComponentProgram(pm_ns_nexe_name,
+ pm_ns_obj,
+ EXTRA_LIBS=['nacl_ppapi_util',
+ 'ppapi_cpp',
+ 'pthread',
+ 'srpc',
+ 'platform',
+ 'gio',
+ 'imc',
+ 'imc_syscalls',
+ ])
+env.Publish(pm_ns_nexe_name, 'run',
+ ['pm_nameservice_test.html'])
+
+# chrome_browser_tests
+
+node = env.PPAPIBrowserTester(
+ 'pm_nameservice_browser_test.out',
+ url='pm_nameservice_test.html',
+ nmf_names=['pm_nameservice_test'],
+ files=env.ExtractPublishedFiles(pm_ns_nexe_name),
+ args=['--debug'],
+ osenv=['NACLVERBOSITY=0:pp_weak_ref=0:weak_ref=0']
+ )
+
+env.AddNodeToTestSuite(node,
+ ['chrome_browser_tests'],
+ 'run_pm_nameservice_chrome_browser_test',
+ is_broken=env.PPAPIBrowserTesterIsBroken())

Powered by Google App Engine
This is Rietveld 408576698