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

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

Issue 23005005: [NaCl SDK] nacl_io: Add initial implementations of kill and signal (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits 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',
(...skipping 21 matching lines...) Expand all
32 'mount_mock.h', 32 'mount_mock.h',
33 'mount_node_mock.cc', 33 'mount_node_mock.cc',
34 'mount_node_mock.h', 34 'mount_node_mock.h',
35 'mount_node_test.cc', 35 'mount_node_test.cc',
36 'mount_node_tty_test.cc', 36 'mount_node_tty_test.cc',
37 'mount_test.cc', 37 'mount_test.cc',
38 'path_test.cc', 38 'path_test.cc',
39 'pepper_interface_mock.cc', 39 'pepper_interface_mock.cc',
40 'pepper_interface_mock.h', 40 'pepper_interface_mock.h',
41 'socket_test.cc', 41 'socket_test.cc',
42 'syscalls_test.cc',
42 ], 43 ],
43 'DEPS': ['ppapi_simple', 'nacl_io'], 44 'DEPS': ['ppapi_simple', 'nacl_io'],
44 # Order matters here: gtest has a "main" function that will be used if 45 # Order matters here: gtest has a "main" function that will be used if
45 # referenced before ppapi. 46 # referenced before ppapi.
46 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'], 47 'LIBS': ['gmock', 'ppapi_cpp', 'ppapi', 'gtest', 'pthread'],
47 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'], 48 'INCLUDES': ['$(NACL_SDK_ROOT)/include/gtest/internal'],
48 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'], 49 'CXXFLAGS': ['-Wno-sign-compare', '-Wno-unused-private-field'],
49 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'], 50 'CFLAGS_GCC': ['-Wno-unused-local-typedefs'],
50 } 51 }
51 ], 52 ],
52 'DATA': [ 53 'DATA': [
53 'example.js' 54 'example.js'
54 ], 55 ],
55 'DEST': 'tests', 56 'DEST': 'tests',
56 'NAME': 'nacl_io_test', 57 'NAME': 'nacl_io_test',
57 'TITLE': 'NaCl IO test', 58 'TITLE': 'NaCl IO test',
58 } 59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698