| 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', | 95 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', |
| 96 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 96 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
| 97 ] | 97 ] |
| 98 }, | 98 }, |
| 99 'sources/': [ | 99 'sources/': [ |
| 100 # We use LocaleMac.mm instead of LocaleICU.cpp | 100 # We use LocaleMac.mm instead of LocaleICU.cpp |
| 101 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 101 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 102 ], | 102 ], |
| 103 }, { # OS!="mac" | 103 }, { # OS!="mac" |
| 104 'sources/': [ | 104 'sources/': [ |
| 105 ['exclude', 'mac/'], |
| 105 ['exclude', 'Mac\\.mm$'], | 106 ['exclude', 'Mac\\.mm$'], |
| 106 ], | 107 ], |
| 107 }], | 108 }], |
| 108 ['OS=="win"', { | 109 ['OS=="win"', { |
| 109 'sources/': [ | 110 'sources/': [ |
| 110 ['exclude', 'Posix\\.cpp$'], | 111 ['exclude', 'Posix\\.cpp$'], |
| 111 # We use LocaleWin.cpp instead of LocaleICU.cpp | 112 # We use LocaleWin.cpp instead of LocaleICU.cpp |
| 112 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 113 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 113 ], | 114 ], |
| 114 }, { # OS!="win" | 115 }, { # OS!="win" |
| 115 'sources/': [ | 116 'sources/': [ |
| 117 ['exclude', 'win/'], |
| 116 ['exclude', 'Win\\.cpp$'], | 118 ['exclude', 'Win\\.cpp$'], |
| 117 ], | 119 ], |
| 118 }], | 120 }], |
| 119 ['"WTF_USE_WEBAUDIO_FFMPEG=1" in feature_defines', { | 121 ['"WTF_USE_WEBAUDIO_FFMPEG=1" in feature_defines', { |
| 120 'include_dirs': [ | 122 'include_dirs': [ |
| 121 '<(DEPTH)/third_party/ffmpeg', | 123 '<(DEPTH)/third_party/ffmpeg', |
| 122 ], | 124 ], |
| 123 'dependencies': [ | 125 'dependencies': [ |
| 124 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', | 126 '<(DEPTH)/third_party/ffmpeg/ffmpeg.gyp:ffmpeg', |
| 125 ], | 127 ], |
| 126 }], | 128 }], |
| 127 ['"WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1" in feature_defines', { | 129 ['"WTF_USE_WEBAUDIO_OPENMAX_DL_FFT=1" in feature_defines', { |
| 128 'include_dirs': [ | 130 'include_dirs': [ |
| 129 '<(DEPTH)/third_party/openmax_dl', | 131 '<(DEPTH)/third_party/openmax_dl', |
| 130 ], | 132 ], |
| 131 'dependencies': [ | 133 'dependencies': [ |
| 132 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', | 134 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', |
| 133 ], | 135 ], |
| 134 }], | 136 }], |
| 135 ], | 137 ], |
| 136 }], | 138 }], |
| 137 } | 139 } |
| OLD | NEW |