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

Side by Side Diff: gpu/gpu.gyp

Issue 1726343003: Revert of Mustash: move content::GPUVideoMemoryUsageStats to gpu::VideoMemoryUsageStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/gpu_ipc_common.gypi » ('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) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'nacl_win64_target': 0, 7 'nacl_win64_target': 0,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 'gpu_common.gypi', 10 'gpu_common.gypi',
(...skipping 505 matching lines...) Expand 10 before | Expand all | Expand 10 after
516 # GN version: //gpu 516 # GN version: //gpu
517 'target_name': 'gpu', 517 'target_name': 'gpu',
518 'type': 'none', 518 'type': 'none',
519 'dependencies': [ 519 'dependencies': [
520 'command_buffer_client', 520 'command_buffer_client',
521 'command_buffer_common', 521 'command_buffer_common',
522 'command_buffer_service', 522 'command_buffer_service',
523 'gles2_cmd_helper', 523 'gles2_cmd_helper',
524 'gpu_config', 524 'gpu_config',
525 'gpu_ipc', 525 'gpu_ipc',
526 'gpu_ipc_common',
527 ], 526 ],
528 'sources': [ 527 'sources': [
529 'gpu_export.h', 528 'gpu_export.h',
530 ], 529 ],
531 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 530 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
532 'msvs_disabled_warnings': [4267, ], 531 'msvs_disabled_warnings': [4267, ],
533 }, 532 },
534 { 533 {
535 # GN version: //gpu/command_buffer/common 534 # GN version: //gpu/command_buffer/common
536 'target_name': 'command_buffer_common', 535 'target_name': 'command_buffer_common',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
597 'target_name': 'gpu_ipc', 596 'target_name': 'gpu_ipc',
598 'type': 'static_library', 597 'type': 'static_library',
599 'includes': [ 598 'includes': [
600 'gpu_ipc.gypi', 599 'gpu_ipc.gypi',
601 ], 600 ],
602 'dependencies': [ 601 'dependencies': [
603 'command_buffer_common', 602 'command_buffer_common',
604 ], 603 ],
605 }, 604 },
606 { 605 {
607 # GN version: //gpu/ipc/common
608 'target_name': 'gpu_ipc_common',
609 'type': 'static_library',
610 'includes': [
611 'gpu_ipc_common.gypi',
612 ],
613 },
614 {
615 'target_name': 'gpu_config', 606 'target_name': 'gpu_config',
616 'type': 'static_library', 607 'type': 'static_library',
617 'includes': [ 608 'includes': [
618 'gpu_config.gypi', 609 'gpu_config.gypi',
619 ], 610 ],
620 }, 611 },
621 ], 612 ],
622 }, 613 },
623 { # component != static_library 614 { # component != static_library
624 'targets': [ 615 'targets': [
(...skipping 12 matching lines...) Expand all
637 # GN version: //gpu 628 # GN version: //gpu
638 'target_name': 'gpu', 629 'target_name': 'gpu',
639 'type': 'shared_library', 630 'type': 'shared_library',
640 'includes': [ 631 'includes': [
641 'command_buffer_client.gypi', 632 'command_buffer_client.gypi',
642 'command_buffer_common.gypi', 633 'command_buffer_common.gypi',
643 'command_buffer_service.gypi', 634 'command_buffer_service.gypi',
644 'gles2_cmd_helper.gypi', 635 'gles2_cmd_helper.gypi',
645 'gpu_config.gypi', 636 'gpu_config.gypi',
646 'gpu_ipc.gypi', 637 'gpu_ipc.gypi',
647 'gpu_ipc_common.gypi',
648 '../build/android/increase_size_for_speed.gypi', 638 '../build/android/increase_size_for_speed.gypi',
649 ], 639 ],
650 'defines': [ 640 'defines': [
651 'GPU_IMPLEMENTATION', 641 'GPU_IMPLEMENTATION',
652 ], 642 ],
653 'sources': [ 643 'sources': [
654 'gpu_export.h', 644 'gpu_export.h',
655 ], 645 ],
656 'dependencies': [ 646 'dependencies': [
657 '../base/base.gyp:base', 647 '../base/base.gyp:base',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
695 'dependencies': [ 685 'dependencies': [
696 'gpu', 686 'gpu',
697 ], 687 ],
698 }, 688 },
699 { 689 {
700 # GN version: //gpu/ipc 690 # GN version: //gpu/ipc
701 'target_name': 'gpu_ipc', 691 'target_name': 'gpu_ipc',
702 'type': 'none', 692 'type': 'none',
703 'dependencies': [ 693 'dependencies': [
704 'gpu', 694 'gpu',
705 ],
706 },
707 {
708 # GN version: //gpu/ipc/common
709 'target_name': 'gpu_ipc_common',
710 'type': 'none',
711 'dependencies': [
712 'gpu',
713 ], 695 ],
714 }, 696 },
715 ], 697 ],
716 }], 698 }],
717 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', { 699 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
718 'targets': [ 700 'targets': [
719 { 701 {
720 'target_name': 'command_buffer_common_win64', 702 'target_name': 'command_buffer_common_win64',
721 'type': 'static_library', 703 'type': 'static_library',
722 'variables': { 704 'variables': {
(...skipping 19 matching lines...) Expand all
742 'target_name': 'gpu_ipc_win64', 724 'target_name': 'gpu_ipc_win64',
743 'type': 'static_library', 725 'type': 'static_library',
744 'variables': { 726 'variables': {
745 'nacl_win64_target': 1, 727 'nacl_win64_target': 1,
746 }, 728 },
747 'includes': [ 729 'includes': [
748 'gpu_ipc.gypi', 730 'gpu_ipc.gypi',
749 ], 731 ],
750 'dependencies': [ 732 'dependencies': [
751 '../base/base.gyp:base_win64', 733 '../base/base.gyp:base_win64',
752 '../ipc/ipc.gyp:ipc_win64',
753 'command_buffer_common_win64',
754 ],
755 'defines': [
756 '<@(nacl_win64_defines)',
757 'GPU_IMPLEMENTATION',
758 ],
759 'configurations': {
760 'Common_Base': {
761 'msvs_target_platform': 'x64',
762 },
763 },
764 },
765 {
766 'target_name': 'gpu_ipc_common_win64',
767 'type': 'static_library',
768 'variables': {
769 'nacl_win64_target': 1,
770 },
771 'includes': [
772 'gpu_ipc_common.gypi',
773 ],
774 'dependencies': [
775 '../base/base.gyp:base_win64',
776 '../ipc/ipc.gyp:ipc_win64', 734 '../ipc/ipc.gyp:ipc_win64',
777 'command_buffer_common_win64', 735 'command_buffer_common_win64',
778 ], 736 ],
779 'defines': [ 737 'defines': [
780 '<@(nacl_win64_defines)', 738 '<@(nacl_win64_defines)',
781 'GPU_IMPLEMENTATION', 739 'GPU_IMPLEMENTATION',
782 ], 740 ],
783 'configurations': { 741 'configurations': {
784 'Common_Base': { 742 'Common_Base': {
785 'msvs_target_platform': 'x64', 743 'msvs_target_platform': 'x64',
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 ], 972 ],
1015 'sources': [ 973 'sources': [
1016 'gpu_unittests_apk.isolate', 974 'gpu_unittests_apk.isolate',
1017 ], 975 ],
1018 }, 976 },
1019 ], 977 ],
1020 }, 978 },
1021 ], 979 ],
1022 ], 980 ],
1023 } 981 }
OLDNEW
« no previous file with comments | « gpu/BUILD.gn ('k') | gpu/gpu_ipc_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698