| 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 | 519 |
| 520 # Enable Skia UI text drawing incrementally on different platforms. | 520 # Enable Skia UI text drawing incrementally on different platforms. |
| 521 # http://crbug.com/105550 | 521 # http://crbug.com/105550 |
| 522 # | 522 # |
| 523 # On Aura, this allows per-tile painting to be used in the browser | 523 # On Aura, this allows per-tile painting to be used in the browser |
| 524 # compositor. | 524 # compositor. |
| 525 ['OS!="mac" and OS!="android"', { | 525 ['OS!="mac" and OS!="android"', { |
| 526 'use_canvas_skia%': 1, | 526 'use_canvas_skia%': 1, |
| 527 }], | 527 }], |
| 528 | 528 |
| 529 ['chromeos==1', { |
| 530 # When building for ChromeOS we dont want Chromium to use libjpeg_turb
o. |
| 531 'use_libjpeg_turbo%': 0, |
| 532 }], |
| 533 |
| 529 ['OS=="android"', { | 534 ['OS=="android"', { |
| 530 # When building as part of the Android system, use system libraries | 535 # When building as part of the Android system, use system libraries |
| 531 # where possible to reduce ROM size. | 536 # where possible to reduce ROM size. |
| 532 'use_system_libjpeg%': '<(android_build_type)', | 537 'use_system_libjpeg%': '<(android_build_type)', |
| 533 }], | 538 }], |
| 534 ], | 539 ], |
| 535 }, | 540 }, |
| 536 | 541 |
| 537 # Copy conditionally-set variables out one scope. | 542 # Copy conditionally-set variables out one scope. |
| 538 'branding%': '<(branding)', | 543 'branding%': '<(branding)', |
| (...skipping 2880 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3419 # settings in target dicts. SYMROOT is a special case, because many other | 3424 # settings in target dicts. SYMROOT is a special case, because many other |
| 3420 # Xcode variables depend on it, including variables such as | 3425 # Xcode variables depend on it, including variables such as |
| 3421 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3426 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3422 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3427 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3423 # files to appear (when present) in the UI as actual files and not red | 3428 # files to appear (when present) in the UI as actual files and not red |
| 3424 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3429 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3425 # and therefore SYMROOT, needs to be set at the project level. | 3430 # and therefore SYMROOT, needs to be set at the project level. |
| 3426 'SYMROOT': '<(DEPTH)/xcodebuild', | 3431 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3427 }, | 3432 }, |
| 3428 } | 3433 } |
| OLD | NEW |