Replacing alloy::Mutex with std::mutex.

This commit is contained in:
Ben Vanik
2014-07-09 22:28:51 -07:00
parent 500647968c
commit c5f114018e
23 changed files with 170 additions and 371 deletions

View File

@@ -10,7 +10,6 @@
'delegate.h',
'memory.cc',
'memory.h',
'mutex.h',
'string_buffer.cc',
'string_buffer.h',
'type_pool.h',
@@ -19,7 +18,6 @@
'conditions': [
['OS == "mac" or OS == "linux"', {
'sources': [
'mutex_posix.cc',
],
}],
['OS == "linux"', {
@@ -32,7 +30,6 @@
}],
['OS == "win"', {
'sources': [
'mutex_win.cc',
],
}],
],