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

Side by Side Diff: gpu/gpu.gyp

Issue 1708783002: Mustash: move content::GPUVideoMemoryUsageStats to gpu::VideoMemoryUsageStats (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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',
526 ], 527 ],
527 'sources': [ 528 'sources': [
528 'gpu_export.h', 529 'gpu_export.h',
529 ], 530 ],
530 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 531 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
531 'msvs_disabled_warnings': [4267, ], 532 'msvs_disabled_warnings': [4267, ],
532 }, 533 },
533 { 534 {
534 # GN version: //gpu/command_buffer/common 535 # GN version: //gpu/command_buffer/common
535 'target_name': 'command_buffer_common', 536 'target_name': 'command_buffer_common',
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 'target_name': 'gpu_ipc', 597 'target_name': 'gpu_ipc',
597 'type': 'static_library', 598 'type': 'static_library',
598 'includes': [ 599 'includes': [
599 'gpu_ipc.gypi', 600 'gpu_ipc.gypi',
600 ], 601 ],
601 'dependencies': [ 602 'dependencies': [
602 'command_buffer_common', 603 'command_buffer_common',
603 ], 604 ],
604 }, 605 },
605 { 606 {
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 {
606 'target_name': 'gpu_config', 615 'target_name': 'gpu_config',
607 'type': 'static_library', 616 'type': 'static_library',
608 'includes': [ 617 'includes': [
609 'gpu_config.gypi', 618 'gpu_config.gypi',
610 ], 619 ],
611 }, 620 },
612 ], 621 ],
613 }, 622 },
614 { # component != static_library 623 { # component != static_library
615 'targets': [ 624 'targets': [
(...skipping 12 matching lines...) Expand all
628 # GN version: //gpu 637 # GN version: //gpu
629 'target_name': 'gpu', 638 'target_name': 'gpu',
630 'type': 'shared_library', 639 'type': 'shared_library',
631 'includes': [ 640 'includes': [
632 'command_buffer_client.gypi', 641 'command_buffer_client.gypi',
633 'command_buffer_common.gypi', 642 'command_buffer_common.gypi',
634 'command_buffer_service.gypi', 643 'command_buffer_service.gypi',
635 'gles2_cmd_helper.gypi', 644 'gles2_cmd_helper.gypi',
636 'gpu_config.gypi', 645 'gpu_config.gypi',
637 'gpu_ipc.gypi', 646 'gpu_ipc.gypi',
647 'gpu_ipc_common.gypi',
638 '../build/android/increase_size_for_speed.gypi', 648 '../build/android/increase_size_for_speed.gypi',
639 ], 649 ],
640 'defines': [ 650 'defines': [
641 'GPU_IMPLEMENTATION', 651 'GPU_IMPLEMENTATION',
642 ], 652 ],
643 'sources': [ 653 'sources': [
644 'gpu_export.h', 654 'gpu_export.h',
645 ], 655 ],
646 'dependencies': [ 656 'dependencies': [
647 '../base/base.gyp:base', 657 '../base/base.gyp:base',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
687 ], 697 ],
688 }, 698 },
689 { 699 {
690 # GN version: //gpu/ipc 700 # GN version: //gpu/ipc
691 'target_name': 'gpu_ipc', 701 'target_name': 'gpu_ipc',
692 'type': 'none', 702 'type': 'none',
693 'dependencies': [ 703 'dependencies': [
694 'gpu', 704 'gpu',
695 ], 705 ],
696 }, 706 },
707 {
708 # GN version: //gpu/ipc/common
709 'target_name': 'gpu_ipc_common',
710 'type': 'none',
711 'dependencies': [
712 'gpu',
713 ],
714 },
697 ], 715 ],
698 }], 716 }],
699 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', { 717 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
700 'targets': [ 718 'targets': [
701 { 719 {
702 'target_name': 'command_buffer_common_win64', 720 'target_name': 'command_buffer_common_win64',
703 'type': 'static_library', 721 'type': 'static_library',
704 'variables': { 722 'variables': {
705 'nacl_win64_target': 1, 723 'nacl_win64_target': 1,
706 }, 724 },
(...skipping 30 matching lines...) Expand all
737 'defines': [ 755 'defines': [
738 '<@(nacl_win64_defines)', 756 '<@(nacl_win64_defines)',
739 'GPU_IMPLEMENTATION', 757 'GPU_IMPLEMENTATION',
740 ], 758 ],
741 'configurations': { 759 'configurations': {
742 'Common_Base': { 760 'Common_Base': {
743 'msvs_target_platform': 'x64', 761 'msvs_target_platform': 'x64',
744 }, 762 },
745 }, 763 },
746 }, 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',
777 'command_buffer_common_win64',
778 ],
779 'defines': [
780 '<@(nacl_win64_defines)',
781 'GPU_IMPLEMENTATION',
782 ],
783 'configurations': {
784 'Common_Base': {
785 'msvs_target_platform': 'x64',
786 },
787 },
788 },
747 ], 789 ],
748 }], 790 }],
749 ['OS == "android"', { 791 ['OS == "android"', {
750 'targets': [ 792 'targets': [
751 { 793 {
752 'target_name': 'angle_unittests_apk', 794 'target_name': 'angle_unittests_apk',
753 'type': 'none', 795 'type': 'none',
754 'dependencies': 796 'dependencies':
755 [ 797 [
756 'angle_unittests', 798 'angle_unittests',
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 ], 1014 ],
973 'sources': [ 1015 'sources': [
974 'gpu_unittests_apk.isolate', 1016 'gpu_unittests_apk.isolate',
975 ], 1017 ],
976 }, 1018 },
977 ], 1019 ],
978 }, 1020 },
979 ], 1021 ],
980 ], 1022 ],
981 } 1023 }
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