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 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
248 # The Mac uses mac/KillRingMac.mm instead of the dummy | 248 # The Mac uses mac/KillRingMac.mm instead of the dummy |
249 # implementation. | 249 # implementation. |
250 ['exclude', 'KillRingNone\\.cpp$'], | 250 ['exclude', 'KillRingNone\\.cpp$'], |
251 | 251 |
252 # The Mac build uses Core Foundation. | 252 # The Mac build uses Core Foundation. |
253 ['include', 'CF\\.cpp$'], | 253 ['include', 'CF\\.cpp$'], |
254 | 254 |
255 # Use native Mac font code from core. | 255 # Use native Mac font code from core. |
256 ['include', '(fonts/)?mac/[^/]*Font[^/]*\\.(cpp|mm?)$'], | 256 ['include', '(fonts/)?mac/[^/]*Font[^/]*\\.(cpp|mm?)$'], |
257 | 257 |
| 258 ['include', 'text/mac/HyphenationMac\\.cpp$'], |
| 259 |
258 # Cherry-pick some files that can't be included by broader regexps. | 260 # Cherry-pick some files that can't be included by broader regexps. |
259 # Some of these are used instead of Chromium platform files, see | 261 # Some of these are used instead of Chromium platform files, see |
260 # the specific exclusions in the "exclude" list below. | 262 # the specific exclusions in the "exclude" list below. |
261 ['include', 'audio/mac/FFTFrameMac\\.cpp$'], | 263 ['include', 'audio/mac/FFTFrameMac\\.cpp$'], |
262 ['include', 'fonts/mac/GlyphPageTreeNodeMac\\.cpp$'], | 264 ['include', 'fonts/mac/GlyphPageTreeNodeMac\\.cpp$'], |
263 ['include', 'mac/ColorMac\\.mm$'], | 265 ['include', 'mac/ColorMac\\.mm$'], |
264 ['include', 'mac/BlockExceptions\\.mm$'], | 266 ['include', 'mac/BlockExceptions\\.mm$'], |
265 ['include', 'mac/KillRingMac\\.mm$'], | 267 ['include', 'mac/KillRingMac\\.mm$'], |
266 ['include', 'mac/LocalCurrentGraphicsContext\\.mm$'], | 268 ['include', 'mac/LocalCurrentGraphicsContext\\.mm$'], |
267 ['include', 'mac/NSScrollerImpDetails\\.mm$'], | 269 ['include', 'mac/NSScrollerImpDetails\\.mm$'], |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
312 # We use LocaleWin.cpp instead of LocaleICU.cpp | 314 # We use LocaleWin.cpp instead of LocaleICU.cpp |
313 ['exclude', 'text/LocaleICU\\.(cpp|h)$'], | 315 ['exclude', 'text/LocaleICU\\.(cpp|h)$'], |
314 ['include', 'text/LocaleWin\\.(cpp|h)$'], | 316 ['include', 'text/LocaleWin\\.(cpp|h)$'], |
315 | 317 |
316 ['include', 'clipboard/ClipboardUtilitiesWin\\.(cpp|h)$'], | 318 ['include', 'clipboard/ClipboardUtilitiesWin\\.(cpp|h)$'], |
317 | 319 |
318 ['include', 'fonts/win/FontCacheSkiaWin\\.cpp$'], | 320 ['include', 'fonts/win/FontCacheSkiaWin\\.cpp$'], |
319 ['include', 'fonts/win/FontFallbackWin\\.(cpp|h)$'], | 321 ['include', 'fonts/win/FontFallbackWin\\.(cpp|h)$'], |
320 ['include', 'fonts/win/FontPlatformDataWin\\.cpp$'], | 322 ['include', 'fonts/win/FontPlatformDataWin\\.cpp$'], |
321 | 323 |
| 324 ['include', 'text/win/HyphenationWin\\.cpp$'], |
| 325 |
322 # SystemInfo.cpp is useful and we don't want to copy it. | 326 # SystemInfo.cpp is useful and we don't want to copy it. |
323 ['include', 'win/SystemInfo\\.cpp$'], | 327 ['include', 'win/SystemInfo\\.cpp$'], |
324 ], | 328 ], |
325 }, { # OS!="win" | 329 }, { # OS!="win" |
326 'sources/': [ | 330 'sources/': [ |
327 ['exclude', 'win/'], | 331 ['exclude', 'win/'], |
328 ['exclude', 'Win\\.cpp$'], | 332 ['exclude', 'Win\\.cpp$'], |
329 ['exclude', '/(Windows)[^/]*\\.cpp$'], | 333 ['exclude', '/(Windows)[^/]*\\.cpp$'], |
330 ], | 334 ], |
331 }], | 335 }], |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 ['OS=="android"', { | 407 ['OS=="android"', { |
404 'cflags!': ['-mthumb'], | 408 'cflags!': ['-mthumb'], |
405 }], | 409 }], |
406 ], | 410 ], |
407 },{ # target_arch!="arm" | 411 },{ # target_arch!="arm" |
408 'type': 'none', | 412 'type': 'none', |
409 }], | 413 }], |
410 ], | 414 ], |
411 }], | 415 }], |
412 } | 416 } |
OLD | NEW |