summaryrefslogtreecommitdiffstats
path: root/testing
diff options
context:
space:
mode:
authorajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-30 00:02:53 +0000
committerajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-30 00:02:53 +0000
commitf0198481e65d6f1407507d31b0a03de5ed687e01 (patch)
tree8fa73207140a309e21dd07e958a7a8a3dbd8d7f8 /testing
parentc1a76a31fb05ac03cec67be59568abf7e7687c4f (diff)
downloadchromium_src-f0198481e65d6f1407507d31b0a03de5ed687e01.zip
chromium_src-f0198481e65d6f1407507d31b0a03de5ed687e01.tar.gz
chromium_src-f0198481e65d6f1407507d31b0a03de5ed687e01.tar.bz2
Fix msvs_guid for gmock and re-add gmock_unittest into base_unittest.
The issue is that if there are lower case characters in the msvs_guid, incredibuild will silently ignore the target during a _command-line_ build. This issue does not affect builds in visual studio (incredibuild-based, or regular), but it does break the build bots. Review URL: http://codereview.chromium.org/118013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17267 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'testing')
-rw-r--r--testing/gmock.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/gmock.gyp b/testing/gmock.gyp
index e6f50db..4e56089 100644
--- a/testing/gmock.gyp
+++ b/testing/gmock.gyp
@@ -10,7 +10,7 @@
{
'target_name': 'gmock',
'type': '<(library)',
- 'msvs_guid': 'F9D886ED-B09F-4b74-932F-D8E4691E6B7F',
+ 'msvs_guid': 'F9D886ED-B09F-4B74-932F-D8E4691E6B7F',
'dependencies': [
'gtest.gyp:gtest',
],