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

Side by Side Diff: native_client_sdk/src/libraries/gtest_ppapi/library.dsc

Issue 11066105: [NaCl SDK] nacl_mounts: wrap functions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win fix Created 8 years, 2 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', 'win', 'linux'], 2 'TOOLS': ['newlib', 'glibc', 'win', 'linux'],
3 'TARGETS': [ 3 'TARGETS': [
4 { 4 {
5 'NAME' : 'gtest_ppapi', 5 'NAME' : 'gtest_ppapi',
6 # gtest-typed-test.h:239:47: error: anonymous variadic macros were introdu ced in C99 [-Werror=variadic-macros] 6 # gtest-typed-test.h:239:47: error: anonymous variadic macros were introdu ced in C99 [-Werror=variadic-macros]
7 'CXXFLAGS': ['-Wno-variadic-macros'], 7 'CXXFLAGS': ['-Wno-variadic-macros'],
8 'TYPE' : 'lib', 8 'TYPE' : 'lib',
9 'SOURCES' : [ 9 'SOURCES' : [
10 "gtest_event_listener.cc", 10 "gtest_event_listener.cc",
11 "gtest_instance.cc", 11 "gtest_instance.cc",
12 "gtest_module.cc", 12 "gtest_module.cc",
13 "gtest_nacl_environment.cc", 13 "gtest_nacl_environment.cc",
14 "gtest_runner.cc", 14 "gtest_runner.cc",
15 ], 15 ],
16 } 16 }
17 ], 17 ],
18 'HEADERS': [ 18 'HEADERS': [
19 { 19 {
20 'FILES': [ 20 'FILES': [
21 "gtest_event_listener.h", 21 "gtest_event_listener.h",
22 "gtest_instance.h", 22 "gtest_instance.h",
23 "gtest_module.h",
23 "gtest_nacl_environment.h", 24 "gtest_nacl_environment.h",
24 "gtest_runner.h", 25 "gtest_runner.h",
25 "thread_condition.h", 26 "thread_condition.h",
26 ], 27 ],
27 'DEST': 'include/gtest_ppapi', 28 'DEST': 'include/gtest_ppapi',
28 }, 29 },
29 ], 30 ],
30 'DEST': 'testlibs', 31 'DEST': 'testlibs',
31 'NAME': 'gtest_ppapi', 32 'NAME': 'gtest_ppapi',
32 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698