OLD | NEW |
---|---|
1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 # IMPORTANT: | 5 # IMPORTANT: |
6 # Please don't directly include this file if you are building via gyp_chromium, | 6 # Please don't directly include this file if you are building via gyp_chromium, |
7 # since gyp_chromium is automatically forcing its inclusion. | 7 # since gyp_chromium is automatically forcing its inclusion. |
8 { | 8 { |
9 'variables': { | 9 'variables': { |
10 # .gyp files or targets should set chromium_code to 1 if they build | 10 # .gyp files or targets should set chromium_code to 1 if they build |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 'inside_chromium_build%': 1, | 76 'inside_chromium_build%': 1, |
77 | 77 |
78 # Set to 1 to enable fast builds. It disables debug info for fastest | 78 # Set to 1 to enable fast builds. It disables debug info for fastest |
79 # compilation. | 79 # compilation. |
80 'fastbuild%': 0, | 80 'fastbuild%': 0, |
81 | 81 |
82 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared | 82 # Set to 1 compile with -fPIC cflag on linux. This is a must for shared |
83 # libraries on linux x86-64 and arm. | 83 # libraries on linux x86-64 and arm. |
84 'linux_fpic%': 0, | 84 'linux_fpic%': 0, |
85 | 85 |
86 # Python version. | |
87 'python_ver%': '2.5', | |
Nirnimesh
2010/03/01 22:12:19
btw, you did not refer to 2.6 for chromeos anywher
zel
2010/03/01 22:15:53
That's done externally from Chrome OS ebuild file.
| |
88 | |
86 # Set ARM-v7 compilation flags | 89 # Set ARM-v7 compilation flags |
87 'armv7%': 0, | 90 'armv7%': 0, |
88 | 91 |
89 # Set Neon compilation flags (only meaningful if armv7==1). | 92 # Set Neon compilation flags (only meaningful if armv7==1). |
90 'arm_neon%': 1, | 93 'arm_neon%': 1, |
91 }, | 94 }, |
92 | 95 |
93 # Define branding and buildtype on the basis of their settings within the | 96 # Define branding and buildtype on the basis of their settings within the |
94 # variables sub-dict above, unless overridden. | 97 # variables sub-dict above, unless overridden. |
95 'branding%': '<(branding)', | 98 'branding%': '<(branding)', |
96 'buildtype%': '<(buildtype)', | 99 'buildtype%': '<(buildtype)', |
97 'target_arch%': '<(target_arch)', | 100 'target_arch%': '<(target_arch)', |
98 'host_arch%': '<(host_arch)', | 101 'host_arch%': '<(host_arch)', |
99 'toolkit_views%': '<(toolkit_views)', | 102 'toolkit_views%': '<(toolkit_views)', |
100 'chromeos%': '<(chromeos)', | 103 'chromeos%': '<(chromeos)', |
101 'inside_chromium_build%': '<(inside_chromium_build)', | 104 'inside_chromium_build%': '<(inside_chromium_build)', |
102 'fastbuild%': '<(fastbuild)', | 105 'fastbuild%': '<(fastbuild)', |
103 'linux_fpic%': '<(linux_fpic)', | 106 'linux_fpic%': '<(linux_fpic)', |
107 'python_ver%': '<(python_ver)', | |
104 'armv7%': '<(armv7)', | 108 'armv7%': '<(armv7)', |
105 'arm_neon%': '<(arm_neon)', | 109 'arm_neon%': '<(arm_neon)', |
106 | 110 |
107 # The release channel that this build targets. This is used to restrict | 111 # The release channel that this build targets. This is used to restrict |
108 # channel-specific build options, like which installer packages to create. | 112 # channel-specific build options, like which installer packages to create. |
109 # The default is 'all', which does no channel-specific filtering. | 113 # The default is 'all', which does no channel-specific filtering. |
110 'channel%': 'all', | 114 'channel%': 'all', |
111 | 115 |
112 # Override chromium_mac_pch and set it to 0 to suppress the use of | 116 # Override chromium_mac_pch and set it to 0 to suppress the use of |
113 # precompiled headers on the Mac. Prefix header injection may still be | 117 # precompiled headers on the Mac. Prefix header injection may still be |
(...skipping 1113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1227 # and therefore SYMROOT, needs to be set at the project level. | 1231 # and therefore SYMROOT, needs to be set at the project level. |
1228 'SYMROOT': '<(DEPTH)/xcodebuild', | 1232 'SYMROOT': '<(DEPTH)/xcodebuild', |
1229 }, | 1233 }, |
1230 } | 1234 } |
1231 | 1235 |
1232 # Local Variables: | 1236 # Local Variables: |
1233 # tab-width:2 | 1237 # tab-width:2 |
1234 # indent-tabs-mode:nil | 1238 # indent-tabs-mode:nil |
1235 # End: | 1239 # End: |
1236 # vim: set expandtab tabstop=2 shiftwidth=2: | 1240 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |