diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-23 15:54:43 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-23 15:54:43 +0000 |
commit | 08ef57cee967ce148d209070b398a6979808b3c4 (patch) | |
tree | c2684aefe3c4c623ef48314587002df0dc2c5cf6 | |
parent | 13480f5eb01c574a41205e71d3073bb4a6c10703 (diff) | |
download | chromium_src-08ef57cee967ce148d209070b398a6979808b3c4.zip chromium_src-08ef57cee967ce148d209070b398a6979808b3c4.tar.gz chromium_src-08ef57cee967ce148d209070b398a6979808b3c4.tar.bz2 |
Add missing Mac headers to base.gyp
Review URL: http://codereview.chromium.org/42509
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12286 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | base/base.gyp | 9 | ||||
-rw-r--r-- | base/scoped_nsobject.h | 3 |
2 files changed, 11 insertions, 1 deletions
diff --git a/base/base.gyp b/base/base.gyp index f309c5d..15963ba 100644 --- a/base/base.gyp +++ b/base/base.gyp @@ -47,7 +47,9 @@ 'base_drop_target.h', 'base_paths.cc', 'base_paths.h', + 'base_paths_linux.h', 'base_paths_linux.cc', + 'base_paths_mac.h', 'base_paths_mac.mm', 'base_paths_win.cc', 'base_paths_win.h', @@ -100,6 +102,7 @@ 'file_version_info_mac.mm', 'fix_wp64.h', 'float_util.h', + 'foundation_utils_mac.h', 'hash_tables.h', 'histogram.cc', 'histogram.h', @@ -133,6 +136,7 @@ 'lock_impl_win.cc', 'logging.cc', 'logging.h', + 'mac_util.h', 'mac_util.mm', 'md5.cc', 'md5.h', @@ -144,7 +148,10 @@ 'message_pump_default.cc', 'message_pump_default.h', 'message_pump_glib.cc', + 'message_pump_glib.h', 'message_pump_libevent.cc', + 'message_pump_libevent.h', + 'message_pump_mac.h', 'message_pump_mac.mm', 'message_pump_win.cc', 'message_pump_win.h', @@ -193,6 +200,7 @@ 'revocable_store.h', 'scoped_bstr_win.cc', 'scoped_bstr_win.h', + 'scoped_cftyperef.h', 'scoped_clipboard_writer.cc', 'scoped_clipboard_writer.h', 'scoped_comptr_win.h', @@ -200,6 +208,7 @@ 'scoped_handle_win.h', 'scoped_nsautorelease_pool.h', 'scoped_nsautorelease_pool.mm', + 'scoped_nsobject.h', 'scoped_ptr.h', 'scoped_temp_dir.cc', 'scoped_temp_dir.h', diff --git a/base/scoped_nsobject.h b/base/scoped_nsobject.h index f5a24ef..12e3a37 100644 --- a/base/scoped_nsobject.h +++ b/base/scoped_nsobject.h @@ -6,10 +6,11 @@ #define BASE_SCOPED_NSOBJECT_H_ #import <Foundation/Foundation.h> +#include "base/basictypes.h" // scoped_nsobject<> is patterned after scoped_ptr<>, but maintains ownership // of an NSObject subclass object. Style deviations here are solely for -// compatibility scoped_ptr<>'s interface, with which everyone is already +// compatibility with scoped_ptr<>'s interface, with which everyone is already // familiar. // // When scoped_nsobject<> takes ownership of an object (in the constructor or |