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 |
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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
419 'enable_automation%': 0, | 419 'enable_automation%': 0, |
420 }, { | 420 }, { |
421 'enable_automation%': 1, | 421 'enable_automation%': 1, |
422 }], | 422 }], |
423 | 423 |
424 # Enable Skia UI text drawing incrementally on different platforms. | 424 # Enable Skia UI text drawing incrementally on different platforms. |
425 # http://crbug.com/105550 | 425 # http://crbug.com/105550 |
426 # | 426 # |
427 # On Aura, this allows per-tile painting to be used in the browser | 427 # On Aura, this allows per-tile painting to be used in the browser |
428 # compositor. | 428 # compositor. |
429 ['use_aura==1 or OS=="win"', { | 429 ['use_aura==1', { |
430 'use_canvas_skia%': 1, | 430 'use_canvas_skia%': 1, |
431 }], | 431 }], |
432 ], | 432 ], |
433 }, | 433 }, |
434 | 434 |
435 # Copy conditionally-set variables out one scope. | 435 # Copy conditionally-set variables out one scope. |
436 'branding%': '<(branding)', | 436 'branding%': '<(branding)', |
437 'buildtype%': '<(buildtype)', | 437 'buildtype%': '<(buildtype)', |
438 'target_arch%': '<(target_arch)', | 438 'target_arch%': '<(target_arch)', |
439 'host_arch%': '<(host_arch)', | 439 'host_arch%': '<(host_arch)', |
(...skipping 2504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2944 # settings in target dicts. SYMROOT is a special case, because many other | 2944 # settings in target dicts. SYMROOT is a special case, because many other |
2945 # Xcode variables depend on it, including variables such as | 2945 # Xcode variables depend on it, including variables such as |
2946 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 2946 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
2947 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 2947 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
2948 # files to appear (when present) in the UI as actual files and not red | 2948 # files to appear (when present) in the UI as actual files and not red |
2949 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 2949 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
2950 # and therefore SYMROOT, needs to be set at the project level. | 2950 # and therefore SYMROOT, needs to be set at the project level. |
2951 'SYMROOT': '<(DEPTH)/xcodebuild', | 2951 'SYMROOT': '<(DEPTH)/xcodebuild', |
2952 }, | 2952 }, |
2953 } | 2953 } |
OLD | NEW |