OLD | NEW |
---|---|
1 # | 1 # |
2 # Copyright (C) 2011 Google Inc. All rights reserved. | 2 # Copyright (C) 2011 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 502 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
513 'target_conditions': [ | 513 'target_conditions': [ |
514 ['OS=="android"', { | 514 ['OS=="android"', { |
515 'sources/': [ | 515 'sources/': [ |
516 ['include', '^src/linux/WebFontRendering\\.cpp$'], | 516 ['include', '^src/linux/WebFontRendering\\.cpp$'], |
517 ['include', '^src/linux/WebFontRenderStyle\\.cpp$'], | 517 ['include', '^src/linux/WebFontRenderStyle\\.cpp$'], |
518 ], | 518 ], |
519 }], | 519 }], |
520 ], | 520 ], |
521 }, | 521 }, |
522 { | 522 { |
523 'target_name': 'image_decode_bench', | |
524 'type': 'executable', | |
525 'dependencies': [ | |
526 '../../wtf/wtf.gyp:wtf', | |
527 '../../core/core.gyp:webcore', | |
528 'blink_common', | |
529 'webkit_test_support', | |
530 'webkit', | |
531 ], | |
532 'defines': [ | |
533 'WEBKIT_IMPLEMENTATION=1', | |
abarth-chromium
2013/07/23 05:45:49
This isn't correct. We shouldn't have an executab
| |
534 ], | |
535 'sources': [ | |
536 '../../web/ImageDecodeBench.cpp', | |
537 ], | |
538 }, | |
539 { | |
523 'target_name': 'webkit_test_support', | 540 'target_name': 'webkit_test_support', |
524 'conditions': [ | 541 'conditions': [ |
525 ['component=="shared_library"', { | 542 ['component=="shared_library"', { |
526 'type': 'none', | 543 'type': 'none', |
527 }, { | 544 }, { |
528 'type': 'static_library', | 545 'type': 'static_library', |
529 'dependencies': [ | 546 'dependencies': [ |
530 '../../wtf/wtf.gyp:wtf', | 547 '../../wtf/wtf.gyp:wtf', |
531 '../../core/core.gyp:webcore_test_support', | 548 '../../core/core.gyp:webcore_test_support', |
532 ], | 549 ], |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
588 ['clang==1', { | 605 ['clang==1', { |
589 'target_defaults': { | 606 'target_defaults': { |
590 'cflags': ['-Wglobal-constructors'], | 607 'cflags': ['-Wglobal-constructors'], |
591 'xcode_settings': { | 608 'xcode_settings': { |
592 'WARNING_CFLAGS': ['-Wglobal-constructors'], | 609 'WARNING_CFLAGS': ['-Wglobal-constructors'], |
593 }, | 610 }, |
594 }, | 611 }, |
595 }], | 612 }], |
596 ], # conditions | 613 ], # conditions |
597 } | 614 } |
OLD | NEW |