OLD | NEW |
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 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
560 'type': 'none', | 560 'type': 'none', |
561 'dependencies': [ | 561 'dependencies': [ |
562 'gpu', | 562 'gpu', |
563 ], | 563 ], |
564 }, | 564 }, |
565 ], | 565 ], |
566 }], | 566 }], |
567 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', { | 567 ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', { |
568 'targets': [ | 568 'targets': [ |
569 { | 569 { |
| 570 'target_name': 'command_buffer_common_win64', |
| 571 'type': 'static_library', |
| 572 'variables': { |
| 573 'nacl_win64_target': 1, |
| 574 }, |
| 575 'includes': [ |
| 576 'command_buffer_common.gypi', |
| 577 ], |
| 578 'dependencies': [ |
| 579 '../base/base.gyp:base_win64', |
| 580 ], |
| 581 'defines': [ |
| 582 '<@(nacl_win64_defines)', |
| 583 'GPU_IMPLEMENTATION', |
| 584 ], |
| 585 'configurations': { |
| 586 'Common_Base': { |
| 587 'msvs_target_platform': 'x64', |
| 588 }, |
| 589 }, |
| 590 }, |
| 591 { |
570 'target_name': 'gpu_ipc_win64', | 592 'target_name': 'gpu_ipc_win64', |
571 'type': 'static_library', | 593 'type': 'static_library', |
572 'variables': { | 594 'variables': { |
573 'nacl_win64_target': 1, | 595 'nacl_win64_target': 1, |
574 }, | 596 }, |
575 'includes': [ | 597 'includes': [ |
576 'gpu_ipc.gypi', | 598 'gpu_ipc.gypi', |
577 ], | 599 ], |
578 'dependencies': [ | 600 'dependencies': [ |
579 '../base/base.gyp:base_win64', | 601 '../base/base.gyp:base_win64', |
580 '../ipc/ipc.gyp:ipc_win64', | 602 '../ipc/ipc.gyp:ipc_win64', |
| 603 'command_buffer_common_win64', |
581 ], | 604 ], |
582 'defines': [ | 605 'defines': [ |
583 '<@(nacl_win64_defines)', | 606 '<@(nacl_win64_defines)', |
584 'GPU_IMPLEMENTATION', | 607 'GPU_IMPLEMENTATION', |
585 ], | 608 ], |
586 'configurations': { | 609 'configurations': { |
587 'Common_Base': { | 610 'Common_Base': { |
588 'msvs_target_platform': 'x64', | 611 'msvs_target_platform': 'x64', |
589 }, | 612 }, |
590 }, | 613 }, |
(...skipping 23 matching lines...) Expand all Loading... |
614 ], | 637 ], |
615 'variables': { | 638 'variables': { |
616 'test_suite_name': 'gpu_unittests', | 639 'test_suite_name': 'gpu_unittests', |
617 }, | 640 }, |
618 'includes': [ '../build/apk_test.gypi' ], | 641 'includes': [ '../build/apk_test.gypi' ], |
619 }, | 642 }, |
620 ], | 643 ], |
621 }], | 644 }], |
622 ], | 645 ], |
623 } | 646 } |
OLD | NEW |