Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(129)

Side by Side Diff: Source/WebKit/chromium/WebKit.gyp

Issue 18107003: Add a command line driven image decoding tool (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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',
534 ],
535 'sources': [
536 'src/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
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 }
OLDNEW
« no previous file with comments | « no previous file | Source/WebKit/chromium/src/ImageDecodeBench.cpp » ('j') | Source/WebKit/chromium/src/ImageDecodeBench.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698