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

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

Issue 23498015: [NaCl SDK] Support non blocking TCP/UDP (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove event friends, rename EventListenerPoll Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 { 1 {
2 'TOOLS': ['newlib', 'glibc', 'pnacl'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl'],
3 'SEL_LDR': True, 3 'SEL_LDR': True,
4 4
5 'TARGETS': [ 5 'TARGETS': [
6 { 6 {
7 'NAME' : 'nacl_io_test', 7 'NAME' : 'nacl_io_test',
8 'TYPE' : 'main', 8 'TYPE' : 'main',
9 'SOURCES' : [ 9 'SOURCES' : [
10 'event_test.cc', 10 'event_test.cc',
(...skipping 13 matching lines...) Expand all
24 'main.cc', 24 'main.cc',
25 'mock_util.h', 25 'mock_util.h',
26 'mount_dev_mock.h', 26 'mount_dev_mock.h',
27 'mount_html5fs_test.cc', 27 'mount_html5fs_test.cc',
28 'mount_http_test.cc', 28 'mount_http_test.cc',
29 'mount_mock.cc', 29 'mount_mock.cc',
30 'mount_mock.h', 30 'mount_mock.h',
31 'mount_node_mock.cc', 31 'mount_node_mock.cc',
32 'mount_node_mock.h', 32 'mount_node_mock.h',
33 'mount_node_test.cc', 33 'mount_node_test.cc',
34 'mount_node_tty_test.cc', 34 # 'mount_node_tty_test.cc',
binji 2013/09/12 01:47:57 Remove, the file is #if 0
35 'mount_test.cc', 35 'mount_test.cc',
36 'path_test.cc', 36 'path_test.cc',
37 'pepper_interface_mock.cc', 37 'pepper_interface_mock.cc',
38 'pepper_interface_mock.h', 38 'pepper_interface_mock.h',
39 'socket_test.cc', 39 'socket_test.cc',
40 'syscalls_test.cc', 40 'syscalls_test.cc',
41 ], 41 ],
42 'DEPS': ['ppapi_simple', 'nacl_io'], 42 'DEPS': ['ppapi_simple', 'nacl_io'],
43 # Order matters here: gtest has a "main" function that will be used if 43 # Order matters here: gtest has a "main" function that will be used if
44 # referenced before ppapi. 44 # referenced before ppapi.
45 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], 45 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'],
46 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], 46 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'],
47 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], 47 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'],
48 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], 48 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'],
49 } 49 }
50 ], 50 ],
51 'DATA': [ 51 'DATA': [
52 'example.js' 52 'example.js'
53 ], 53 ],
54 'DEST': 'tests', 54 'DEST': 'tests',
55 'NAME': 'nacl_io_test', 55 'NAME': 'nacl_io_test',
56 'TITLE': 'NaCl IO test', 56 'TITLE': 'NaCl IO test',
57 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698