| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 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. |
| (...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 # infrastructure (trybots etc.). Enable by setting to 1 in | 247 # infrastructure (trybots etc.). Enable by setting to 1 in |
| 248 # ~/.gyp/include.gypi or via the GYP command line for ~20-25% | 248 # ~/.gyp/include.gypi or via the GYP command line for ~20-25% |
| 249 # faster builds. | 249 # faster builds. |
| 250 'chromium_win_pch%': 0, | 250 'chromium_win_pch%': 0, |
| 251 | 251 |
| 252 'conditions': [ | 252 'conditions': [ |
| 253 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of | 253 # TODO(epoger): Figure out how to set use_skia=1 for Mac outside of |
| 254 # the 'conditions' clause. Initial attempts resulted in chromium and | 254 # the 'conditions' clause. Initial attempts resulted in chromium and |
| 255 # webkit disagreeing on its setting. | 255 # webkit disagreeing on its setting. |
| 256 ['OS=="mac"', { | 256 ['OS=="mac"', { |
| 257 'use_skia%': 1, | 257 'use_skia%': 0, |
| 258 # Mac uses clang by default, so turn on the plugin as well. | 258 # Mac uses clang by default, so turn on the plugin as well. |
| 259 'clang_use_chrome_plugins%': 1, | 259 'clang_use_chrome_plugins%': 1, |
| 260 }, { | 260 }, { |
| 261 'use_skia%': 1, | 261 'use_skia%': 1, |
| 262 }], | 262 }], |
| 263 | 263 |
| 264 # A flag for POSIX platforms | 264 # A flag for POSIX platforms |
| 265 ['OS=="win"', { | 265 ['OS=="win"', { |
| 266 'os_posix%': 0, | 266 'os_posix%': 0, |
| 267 }, { | 267 }, { |
| (...skipping 2356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2624 # settings in target dicts. SYMROOT is a special case, because many other | 2624 # settings in target dicts. SYMROOT is a special case, because many other |
| 2625 # Xcode variables depend on it, including variables such as | 2625 # Xcode variables depend on it, including variables such as |
| 2626 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2626 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 2627 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2627 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 2628 # files to appear (when present) in the UI as actual files and not red | 2628 # files to appear (when present) in the UI as actual files and not red |
| 2629 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2629 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 2630 # and therefore SYMROOT, needs to be set at the project level. | 2630 # and therefore SYMROOT, needs to be set at the project level. |
| 2631 'SYMROOT': '<(DEPTH)/xcodebuild', | 2631 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 2632 }, | 2632 }, |
| 2633 } | 2633 } |
| OLD | NEW |