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

Side by Side Diff: ppapi/native_client/tests/ppapi_browser/ppb_file_system/build.scons

Issue 7740013: Cloning a bunch of stuff from the native_client repository at r6528 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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
OLDNEW
(Empty)
1 # -*- python -*-
2 # Copyright 2011 The Native Client Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can
4 # be found in the LICENSE file.
5
6 # A way to build the nexe as a trusted plugin to validate directly
7 # against Chrome on Linux using
8 # --register-pepper-plugins="/path/to/libppapi_ppb_file_system.so;application/x- nacl"
9 # http://localhost:5103/scons-out/nacl-x86-../staging/ppapi_ppb_file_system.html
10
11 Import('env')
12
13 if env.Bit('linux'):
14 env['COMPONENT_STATIC'] = False # Build a .so, not a .a
15 env.Append(CFLAGS=['-std=c99'])
16
17 sources = ['ppapi_ppb_file_system.cc']
18
19 libs = ['imc',
20 'gio',
21 'pthread' ]
22
23 ppapi_geturl = env.ComponentLibrary('ppapi_ppb_file_system',
24 sources,
25 EXTRA_LIBS=libs,
26 no_import_lib=True)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698