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 |
tdanderson
2015/06/18 20:54:23
I just noticed a mistake in build/config/BUILD.gn
| |
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 expected to be overriden on the GYP command line (-D) or by | 9 # Variables expected to be overriden on the GYP command line (-D) or by |
10 # ~/.gyp/include.gypi. | 10 # ~/.gyp/include.gypi. |
11 'variables': { | 11 'variables': { |
12 # Putting a variables dict inside another variables dict looks kind of | 12 # Putting a variables dict inside another variables dict looks kind of |
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
223 'use_aura%': 1, | 223 'use_aura%': 1, |
224 'use_ash%': 0, | 224 'use_ash%': 0, |
225 'toolkit_views%': 0, | 225 'toolkit_views%': 0, |
226 }], | 226 }], |
227 | 227 |
228 # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux. | 228 # Enable HiDPI on Mac OS, Chrome OS, Windows and Linux. |
229 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', { | 229 ['OS=="mac" or chromeos==1 or OS=="win" or OS=="linux"', { |
230 'enable_hidpi%': 1, | 230 'enable_hidpi%': 1, |
231 }], | 231 }], |
232 | 232 |
233 # Enable Top Chrome Material Design on Chrome OS, and Windows. | 233 # Enable Top Chrome Material Design on Chrome OS, and Windows. |
tdanderson
2015/06/18 20:54:23
update comment to include Linux
bruthig
2015/06/22 18:51:11
Done.
| |
234 ['chromeos==1 or OS=="win"', { | 234 ['chromeos==1 or OS=="win" or OS=="linux"', { |
235 'enable_topchrome_md%': 1, | 235 'enable_topchrome_md%': 1, |
236 }], | 236 }], |
237 | 237 |
238 # Enable the OpenSSL backend on Mac OS and Windows. | 238 # Enable the OpenSSL backend on Mac OS and Windows. |
239 ['OS=="mac" or OS=="win"', { | 239 ['OS=="mac" or OS=="win"', { |
240 'use_openssl%': 1, | 240 'use_openssl%': 1, |
241 }], | 241 }], |
242 | 242 |
243 # Enable App Launcher everywhere but mobile. | 243 # Enable App Launcher everywhere but mobile. |
244 ['OS!="ios" and OS!="android"', { | 244 ['OS!="ios" and OS!="android"', { |
(...skipping 5953 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6198 # settings in target dicts. SYMROOT is a special case, because many other | 6198 # settings in target dicts. SYMROOT is a special case, because many other |
6199 # Xcode variables depend on it, including variables such as | 6199 # Xcode variables depend on it, including variables such as |
6200 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 6200 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
6201 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 6201 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
6202 # files to appear (when present) in the UI as actual files and not red | 6202 # files to appear (when present) in the UI as actual files and not red |
6203 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 6203 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
6204 # and therefore SYMROOT, needs to be set at the project level. | 6204 # and therefore SYMROOT, needs to be set at the project level. |
6205 'SYMROOT': '<(DEPTH)/xcodebuild', | 6205 'SYMROOT': '<(DEPTH)/xcodebuild', |
6206 }, | 6206 }, |
6207 } | 6207 } |
OLD | NEW |