| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2013 Google Inc. All rights reserved. | 2 # Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 'link_settings': { | 106 'link_settings': { |
| 107 'libraries': [ | 107 'libraries': [ |
| 108 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', | 108 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', |
| 109 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 109 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
| 110 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', | 110 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', |
| 111 ] | 111 ] |
| 112 }, | 112 }, |
| 113 'sources/': [ | 113 'sources/': [ |
| 114 # We use LocaleMac.mm instead of LocaleICU.cpp | 114 # We use LocaleMac.mm instead of LocaleICU.cpp |
| 115 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 115 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 116 |
| 117 # The Mac uses mac/KillRingMac.mm instead of the dummy |
| 118 # implementation. |
| 119 ['exclude', 'KillRingNone\\.cpp$'], |
| 116 ], | 120 ], |
| 117 }, { # OS!="mac" | 121 }, { # OS!="mac" |
| 118 'sources/': [ | 122 'sources/': [ |
| 119 ['exclude', 'mac/'], | 123 ['exclude', 'mac/'], |
| 120 ], | 124 ], |
| 121 }], | 125 }], |
| 122 ['OS=="win"', { | 126 ['OS=="win"', { |
| 123 'sources/': [ | 127 'sources/': [ |
| 124 # We use LocaleWin.cpp instead of LocaleICU.cpp | 128 # We use LocaleWin.cpp instead of LocaleICU.cpp |
| 125 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 129 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| (...skipping 16 matching lines...) Expand all Loading... |
| 142 'include_dirs': [ | 146 'include_dirs': [ |
| 143 '<(DEPTH)/third_party/openmax_dl', | 147 '<(DEPTH)/third_party/openmax_dl', |
| 144 ], | 148 ], |
| 145 'dependencies': [ | 149 'dependencies': [ |
| 146 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', | 150 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', |
| 147 ], | 151 ], |
| 148 }], | 152 }], |
| 149 ], | 153 ], |
| 150 }], | 154 }], |
| 151 } | 155 } |
| OLD | NEW |