| 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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ] | 109 ] |
| 110 }, | 110 }, |
| 111 'sources/': [ | 111 'sources/': [ |
| 112 # We use LocaleMac.mm instead of LocaleICU.cpp | 112 # We use LocaleMac.mm instead of LocaleICU.cpp |
| 113 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 113 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 114 | 114 |
| 115 # The Mac uses mac/KillRingMac.mm instead of the dummy | 115 # The Mac uses mac/KillRingMac.mm instead of the dummy |
| 116 # implementation. | 116 # implementation. |
| 117 ['exclude', 'KillRingNone\\.cpp$'], | 117 ['exclude', 'KillRingNone\\.cpp$'], |
| 118 ], | 118 ], |
| 119 'defines': [ |
| 120 'WebFontCache=ChromiumWebCoreObjCWebFontCache', |
| 121 ], |
| 119 }, { # OS!="mac" | 122 }, { # OS!="mac" |
| 120 'sources/': [ | 123 'sources/': [ |
| 121 ['exclude', 'mac/'], | 124 ['exclude', 'mac/'], |
| 122 ], | 125 ], |
| 123 }], | 126 }], |
| 124 ['OS=="win"', { | 127 ['OS=="win"', { |
| 125 'sources/': [ | 128 'sources/': [ |
| 126 # We use LocaleWin.cpp instead of LocaleICU.cpp | 129 # We use LocaleWin.cpp instead of LocaleICU.cpp |
| 127 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 130 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 128 ], | 131 ], |
| (...skipping 15 matching lines...) Expand all Loading... |
| 144 'include_dirs': [ | 147 'include_dirs': [ |
| 145 '<(DEPTH)/third_party/openmax_dl', | 148 '<(DEPTH)/third_party/openmax_dl', |
| 146 ], | 149 ], |
| 147 'dependencies': [ | 150 'dependencies': [ |
| 148 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', | 151 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', |
| 149 ], | 152 ], |
| 150 }], | 153 }], |
| 151 ], | 154 ], |
| 152 }], | 155 }], |
| 153 } | 156 } |
| OLD | NEW |