| 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 'msvs_disabled_warnings': [ 4267, 4334, 4724 ], | 248 'msvs_disabled_warnings': [ 4267, 4334, 4724 ], |
| 249 'conditions': [ | 249 'conditions': [ |
| 250 ['target_arch == "ia32" or target_arch == "x64"', { | 250 ['target_arch == "ia32" or target_arch == "x64"', { |
| 251 'sources/': [ | 251 'sources/': [ |
| 252 ['include', 'graphics/cpu/x86/WebGLImageConversionSSE\\.h$'], | 252 ['include', 'graphics/cpu/x86/WebGLImageConversionSSE\\.h$'], |
| 253 ], | 253 ], |
| 254 }], | 254 }], |
| 255 ['OS=="linux" or OS=="android" or OS=="win"', { | 255 ['OS=="linux" or OS=="android" or OS=="win"', { |
| 256 'sources/': [ | 256 'sources/': [ |
| 257 # Cherry-pick files excluded by the broader regular expressions above. | 257 # Cherry-pick files excluded by the broader regular expressions above. |
| 258 ['include', 'fonts/opentype/OpenTypeOS2Table\\.(cpp|h)$'], |
| 258 ['include', 'fonts/opentype/OpenTypeTypes\\.h$'], | 259 ['include', 'fonts/opentype/OpenTypeTypes\\.h$'], |
| 259 ['include', 'fonts/opentype/OpenTypeVerticalData\\.(cpp|h)$'], | 260 ['include', 'fonts/opentype/OpenTypeVerticalData\\.(cpp|h)$'], |
| 260 ], | 261 ], |
| 261 'dependencies': [ | 262 'dependencies': [ |
| 262 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', | 263 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
| 263 ], | 264 ], |
| 264 }, | 265 }, |
| 265 ], | 266 ], |
| 266 ['OS=="linux" or OS=="android"', { | 267 ['OS=="linux" or OS=="android"', { |
| 267 'sources/': [ | 268 'sources/': [ |
| (...skipping 24 matching lines...) Expand all Loading... |
| 292 # implementation. | 293 # implementation. |
| 293 ['exclude', 'KillRingNone\\.cpp$'], | 294 ['exclude', 'KillRingNone\\.cpp$'], |
| 294 | 295 |
| 295 # The Mac build uses Core Foundation. | 296 # The Mac build uses Core Foundation. |
| 296 ['include', 'CF\\.cpp$'], | 297 ['include', 'CF\\.cpp$'], |
| 297 | 298 |
| 298 # Use native Mac font code from core. | 299 # Use native Mac font code from core. |
| 299 ['include', '(fonts/)?mac/[^/]*Font[^/]*\\.(cpp|mm?)$'], | 300 ['include', '(fonts/)?mac/[^/]*Font[^/]*\\.(cpp|mm?)$'], |
| 300 | 301 |
| 301 # TODO(dro): Merge the opentype vertical data files inclusion across a
ll platforms. | 302 # TODO(dro): Merge the opentype vertical data files inclusion across a
ll platforms. |
| 303 ['include', 'fonts/opentype/OpenTypeOS2Table\\.(cpp|h)$'], |
| 302 ['include', 'fonts/opentype/OpenTypeTypes\\.h$'], | 304 ['include', 'fonts/opentype/OpenTypeTypes\\.h$'], |
| 303 ['include', 'fonts/opentype/OpenTypeVerticalData\\.(cpp|h)$'], | 305 ['include', 'fonts/opentype/OpenTypeVerticalData\\.(cpp|h)$'], |
| 304 | 306 |
| 305 # Cherry-pick some files that can't be included by broader regexps. | 307 # Cherry-pick some files that can't be included by broader regexps. |
| 306 # Some of these are used instead of Chromium platform files, see | 308 # Some of these are used instead of Chromium platform files, see |
| 307 # the specific exclusions in the "exclude" list below. | 309 # the specific exclusions in the "exclude" list below. |
| 308 ['include', 'audio/mac/FFTFrameMac\\.cpp$'], | 310 ['include', 'audio/mac/FFTFrameMac\\.cpp$'], |
| 309 ['include', 'fonts/mac/GlyphPageTreeNodeMac\\.cpp$'], | 311 ['include', 'fonts/mac/GlyphPageTreeNodeMac\\.cpp$'], |
| 310 ['include', 'mac/ColorMac\\.mm$'], | 312 ['include', 'mac/ColorMac\\.mm$'], |
| 311 ['include', 'mac/BlockExceptions\\.mm$'], | 313 ['include', 'mac/BlockExceptions\\.mm$'], |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 459 ['OS=="android"', { | 461 ['OS=="android"', { |
| 460 'cflags!': ['-mthumb'], | 462 'cflags!': ['-mthumb'], |
| 461 }], | 463 }], |
| 462 ], | 464 ], |
| 463 },{ # target_arch!="arm" | 465 },{ # target_arch!="arm" |
| 464 'type': 'none', | 466 'type': 'none', |
| 465 }], | 467 }], |
| 466 ], | 468 ], |
| 467 }], | 469 }], |
| 468 } | 470 } |
| OLD | NEW |