Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: third_party/googletest.gyp

Issue 10420020: Made sure FilterEngine instances are always initialized (Closed)
Patch Set: Using a generic messaging mechanism Created May 23, 2013, 6:35 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « test/JsEngine.cpp ('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
1 { 1 {
2 'target_defaults': { 2 'target_defaults': {
3 'configurations': { 3 'configurations': {
4 'Debug': { 4 'Debug': {
5 'defines': [ 'DEBUG' ], 5 'defines': [ 'DEBUG' ],
6 'msvs_settings': { 6 'msvs_settings': {
7 'VCCLCompilerTool': { 7 'VCCLCompilerTool': {
8 'Optimization': '0', 8 'Optimization': '0',
9 9
10 'conditions': [ 10 'conditions': [
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 'googletest/include' 76 'googletest/include'
77 ] 77 ]
78 }, 78 },
79 'conditions': [[ 79 'conditions': [[
80 'OS=="win"', 80 'OS=="win"',
81 { 81 {
82 'defines': [ '_VARIADIC_MAX=10' ], 82 'defines': [ '_VARIADIC_MAX=10' ],
83 'direct_dependent_settings': { 83 'direct_dependent_settings': {
84 'defines': [ '_VARIADIC_MAX=10' ], 84 'defines': [ '_VARIADIC_MAX=10' ],
85 }, 85 },
86 }, {
87 'defines': [ 'GTEST_HAS_TR1_TUPLE=1', 'GTEST_USE_OWN_TR1_TUPLE=0' ],
88 'direct_dependent_settings': {
89 'defines': [ 'GTEST_HAS_TR1_TUPLE=1', 'GTEST_USE_OWN_TR1_TUPLE=0' ],
90 },
86 }]], 91 }]],
87 }, 92 },
88 { 93 {
89 'target_name': 'googletest_main', 94 'target_name': 'googletest_main',
90 'type': '<(library)', 95 'type': '<(library)',
91 'sources': ['googletest/src/gtest_main.cc'], 96 'sources': ['googletest/src/gtest_main.cc'],
92 'dependencies': ['googletest'], 97 'dependencies': ['googletest'],
93 'export_dependent_settings': ['googletest'] 98 'export_dependent_settings': ['googletest']
94 }] 99 }]
95 } 100 }
OLDNEW
« no previous file with comments | « test/JsEngine.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld