Chromium Code Reviews

Side by Side Diff: base/base.gyp

Issue 259047: Move classes depending on Skia out of base/gfx and into app/gfx. Rename... (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.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « app\gfx\gtk_util.h ('k') | base/gfx/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 492 matching lines...)
503 ], 503 ],
504 }, 504 },
505 ], 505 ],
506 ], 506 ],
507 }, 507 },
508 { 508 {
509 'target_name': 'base_gfx', 509 'target_name': 'base_gfx',
510 'type': '<(library)', 510 'type': '<(library)',
511 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551', 511 'msvs_guid': 'A508ADD3-CECE-4E0F-8448-2F5E454DF551',
512 'sources': [ 512 'sources': [
513 'gfx/blit.cc',
514 'gfx/blit.h',
515 'gfx/gdi_util.cc',
516 'gfx/gdi_util.h',
517 'gfx/gtk_native_view_id_manager.cc', 513 'gfx/gtk_native_view_id_manager.cc',
518 'gfx/gtk_native_view_id_manager.h', 514 'gfx/gtk_native_view_id_manager.h',
519 'gfx/gtk_util.cc',
520 'gfx/gtk_util.h',
521 'gfx/native_theme.cc',
522 'gfx/native_theme.h',
523 'gfx/native_widget_types.h', 515 'gfx/native_widget_types.h',
524 'gfx/native_widget_types_gtk.cc', 516 'gfx/native_widget_types_gtk.cc',
525 'gfx/point.cc', 517 'gfx/point.cc',
526 'gfx/point.h', 518 'gfx/point.h',
527 'gfx/rect.cc', 519 'gfx/rect.cc',
528 'gfx/rect.h', 520 'gfx/rect.h',
529 'gfx/size.cc', 521 'gfx/size.cc',
530 'gfx/size.h', 522 'gfx/size.h',
531 ], 523 ],
532 'mac_framework_dirs': [ 524 'mac_framework_dirs': [
533 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks', 525 '$(SDKROOT)/System/Library/Frameworks/ApplicationServices.framework/Fram eworks',
534 ], 526 ],
535 'dependencies': [ 527 'dependencies': [
536 'base', 528 'base',
537 '../skia/skia.gyp:skia',
538 ], 529 ],
539 'export_dependent_settings': [ 530 'export_dependent_settings': [
540 'base', 531 'base',
541 ], 532 ],
542 'conditions': [ 533 'conditions': [
543 ['OS == "linux" or OS == "freebsd"', { 534 ['OS == "linux" or OS == "freebsd"', {
544 'dependencies': [ 535 'dependencies': [
545 '../build/linux/system.gyp:gtk', 536 '../build/linux/system.gyp:gtk',
546 ], 537 ],
547 }], 538 }],
548 [ 'OS != "win"', { 'sources!': [
549 'gfx/gdi_util.cc',
550 'gfx/native_theme.cc',
551 ],
552 }],
553 [ 'OS != "linux" and OS != "freebsd"', { 'sources!': [ 539 [ 'OS != "linux" and OS != "freebsd"', { 'sources!': [
554 'gfx/gtk_native_view_id_manager.cc', 540 'gfx/gtk_native_view_id_manager.cc',
555 'gfx/gtk_util.cc',
556 'gfx/native_widget_types_gtk.cc', 541 'gfx/native_widget_types_gtk.cc',
557 ], 542 ],
558 }], 543 }],
559 ], 544 ],
560 }, 545 },
561 { 546 {
562 'target_name': 'base_unittests', 547 'target_name': 'base_unittests',
563 'type': 'executable', 548 'type': 'executable',
564 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC', 549 'msvs_guid': '27A30967-4BBA-48D1-8522-CDE95F7B1CEC',
565 'sources': [ 550 'sources': [
(...skipping 11 matching lines...)
577 'crypto/signature_creator_unittest.cc', 562 'crypto/signature_creator_unittest.cc',
578 'crypto/signature_verifier_unittest.cc', 563 'crypto/signature_verifier_unittest.cc',
579 'data_pack_unittest.cc', 564 'data_pack_unittest.cc',
580 'debug_util_unittest.cc', 565 'debug_util_unittest.cc',
581 'directory_watcher_unittest.cc', 566 'directory_watcher_unittest.cc',
582 'field_trial_unittest.cc', 567 'field_trial_unittest.cc',
583 'file_descriptor_shuffle_unittest.cc', 568 'file_descriptor_shuffle_unittest.cc',
584 'file_path_unittest.cc', 569 'file_path_unittest.cc',
585 'file_util_unittest.cc', 570 'file_util_unittest.cc',
586 'file_version_info_unittest.cc', 571 'file_version_info_unittest.cc',
587 'gfx/native_theme_unittest.cc',
588 'gfx/rect_unittest.cc', 572 'gfx/rect_unittest.cc',
589 'gmock_unittest.cc', 573 'gmock_unittest.cc',
590 'histogram_unittest.cc', 574 'histogram_unittest.cc',
591 'hmac_unittest.cc', 575 'hmac_unittest.cc',
592 'id_map_unittest.cc', 576 'id_map_unittest.cc',
593 'json_reader_unittest.cc', 577 'json_reader_unittest.cc',
594 'json_writer_unittest.cc', 578 'json_writer_unittest.cc',
595 'lazy_instance_unittest.cc', 579 'lazy_instance_unittest.cc',
596 'leak_tracker_unittest.cc', 580 'leak_tracker_unittest.cc',
597 'linked_list_unittest.cc', 581 'linked_list_unittest.cc',
(...skipping 50 matching lines...)
648 'worker_pool_unittest.cc', 632 'worker_pool_unittest.cc',
649 ], 633 ],
650 'include_dirs': [ 634 'include_dirs': [
651 # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU 635 # word_iterator.h (used by word_iterator_unittest.cc) leaks an ICU
652 # #include for unicode/uchar.h. This should probably be cleaned up. 636 # #include for unicode/uchar.h. This should probably be cleaned up.
653 '../third_party/icu/public/common', 637 '../third_party/icu/public/common',
654 ], 638 ],
655 'dependencies': [ 639 'dependencies': [
656 'base', 640 'base',
657 'base_gfx', 641 'base_gfx',
658 '../skia/skia.gyp:skia',
659 '../testing/gmock.gyp:gmock', 642 '../testing/gmock.gyp:gmock',
660 '../testing/gtest.gyp:gtest', 643 '../testing/gtest.gyp:gtest',
661 ], 644 ],
662 'conditions': [ 645 'conditions': [
663 ['OS == "linux" or OS == "freebsd"', { 646 ['OS == "linux" or OS == "freebsd"', {
664 'sources!': [ 647 'sources!': [
665 'file_version_info_unittest.cc', 648 'file_version_info_unittest.cc',
666 'worker_pool_linux_unittest.cc', 649 'worker_pool_linux_unittest.cc',
667 ], 650 ],
668 'dependencies': [ 651 'dependencies': [
(...skipping 177 matching lines...)
846 '<@(_outputs)', 829 '<@(_outputs)',
847 ], 830 ],
848 'message': 'Generating version information', 831 'message': 'Generating version information',
849 }, 832 },
850 ], 833 ],
851 }, 834 },
852 ], 835 ],
853 }], 836 }],
854 ], 837 ],
855 } 838 }
OLDNEW
« no previous file with comments | « app\gfx\gtk_util.h ('k') | base/gfx/DEPS » ('j') | no next file with comments »

Powered by Google App Engine