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

Side by Side Diff: ppapi/native_client/tests/ppapi_geturl/build.scons

Issue 8589005: Remove NaCl file from ppapi_geturl test. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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 | « no previous file | ppapi/native_client/tests/ppapi_geturl/module.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 # A way to build the nexe as a trusted plugin to validate directly 6 # A way to build the nexe as a trusted plugin to validate directly
7 # against Chrome on Linux using 7 # against Chrome on Linux using
8 # --register-pepper-plugins="/path/to/libppapi_geturl.so;application/x-nacl" 8 # --register-pepper-plugins="/path/to/libppapi_geturl.so;application/x-nacl"
9 # http://localhost:5103/scons-out/nacl-x86-../staging/ppapi_geturl.html 9 # http://localhost:5103/scons-out/nacl-x86-../staging/ppapi_geturl.html
10 10
11 Import('env') 11 Import('env')
12 12
13 if env.Bit('linux'): 13 if env.Bit('linux'):
14 env['COMPONENT_STATIC'] = False # Build a .so, not a .a 14 env['COMPONENT_STATIC'] = False # Build a .so, not a .a
15 15
16 sources = [ 'module.cc', 16 sources = [ 'module.cc',
17 # This allow us to verify that the code builds before
18 # untrusted nacl_file is fully functioning.
19 # However, main() won't be called when we loaded the trusted
20 # plugin as a dll.
21 'nacl_file_main.cc',
22 'ppapi_geturl.cc', 17 'ppapi_geturl.cc',
23 'url_load_request.cc' ] 18 'url_load_request.cc' ]
24 19
25 libs = [ 'ppapi_cpp', 20 libs = [ 'ppapi_cpp',
26 'imc', 21 'imc',
27 'gio', 22 'gio',
28 'pthread' ] 23 'pthread' ]
29 24
30 ppapi_geturl = env.ComponentLibrary('ppapi_geturl', 25 ppapi_geturl = env.ComponentLibrary('ppapi_geturl',
31 sources, 26 sources,
32 EXTRA_LIBS=libs, 27 EXTRA_LIBS=libs,
33 no_import_lib=True) 28 no_import_lib=True)
OLDNEW
« no previous file with comments | « no previous file | ppapi/native_client/tests/ppapi_geturl/module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698