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

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

Issue 23075013: [NaCl SDK] Enable select/poll on TTY nodes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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'], 2 'TOOLS': ['newlib', 'glibc', 'pnacl'],
3 'SEL_LDR': True, 3 'SEL_LDR': True,
4 4
5 # Need to add ../../examples for common.js 5 # Need to add ../../examples for common.js
6 'SEARCH': ['.', '../../examples'], 6 'SEARCH': ['.', '../../examples'],
7 'TARGETS': [ 7 'TARGETS': [
8 { 8 {
9 'NAME' : 'nacl_io_test', 9 'NAME' : 'nacl_io_test',
10 'TYPE' : 'main', 10 'TYPE' : 'main',
11 'SOURCES' : [ 11 'SOURCES' : [
12 'event_test.cc', 12 'event_test.cc',
13 'kernel_object_test.cc', 13 'kernel_object_test.cc',
14 'kernel_proxy_mock.cc', 14 'kernel_proxy_mock.cc',
15 'kernel_proxy_mock.h', 15 'kernel_proxy_mock.h',
16 'kernel_proxy_test.cc', 16 'kernel_proxy_test.cc',
17 'kernel_wrap_test.cc', 17 'kernel_wrap_test.cc',
18 'main.cc', 18 'main.cc',
19 'mock_util.h', 19 'mock_util.h',
20 'mount_dev_mock.h',
20 'mount_html5fs_test.cc', 21 'mount_html5fs_test.cc',
21 'mount_http_test.cc', 22 'mount_http_test.cc',
22 'mount_mock.cc', 23 'mount_mock.cc',
23 'mount_mock.h', 24 'mount_mock.h',
24 'mount_node_mock.cc', 25 'mount_node_mock.cc',
25 'mount_node_mock.h', 26 'mount_node_mock.h',
26 'mount_node_test.cc', 27 'mount_node_test.cc',
28 'mount_node_tty_test.cc',
27 'mount_test.cc', 29 'mount_test.cc',
28 'path_test.cc', 30 'path_test.cc',
29 'pepper_interface_mock.cc', 31 'pepper_interface_mock.cc',
30 'pepper_interface_mock.h', 32 'pepper_interface_mock.h',
31 » 'socket_test.cc', 33 'socket_test.cc'
32 ], 34 ],
33 'DEPS': ['ppapi_simple', 'nacl_io'], 35 'DEPS': ['ppapi_simple', 'nacl_io'],
34 # Order matters here: gtest has a "main" function that will be used if 36 # Order matters here: gtest has a "main" function that will be used if
35 # referenced before ppapi. 37 # referenced before ppapi.
36 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], 38 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'],
37 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], 39 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'],
38 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], 40 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'],
39 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], 41 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'],
40 } 42 }
41 ], 43 ],
42 'DATA': [ 44 'DATA': [
43 'example.js' 45 'example.js'
44 ], 46 ],
45 'DEST': 'tests', 47 'DEST': 'tests',
46 'NAME': 'nacl_io_test', 48 'NAME': 'nacl_io_test',
47 'TITLE': 'NaCl IO test', 49 'TITLE': 'NaCl IO test',
48 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698