| OLD | NEW |
| 1 # Copyright 2009 The Chromium Authors. All rights reserved. | 1 # Copyright 2009 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../build/common.gypi', | 7 '../build/common.gypi', |
| 8 ], | 8 ], |
| 9 | 9 |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', | 24 '$(SDKROOT)/System/Library/Frameworks/IOKit.framework', |
| 25 '$(SDKROOT)/System/Library/Frameworks/Security.framework', | 25 '$(SDKROOT)/System/Library/Frameworks/Security.framework', |
| 26 ], | 26 ], |
| 27 }], | 27 }], |
| 28 ], | 28 ], |
| 29 }, | 29 }, |
| 30 'sources': [ | 30 'sources': [ |
| 31 'auto_reset.h', | 31 'auto_reset.h', |
| 32 'basictypes.h', | 32 'basictypes.h', |
| 33 'compiler_specific.h', | 33 'compiler_specific.h', |
| 34 'file_util.cc', | |
| 35 'file_util.h', | 34 'file_util.h', |
| 35 'file_util_posix.cc', |
| 36 'files/file_path.cc', | 36 'files/file_path.cc', |
| 37 'files/file_path.h', | 37 'files/file_path.h', |
| 38 'files/scoped_file.cc', | 38 'files/scoped_file.cc', |
| 39 'files/scoped_file.h', | 39 'files/scoped_file.h', |
| 40 'logging.cc', | 40 'logging.cc', |
| 41 'logging.h', | 41 'logging.h', |
| 42 'mac/close_nocancel.cc', | 42 'mac/close_nocancel.cc', |
| 43 'mac/foundation_util.h', | 43 'mac/foundation_util.h', |
| 44 'mac/foundation_util.mm', | 44 'mac/foundation_util.mm', |
| 45 'mac/mach_logging.h', | 45 'mac/mach_logging.h', |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 '../build/build_config.h', | 98 '../build/build_config.h', |
| 99 ], | 99 ], |
| 100 'direct_dependent_settings': { | 100 'direct_dependent_settings': { |
| 101 'include_dirs': [ | 101 'include_dirs': [ |
| 102 '..', | 102 '..', |
| 103 ], | 103 ], |
| 104 }, | 104 }, |
| 105 }, | 105 }, |
| 106 ], | 106 ], |
| 107 } | 107 } |
| OLD | NEW |