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

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

Issue 11280256: [NaCl SDK] Add arm gcc toolchain support to the SDK (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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 # TODO(binji): pnacl fails with error: 2 # TODO(binji): pnacl fails with error:
3 # In file included from gtest.cc:133: 3 # In file included from gtest.cc:133:
4 # pepper_23/include/gtest/internal/src/gtest-internal-inl.h:213:8: 4 # pepper_23/include/gtest/internal/src/gtest-internal-inl.h:213:8:
5 # error: private field 'pretty_' is not used [-Werror,-Wunused-private-field ] 5 # error: private field 'pretty_' is not used [-Werror,-Wunused-private-field ]
6 # 6 #
7 # We can fix this by passing -Wno-unused-private-field to clang, but gcc 7 # We can fix this by passing -Wno-unused-private-field to clang, but gcc
8 # doesn't support this flag so we'll have to support splitting CXXFLAGS based 8 # doesn't support this flag so we'll have to support splitting CXXFLAGS based
9 # on TOOL first. 9 # on TOOL first.
10 'TOOLS': ['newlib', 'glibc', 'win', 'linux'], 10 'TOOLS': ['newlib:x86', 'newlib:x64', 'glibc', 'win', 'linux'],
11 'SEARCH': [ 11 'SEARCH': [
12 '.', 12 '.',
13 '../../../../testing/gtest/include/gtest', 13 '../../../../testing/gtest/include/gtest',
14 '../../../../testing/gtest/include/gtest/internal', 14 '../../../../testing/gtest/include/gtest/internal',
15 '../../../../testing/gtest/src', 15 '../../../../testing/gtest/src',
16 ], 16 ],
17 'TARGETS': [ 17 'TARGETS': [
18 { 18 {
19 'NAME' : 'gtest', 19 'NAME' : 'gtest',
20 'TYPE' : 'lib', 20 'TYPE' : 'lib',
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 # spot. 78 # spot.
79 'FILES': [ 79 'FILES': [
80 'gtest-internal-inl.h', 80 'gtest-internal-inl.h',
81 ], 81 ],
82 'DEST': 'include/gtest/internal/src', 82 'DEST': 'include/gtest/internal/src',
83 }, 83 },
84 ], 84 ],
85 'DEST': 'testlibs', 85 'DEST': 'testlibs',
86 'NAME': 'gtest', 86 'NAME': 'gtest',
87 } 87 }
OLDNEW
« no previous file with comments | « native_client_sdk/src/build_tools/make_rules.py ('k') | native_client_sdk/src/libraries/nacl_mounts/kernel_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698