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

Side by Side Diff: tests/ppapi_test_lib/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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « tests/ppapi_test_lib/module_instance.cc ('k') | tests/ppapi_test_lib/scriptable_object.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # -*- python -*- 1 # -*- python -*-
2 # Copyright (c) 2011 The Native Client Authors. All rights reserved. 2 # Copyright (c) 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 # 5 #
6 # Test library for testing PPAPI C layer for PPB_ and PPP_ interfaces. 6 # Test library for testing PPAPI C layer for PPB_ and PPP_ interfaces.
7 # 7 #
8 # TODO(polina): also factor in the C++ layer? 8 # TODO(polina): also factor in the C++ layer?
9 # TODO(polina): add trusted build.scons. 9 # TODO(polina): add trusted build.scons.
10 # 10 #
11 # module_instance.cc - implements PPP and PPP_Instance interfaces. 11 # module_instance.cc - implements PPP and PPP_Instance interfaces.
12 # scriptable_object.cc - implements the scripting interface.
13 # get_browser_interface.cc - implements interface lookup helpers. 12 # get_browser_interface.cc - implements interface lookup helpers.
14 # internal_utils.cc - implements internal helper functions and globals. 13 # internal_utils.cc - implements internal helper functions and globals.
15 # test_interface.cc - implements the test interface. 14 # test_interface.cc - implements the test interface.
16 # 15 #
17 # See ppapi_test_example for sample usage. 16 # See ppapi_test_example for sample usage.
18 17
19 Import('env') 18 Import('env')
20 19
21 env.Prepend(CPPDEFINES=['XP_UNIX']) 20 env.Prepend(CPPDEFINES=['XP_UNIX'])
22 21
23 env.ComponentLibrary('ppapi_test_lib', 22 env.ComponentLibrary('ppapi_test_lib',
24 ['get_browser_interface.cc', 23 ['get_browser_interface.cc',
25 'internal_utils.cc', 24 'internal_utils.cc',
26 'module_instance.cc', 25 'module_instance.cc',
27 'scriptable_object.cc',
28 'test_interface.cc']); 26 'test_interface.cc']);
OLDNEW
« no previous file with comments | « tests/ppapi_test_lib/module_instance.cc ('k') | tests/ppapi_test_lib/scriptable_object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698