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

Side by Side Diff: base/base.gyp

Issue 243076: Move the JPEG and PNG codecs from base/gfx to app/gfx/codec. Move the classes... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 # Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', 518 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551',
519 'sources': [ 519 'sources': [
520 'gfx/blit.cc', 520 'gfx/blit.cc',
521 'gfx/blit.h', 521 'gfx/blit.h',
522 'gfx/gdi_util.cc', 522 'gfx/gdi_util.cc',
523 'gfx/gdi_util.h', 523 'gfx/gdi_util.h',
524 'gfx/gtk_native_view_id_manager.cc', 524 'gfx/gtk_native_view_id_manager.cc',
525 'gfx/gtk_native_view_id_manager.h', 525 'gfx/gtk_native_view_id_manager.h',
526 'gfx/gtk_util.cc', 526 'gfx/gtk_util.cc',
527 'gfx/gtk_util.h', 527 'gfx/gtk_util.h',
528 'gfx/jpeg_codec.cc',
529 'gfx/jpeg_codec.h',
530 'gfx/native_theme.cc', 528 'gfx/native_theme.cc',
531 'gfx/native_theme.h', 529 'gfx/native_theme.h',
532 'gfx/native_widget_types.h', 530 'gfx/native_widget_types.h',
533 'gfx/native_widget_types_gtk.cc', 531 'gfx/native_widget_types_gtk.cc',
534 'gfx/png_decoder.cc',
535 'gfx/png_decoder.h',
536 'gfx/png_encoder.cc',
537 'gfx/png_encoder.h',
538 'gfx/point.cc', 532 'gfx/point.cc',
539 'gfx/point.h', 533 'gfx/point.h',
540 'gfx/rect.cc', 534 'gfx/rect.cc',
541 'gfx/rect.h', 535 'gfx/rect.h',
542 'gfx/size.cc', 536 'gfx/size.cc',
543 'gfx/size.h', 537 'gfx/size.h',
544 ], 538 ],
545 'mac_framework_dirs': [ 539 'mac_framework_dirs': [
546 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks', 540 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks',
547 ], 541 ],
548 'dependencies': [ 542 'dependencies': [
549 'base', 543 'base',
550 '../skia/skia.gyp:skia', 544 '../skia/skia.gyp:skia',
551 '../third_party/libjpeg/libjpeg.gyp:libjpeg',
552 '../third_party/libpng/libpng.gyp:libpng',
553 '../third_party/zlib/zlib.gyp:zlib',
554 ], 545 ],
555 'export_dependent_settings': [ 546 'export_dependent_settings': [
556 'base', 547 'base',
557 ], 548 ],
558 'conditions': [ 549 'conditions': [
559 ['OS == "linux" or OS == "freebsd"', { 550 ['OS == "linux" or OS == "freebsd"', {
560 'dependencies': [ 551 'dependencies': [
561 '../build/linux/system.gyp:gtk', 552 '../build/linux/system.gyp:gtk',
562 ], 553 ],
563 }], 554 }],
(...skipping 30 matching lines...) Expand all
594 'crypto/signature_creator_unittest.cc', 585 'crypto/signature_creator_unittest.cc',
595 'crypto/signature_verifier_unittest.cc', 586 'crypto/signature_verifier_unittest.cc',
596 'data_pack_unittest.cc', 587 'data_pack_unittest.cc',
597 'debug_util_unittest.cc', 588 'debug_util_unittest.cc',
598 'directory_watcher_unittest.cc', 589 'directory_watcher_unittest.cc',
599 'field_trial_unittest.cc', 590 'field_trial_unittest.cc',
600 'file_descriptor_shuffle_unittest.cc', 591 'file_descriptor_shuffle_unittest.cc',
601 'file_path_unittest.cc', 592 'file_path_unittest.cc',
602 'file_util_unittest.cc', 593 'file_util_unittest.cc',
603 'file_version_info_unittest.cc', 594 'file_version_info_unittest.cc',
604 'gfx/jpeg_codec_unittest.cc',
605 'gfx/native_theme_unittest.cc', 595 'gfx/native_theme_unittest.cc',
606 'gfx/png_codec_unittest.cc',
607 'gfx/rect_unittest.cc', 596 'gfx/rect_unittest.cc',
608 'gmock_unittest.cc', 597 'gmock_unittest.cc',
609 'histogram_unittest.cc', 598 'histogram_unittest.cc',
610 'hmac_unittest.cc', 599 'hmac_unittest.cc',
611 'id_map_unittest.cc', 600 'id_map_unittest.cc',
612 'json_reader_unittest.cc', 601 'json_reader_unittest.cc',
613 'json_writer_unittest.cc', 602 'json_writer_unittest.cc',
614 'lazy_instance_unittest.cc', 603 'lazy_instance_unittest.cc',
615 'leak_tracker_unittest.cc', 604 'leak_tracker_unittest.cc',
616 'linked_list_unittest.cc', 605 'linked_list_unittest.cc',
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
866 '<@(_outputs)', 855 '<@(_outputs)',
867 ], 856 ],
868 'message': 'Generating version information', 857 'message': 'Generating version information',
869 }, 858 },
870 ], 859 ],
871 }, 860 },
872 ], 861 ],
873 }], 862 }],
874 ], 863 ],
875 } 864 }
OLDNEW
« no previous file with comments | « app/resource_bundle.cc ('k') | base/gfx/DEPS » ('j') | build/common.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698