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

Side by Side Diff: native_client_sdk/src/tests/nacl_io_socket_test/example.dsc

Issue 433193002: [NaCl SDK] nacl_io: Remove unneeded glibc syscall entry points. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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
1 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'nacl_io_socket_test', 5 'NAME' : 'nacl_io_socket_test',
6 'TYPE' : 'main', 6 'TYPE' : 'main',
7 'SOURCES' : [ 7 'SOURCES' : [
8 'main.cc', 8 'main.cc',
9 'socket_test.cc', 9 'socket_test.cc',
10 'echo_server.cc', 10 'echo_server.cc',
11 'echo_server.h', 11 'echo_server.h',
12 ], 12 ],
13 'DEPS': ['ppapi_simple', 'nacl_io'], 13 'DEPS': ['ppapi_simple', 'nacl_io'],
14 # Order matters here: gtest has a "main" function that will be used if 14 # Order matters here: gtest has a "main" function that will be used if
15 # referenced before ppapi. 15 # referenced before ppapi.
16 'LIBS': ['ppapi_simple', 'gmock', 'nacl_io', 'ppapi_cpp', 'ppapi', 'gtest' , 'pthread'], 16 'LIBS': ['ppapi_simple', 'gmock', 'ppapi', 'gtest', 'nacl_io', 'ppapi_cpp' , 'pthread'],
17 'CXXFLAGS': ['-Wno-sign-compare'] 17 'CXXFLAGS': ['-Wno-sign-compare']
18 } 18 }
19 ], 19 ],
20 'DATA': [ 20 'DATA': [
21 'example.js' 21 'example.js'
22 ], 22 ],
23 'DEST': 'tests', 23 'DEST': 'tests',
24 'NAME': 'nacl_io_socket_test', 24 'NAME': 'nacl_io_socket_test',
25 'TITLE': 'NaCl IO Socket test', 25 'TITLE': 'NaCl IO Socket test',
26 'SOCKET_PERMISSIONS': [ 26 'SOCKET_PERMISSIONS': [
27 "tcp-listen:*:*", 27 "tcp-listen:*:*",
28 "tcp-connect", 28 "tcp-connect",
29 "resolve-host", 29 "resolve-host",
30 "udp-bind:*:*", 30 "udp-bind:*:*",
31 "udp-send-to:*:*" 31 "udp-send-to:*:*"
32 ] 32 ]
33 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698