| 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 'sources': [ | 76 'sources': [ |
| 77 '<@(platform_files)', | 77 '<@(platform_files)', |
| 78 ], | 78 ], |
| 79 'conditions': [ | 79 'conditions': [ |
| 80 ['OS=="mac"', { | 80 ['OS=="mac"', { |
| 81 'link_settings': { | 81 'link_settings': { |
| 82 'libraries': [ | 82 'libraries': [ |
| 83 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 83 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
| 84 ] | 84 ] |
| 85 }, | 85 }, |
| 86 'sources/': [ |
| 87 # We use LocaleMac.mm instead of LocaleICU.cpp |
| 88 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 89 ], |
| 90 }, { # OS!="mac" |
| 91 'sources/': [ |
| 92 ['exclude', 'Mac\\.mm$'], |
| 93 ], |
| 86 }], | 94 }], |
| 87 ['OS=="win"', { | 95 ['OS=="win"', { |
| 88 'sources/': [ | 96 'sources/': [ |
| 89 ['exclude', 'Posix\\.cpp$'], | 97 ['exclude', 'Posix\\.cpp$'], |
| 98 # We use LocaleWin.cpp instead of LocaleICU.cpp |
| 99 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 90 ], | 100 ], |
| 91 }, { # OS!="win" | 101 }, { # OS!="win" |
| 92 'sources/': [ | 102 'sources/': [ |
| 93 ['exclude', 'Win\\.cpp$'], | 103 ['exclude', 'Win\\.cpp$'], |
| 94 ], | 104 ], |
| 95 }], | 105 }], |
| 96 ], | 106 ], |
| 97 }], | 107 }], |
| 98 } | 108 } |
| OLD | NEW |