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

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

Issue 295933009: [NaCl SDK] Add realpath(3) implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix pnacl and add comment about linux standalone test Created 6 years, 7 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': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux'], 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux'],
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 'dev_fs_for_testing.h', 10 'dev_fs_for_testing.h',
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'kernel_proxy_test.cc', 46 'kernel_proxy_test.cc',
47 'kernel_wrap_test.cc', 47 'kernel_wrap_test.cc',
48 'main.cc', 48 'main.cc',
49 'mem_fs_node_test.cc', 49 'mem_fs_node_test.cc',
50 'mock_fs.cc', 50 'mock_fs.cc',
51 'mock_fs.h', 51 'mock_fs.h',
52 'mock_kernel_proxy.h', 52 'mock_kernel_proxy.h',
53 'mock_node.cc', 53 'mock_node.cc',
54 'mock_node.h', 54 'mock_node.h',
55 'mock_util.h', 55 'mock_util.h',
56 'syscalls_test.cc',
56 'path_test.cc', 57 'path_test.cc',
57 'pepper_interface_mock.cc', 58 'pepper_interface_mock.cc',
58 'pepper_interface_mock.h', 59 'pepper_interface_mock.h',
59 'socket_test.cc', 60 'socket_test.cc',
60 'tty_test.cc', 61 'tty_test.cc',
61 ], 62 ],
62 'DEPS': ['ppapi_simple', 'nacl_io'], 63 'DEPS': ['ppapi_simple', 'nacl_io'],
63 # Order matters here: gtest has a "main" function that will be used if 64 # Order matters here: gtest has a "main" function that will be used if
64 # referenced before ppapi. 65 # referenced before ppapi.
65 'LIBS': ['ppapi_simple', 'gmock', 'nacl_io', 'ppapi_cpp', 'ppapi', 'gtest' , 'pthread'], 66 'LIBS': ['ppapi_simple', 'gmock', 'nacl_io', 'ppapi_cpp', 'ppapi', 'gtest' , 'pthread'],
66 'INCLUDES': ["."], 67 'INCLUDES': ["."],
67 'CXXFLAGS': ['-Wno-sign-compare'], 68 'CXXFLAGS': ['-Wno-sign-compare'],
68 } 69 }
69 ], 70 ],
70 'DATA': [ 71 'DATA': [
71 'example.js' 72 'example.js'
72 ], 73 ],
73 'DEST': 'tests', 74 'DEST': 'tests',
74 'NAME': 'nacl_io_test', 75 'NAME': 'nacl_io_test',
75 'TITLE': 'NaCl IO test', 76 'TITLE': 'NaCl IO test',
76 } 77 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698