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

Side by Side Diff: tools/gyp/configurations.gypi

Issue 1762043002: Build for Android x64 (Closed) Base URL: git@github.com:dart-lang/sdk.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 | « tools/build.py ('k') | tools/gyp/configurations_android.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 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
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
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 }
OLDNEW
« no previous file with comments | « tools/build.py ('k') | tools/gyp/configurations_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698