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

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

Issue 11098080: [NaCl SDK] Add gmock library to be build by build_sdk.py (only for testing) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « native_client_sdk/src/build_tools/build_sdk.py ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'TOOLS': ['newlib', 'glibc', 'win', 'linux', 'pnacl'],
3 'SEARCH': [
4 '../../../../testing/gmock/include/gmock',
5 '../../../../testing/gmock/include/gmock/internal',
6 '../../../../testing/gmock/src',
7 ],
8 'TARGETS': [
9 {
10 'NAME' : 'gmock',
11 'TYPE' : 'lib',
12 'SOURCES' : [
13 'gmock.cc',
14 'gmock-matchers.cc',
15 'gmock-cardinalities.cc',
16 'gmock-internal-utils.cc',
17 'gmock-spec-builders.cc',
18 ],
19 # gmock-spec-builders.cc:248: error: enumeration value ‘FAIL’ not handle d in switch
20 'CXXFLAGS': ['-Wno-switch-enum'],
21 }
22 ],
23 'HEADERS': [
24 {
25 'FILES': [
26 'gmock-actions.h',
27 'gmock-cardinalities.h',
28 'gmock-generated-actions.h',
29 'gmock-generated-actions.h.pump',
30 'gmock-generated-function-mockers.h',
31 'gmock-generated-function-mockers.h.pump',
32 'gmock-generated-matchers.h',
33 'gmock-generated-matchers.h.pump',
34 'gmock-generated-nice-strict.h',
35 'gmock-generated-nice-strict.h.pump',
36 'gmock.h',
37 'gmock-matchers.h',
38 'gmock-more-actions.h',
39 'gmock-spec-builders.h',
40 ],
41 'DEST': 'include/gmock',
42 },
43 {
44 'FILES': [
45 'gmock-generated-internal-utils.h',
46 'gmock-generated-internal-utils.h.pump',
47 'gmock-internal-utils.h',
48 'gmock-port.h',
49 ],
50 'DEST': 'include/gmock/internal',
51 },
52 ],
53 'DEST': 'testlibs',
54 'NAME': 'gmock',
55 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/build_sdk.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698