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

Side by Side Diff: native_client_sdk/src/libraries/gtest/library.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': ['bionic', 'newlib', 'glibc', 'pnacl', 'win', 'linux'], 2 'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'win', 'linux'],
3 'SEARCH': [ 3 'SEARCH': [
4 '.', 4 '.',
5 '../../../../testing/gtest/include/gtest', 5 '../../../../testing/gtest/include/gtest',
6 '../../../../testing/gtest/include/gtest/internal', 6 '../../../../testing/gtest/include/gtest/internal',
7 '../../../../testing/gtest/src', 7 '../../../../testing/gtest/src',
8 ], 8 ],
9 'TARGETS': [ 9 'TARGETS': [
10 { 10 {
11 'NAME' : 'gtest', 11 'NAME' : 'gtest',
12 'TYPE' : 'lib', 12 'TYPE' : 'lib',
13 'SOURCES' : [ 13 'SOURCES' : [
14 'gtest.cc', 14 'gtest.cc',
15 'gtest-death-test.cc', 15 'gtest-death-test.cc',
16 'gtest-filepath.cc', 16 'gtest-filepath.cc',
17 'gtest_main.cc', 17 'gtest_main.cc',
18 'gtest-port.cc', 18 'gtest-port.cc',
19 'gtest-printers.cc', 19 'gtest-printers.cc',
20 'gtest-test-part.cc', 20 'gtest-test-part.cc',
21 'gtest-typed-test.cc', 21 'gtest-typed-test.cc',
22 'nacl_gtest_dummy_sys.cc',
binji 2014/08/05 18:53:10 OK, but this means we can't use gtest independent
23 ], 22 ],
24 'INCLUDES': [ 23 'INCLUDES': [
25 # See comment below about gtest-internal-inl.h 24 # See comment below about gtest-internal-inl.h
26 '$(NACL_SDK_ROOT)/include/gtest/internal', 25 '$(NACL_SDK_ROOT)/include/gtest/internal',
27 ], 26 ],
28 'CXXFLAGS': ['-Wno-unused-const-variable'], 27 'CXXFLAGS': ['-Wno-unused-const-variable'],
29 } 28 }
30 ], 29 ],
31 'HEADERS': [ 30 'HEADERS': [
32 { 31 {
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 # spot. 66 # spot.
68 'FILES': [ 67 'FILES': [
69 'gtest-internal-inl.h', 68 'gtest-internal-inl.h',
70 ], 69 ],
71 'DEST': 'include/gtest/internal/src', 70 'DEST': 'include/gtest/internal/src',
72 }, 71 },
73 ], 72 ],
74 'DEST': 'src', 73 'DEST': 'src',
75 'NAME': 'gtest', 74 'NAME': 'gtest',
76 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698