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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
263 'dependencies': [ | 263 'dependencies': [ |
264 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', | 264 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
265 ], | 265 ], |
266 }, { # OS!="linux" and OS!="android" and OS!="win" | 266 }, { # OS!="linux" and OS!="android" and OS!="win" |
267 'sources/': [ | 267 'sources/': [ |
268 ['exclude', 'Harfbuzz[^/]+\\.(cpp|h)$'], | 268 ['exclude', 'Harfbuzz[^/]+\\.(cpp|h)$'], |
269 ], | 269 ], |
270 }], | 270 }], |
271 ['OS=="linux" or OS=="android"', { | 271 ['OS=="linux" or OS=="android"', { |
272 'sources/': [ | 272 'sources/': [ |
273 ['include', 'fonts/linux/FontPlatformDataLinuxHarfBuzz\\.cpp$'], | 273 ['include', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], |
274 ] | 274 ] |
275 }, { # OS!="linux" and OS!="android" | 275 }, { # OS!="linux" and OS!="android" |
276 'sources/': [ | 276 'sources/': [ |
277 ['exclude', 'fonts/linux/FontPlatformDataLinuxHarfBuzz\\.cpp$'], | 277 ['exclude', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], |
jbroman
2014/07/18 17:58:51
Nit: why is both an include and an exclude necessa
eae
2014/07/18 18:03:25
We use expression matching for inclusion/exclusion
| |
278 ] | 278 ] |
279 }], | 279 }], |
280 ['OS=="mac"', { | 280 ['OS=="mac"', { |
281 'dependencies': [ | 281 'dependencies': [ |
282 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', | 282 '<(DEPTH)/third_party/harfbuzz-ng/harfbuzz.gyp:harfbuzz-ng', |
283 ], | 283 ], |
284 'link_settings': { | 284 'link_settings': { |
285 'libraries': [ | 285 'libraries': [ |
286 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', | 286 '$(SDKROOT)/System/Library/Frameworks/Accelerate.framework', |
287 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', | 287 '$(SDKROOT)/System/Library/Frameworks/Carbon.framework', |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
445 ['target_arch=="arm"', { | 445 ['target_arch=="arm"', { |
446 'dependencies': [ | 446 'dependencies': [ |
447 'blink_arm_neon', | 447 'blink_arm_neon', |
448 ], | 448 ], |
449 }], | 449 }], |
450 ], | 450 ], |
451 'target_conditions': [ | 451 'target_conditions': [ |
452 ['OS=="android"', { | 452 ['OS=="android"', { |
453 'sources/': [ | 453 'sources/': [ |
454 ['include', 'exported/linux/WebFontRenderStyle\\.cpp$'], | 454 ['include', 'exported/linux/WebFontRenderStyle\\.cpp$'], |
455 ['include', 'fonts/linux/FontPlatformDataLinuxHarfBuzz\\.cpp$'], | 455 ['include', 'fonts/linux/FontPlatformDataLinux\\.cpp$'], |
456 ], | 456 ], |
457 }], | 457 }], |
458 ], | 458 ], |
459 }, | 459 }, |
460 # The *NEON.cpp files fail to compile when -mthumb is passed. Force | 460 # The *NEON.cpp files fail to compile when -mthumb is passed. Force |
461 # them to build in ARM mode. | 461 # them to build in ARM mode. |
462 # See https://bugs.webkit.org/show_bug.cgi?id=62916. | 462 # See https://bugs.webkit.org/show_bug.cgi?id=62916. |
463 { | 463 { |
464 'target_name': 'blink_arm_neon', | 464 'target_name': 'blink_arm_neon', |
465 'conditions': [ | 465 'conditions': [ |
(...skipping 15 matching lines...) Expand all Loading... | |
481 ['OS=="android"', { | 481 ['OS=="android"', { |
482 'cflags!': ['-mthumb'], | 482 'cflags!': ['-mthumb'], |
483 }], | 483 }], |
484 ], | 484 ], |
485 },{ # target_arch!="arm" | 485 },{ # target_arch!="arm" |
486 'type': 'none', | 486 'type': 'none', |
487 }], | 487 }], |
488 ], | 488 ], |
489 }], | 489 }], |
490 } | 490 } |
OLD | NEW |