OLD | NEW |
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 # for details. All rights reserved. Use of this source code is governed by a | 2 # for details. All rights reserved. Use of this source code is governed by a |
3 # BSD-style license that can be found in the LICENSE file. | 3 # BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'common_gcc_warning_flags': [ | 7 'common_gcc_warning_flags': [ |
8 '-Wall', | 8 '-Wall', |
9 '-Wextra', # Also known as -W. | 9 '-Wextra', # Also known as -W. |
10 '-Wno-unused-parameter', | 10 '-Wno-unused-parameter', |
(...skipping 642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
653 | 653 |
654 'ProductAndroidIA32': { | 654 'ProductAndroidIA32': { |
655 'inherit_from': [ | 655 'inherit_from': [ |
656 'Dart_Base', 'Dart_ia32_Base', 'Dart_Product', | 656 'Dart_Base', 'Dart_ia32_Base', 'Dart_Product', |
657 'Dart_Android_Base', | 657 'Dart_Android_Base', |
658 'Dart_Android_ia32_Base', | 658 'Dart_Android_ia32_Base', |
659 'Dart_Android_Product', | 659 'Dart_Android_Product', |
660 ], | 660 ], |
661 }, | 661 }, |
662 | 662 |
| 663 'DebugAndroidX64': { |
| 664 'inherit_from': [ |
| 665 'Dart_Base', 'Dart_x64_Base', 'Dart_Debug', |
| 666 'Dart_Android_Base', |
| 667 'Dart_Android_x64_Base', |
| 668 'Dart_Android_Debug', |
| 669 ], |
| 670 }, |
| 671 |
| 672 'ReleaseAndroidX64': { |
| 673 'inherit_from': [ |
| 674 'Dart_Base', 'Dart_x64_Base', 'Dart_Release', |
| 675 'Dart_Android_Base', |
| 676 'Dart_Android_x64_Base', |
| 677 'Dart_Android_Release', |
| 678 ], |
| 679 }, |
| 680 |
| 681 'ProductAndroidX64': { |
| 682 'inherit_from': [ |
| 683 'Dart_Base', 'Dart_x64_Base', 'Dart_Product', |
| 684 'Dart_Android_Base', |
| 685 'Dart_Android_x64_Base', |
| 686 'Dart_Android_Product', |
| 687 ], |
| 688 }, |
| 689 |
663 'DebugAndroidARM': { | 690 'DebugAndroidARM': { |
664 'inherit_from': [ | 691 'inherit_from': [ |
665 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', | 692 'Dart_Base', 'Dart_arm_Base', 'Dart_Debug', |
666 'Dart_Android_Base', | 693 'Dart_Android_Base', |
667 'Dart_Android_arm_Base', | 694 'Dart_Android_arm_Base', |
668 'Dart_Android_Debug', | 695 'Dart_Android_Debug', |
669 ], | 696 ], |
670 }, | 697 }, |
671 | 698 |
672 'ReleaseAndroidARM': { | 699 'ReleaseAndroidARM': { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
734 }, | 761 }, |
735 | 762 |
736 'ReleaseX64_x64': { | 763 'ReleaseX64_x64': { |
737 'inherit_from': [ 'ReleaseX64' ] | 764 'inherit_from': [ 'ReleaseX64' ] |
738 }, | 765 }, |
739 }], | 766 }], |
740 ], | 767 ], |
741 }, | 768 }, |
742 }, | 769 }, |
743 } | 770 } |
OLD | NEW |