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

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

Issue 2194223002: Remove Fuchsia build from the gyp build (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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/fuchsia_link.py ('k') | tools/gyp/configurations_fuchsia.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 23 matching lines...) Expand all
34 # The OS is set to "android" only when we are building Dartium+Clank. We 34 # The OS is set to "android" only when we are building Dartium+Clank. We
35 # use 'chrome_target_os' so that Release and Debug configurations inherit 35 # use 'chrome_target_os' so that Release and Debug configurations inherit
36 # from Android configurations when OS=="android". If OS is not set to 36 # from Android configurations when OS=="android". If OS is not set to
37 # Android, then Release and Debug inherit from the usual configurations. 37 # Android, then Release and Debug inherit from the usual configurations.
38 [ 'OS=="android"', { 'chrome_target_os': 'Android',}, 38 [ 'OS=="android"', { 'chrome_target_os': 'Android',},
39 { 'chrome_target_os': '',}], 39 { 'chrome_target_os': '',}],
40 ], 40 ],
41 }, 41 },
42 'includes': [ 42 'includes': [
43 'configurations_android.gypi', 43 'configurations_android.gypi',
44 'configurations_fuchsia.gypi',
45 'configurations_make.gypi', 44 'configurations_make.gypi',
46 'configurations_xcode.gypi', 45 'configurations_xcode.gypi',
47 'configurations_msvs.gypi', 46 'configurations_msvs.gypi',
48 ], 47 ],
49 'target_defaults': { 48 'target_defaults': {
50 'default_configuration': 'DebugIA32', 49 'default_configuration': 'DebugIA32',
51 'configurations': { 50 'configurations': {
52 'Dart_Base': { 51 'Dart_Base': {
53 'abstract': 1, 52 'abstract': 1,
54 }, 53 },
(...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 722
724 'ProductMIPS': { 723 'ProductMIPS': {
725 'inherit_from': [ 724 'inherit_from': [
726 'Dart_Base', 'Dart_mips_Base', 'Dart_Product', 725 'Dart_Base', 'Dart_mips_Base', 'Dart_Product',
727 'Dart_Linux_Base', 726 'Dart_Linux_Base',
728 'Dart_Linux_mips_Base', 727 'Dart_Linux_mips_Base',
729 'Dart_Linux_Product', 728 'Dart_Linux_Product',
730 ], 729 ],
731 }, 730 },
732 731
733 # Fuchsia configurations. The configuration names explicitly include
734 # 'Fuchsia' because we are cross-building from Linux, and, when building
735 # the standalone VM, we cannot inspect the gyp built-in 'OS' variable to
736 # figure out that we are building for Fuchsia. Since we have not re-run
737 # gyp, it will still be 'linux'.
738 'ProductFuchsiaX64': {
739 'inherit_from': [
740 'Dart_Base', 'Dart_x64_Base', 'Dart_Product',
741 'Dart_Fuchsia_Base',
742 'Dart_Fuchsia_x64_Base',
743 'Dart_Fuchsia_Product',
744 ],
745 },
746
747
748 # Android configurations. The configuration names explicitly include 732 # Android configurations. The configuration names explicitly include
749 # 'Android' because we are cross-building from Linux, and, when building 733 # 'Android' because we are cross-building from Linux, and, when building
750 # the standalone VM, we cannot inspect the gyp built-in 'OS' variable to 734 # the standalone VM, we cannot inspect the gyp built-in 'OS' variable to
751 # figure out that we are building for Android. Since we have not re-run 735 # figure out that we are building for Android. Since we have not re-run
752 # gyp, it will still be 'linux'. 736 # gyp, it will still be 'linux'.
753 'DebugAndroidIA32': { 737 'DebugAndroidIA32': {
754 'inherit_from': [ 738 'inherit_from': [
755 'Dart_Base', 'Dart_ia32_Base', 'Dart_Debug', 739 'Dart_Base', 'Dart_ia32_Base', 'Dart_Debug',
756 'Dart_Android_Base', 740 'Dart_Android_Base',
757 'Dart_Android_ia32_Base', 741 'Dart_Android_ia32_Base',
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
924 }, 908 },
925 909
926 'ReleaseX64_x64': { 910 'ReleaseX64_x64': {
927 'inherit_from': [ 'ReleaseX64' ] 911 'inherit_from': [ 'ReleaseX64' ]
928 }, 912 },
929 }], 913 }],
930 ], 914 ],
931 }, 915 },
932 }, 916 },
933 } 917 }
OLDNEW
« no previous file with comments | « tools/fuchsia_link.py ('k') | tools/gyp/configurations_fuchsia.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698