Chromium Code Reviews| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 104 'conditions': [ | 104 'conditions': [ |
| 105 ['OS=="mac"', { | 105 ['OS=="mac"', { |
| 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 ['include', 'mac/KillRingMac\\.mm$'], | |
|
abarth-chromium
2013/11/07 23:31:18
I don't think this line is needed. It should be i
| |
| 115 | |
| 114 # We use LocaleMac.mm instead of LocaleICU.cpp | 116 # We use LocaleMac.mm instead of LocaleICU.cpp |
| 115 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 117 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| 118 | |
| 119 # The Mac uses mac/KillRingMac.mm instead of the dummy | |
| 120 # implementation. | |
| 121 ['exclude', 'KillRingNone\\.cpp$'], | |
|
abarth-chromium
2013/11/07 23:31:18
This one is good though.
| |
| 122 | |
| 116 ], | 123 ], |
| 117 }, { # OS!="mac" | 124 }, { # OS!="mac" |
| 118 'sources/': [ | 125 'sources/': [ |
| 119 ['exclude', 'mac/'], | 126 ['exclude', 'mac/'], |
| 120 ], | 127 ], |
| 121 }], | 128 }], |
| 122 ['OS=="win"', { | 129 ['OS=="win"', { |
| 123 'sources/': [ | 130 'sources/': [ |
| 124 # We use LocaleWin.cpp instead of LocaleICU.cpp | 131 # We use LocaleWin.cpp instead of LocaleICU.cpp |
| 125 ['exclude', 'LocaleICU\\.(cpp|h)$'], | 132 ['exclude', 'LocaleICU\\.(cpp|h)$'], |
| (...skipping 16 matching lines...) Expand all Loading... | |
| 142 'include_dirs': [ | 149 'include_dirs': [ |
| 143 '<(DEPTH)/third_party/openmax_dl', | 150 '<(DEPTH)/third_party/openmax_dl', |
| 144 ], | 151 ], |
| 145 'dependencies': [ | 152 'dependencies': [ |
| 146 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', | 153 '<(DEPTH)/third_party/openmax_dl/dl/dl.gyp:openmax_dl', |
| 147 ], | 154 ], |
| 148 }], | 155 }], |
| 149 ], | 156 ], |
| 150 }], | 157 }], |
| 151 } | 158 } |
| OLD | NEW |