| 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 579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 590 }, { | 590 }, { |
| 591 'enable_settings_app%': 0, | 591 'enable_settings_app%': 0, |
| 592 }], | 592 }], |
| 593 | 593 |
| 594 ['OS=="linux" and target_arch=="arm" and chromeos==0', { | 594 ['OS=="linux" and target_arch=="arm" and chromeos==0', { |
| 595 # Set some defaults for arm/linux chrome builds | 595 # Set some defaults for arm/linux chrome builds |
| 596 'armv7%': 1, | 596 'armv7%': 1, |
| 597 'linux_breakpad%': 0, | 597 'linux_breakpad%': 0, |
| 598 'linux_use_tcmalloc%': 0, | 598 'linux_use_tcmalloc%': 0, |
| 599 'linux_use_gold_flags%': 0, | 599 'linux_use_gold_flags%': 0, |
| 600 # sysroot need to be an absolute path otherwise it generates | 600 # sysroot needs to be an absolute path otherwise it generates |
| 601 # incorrect results when passed to pkg-config | 601 # incorrect results when passed to pkg-config |
| 602 'sysroot%': '<!(cd <(DEPTH)/arm-sysroot && pwd -P)', | 602 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/arm-sysroot', |
| 603 }], # OS=="linux" and target_arch=="arm" and chromeos==0 | 603 }], # OS=="linux" and target_arch=="arm" and chromeos==0 |
| 604 ], | 604 ], |
| 605 | 605 |
| 606 # Set this to 1 to use the Google-internal file containing | 606 # Set this to 1 to use the Google-internal file containing |
| 607 # official API keys for Google Chrome even in a developer build. | 607 # official API keys for Google Chrome even in a developer build. |
| 608 # Setting this variable explicitly to 1 will cause your build to | 608 # Setting this variable explicitly to 1 will cause your build to |
| 609 # fail if the internal file is missing. | 609 # fail if the internal file is missing. |
| 610 # | 610 # |
| 611 # Set this to 0 to not use the internal file, even when it | 611 # Set this to 0 to not use the internal file, even when it |
| 612 # exists in your checkout. | 612 # exists in your checkout. |
| (...skipping 3316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3929 # settings in target dicts. SYMROOT is a special case, because many other | 3929 # settings in target dicts. SYMROOT is a special case, because many other |
| 3930 # Xcode variables depend on it, including variables such as | 3930 # Xcode variables depend on it, including variables such as |
| 3931 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something | 3931 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something |
| 3932 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 3932 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 3933 # files to appear (when present) in the UI as actual files and not red | 3933 # files to appear (when present) in the UI as actual files and not red |
| 3934 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 3934 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 3935 # and therefore SYMROOT, needs to be set at the project level. | 3935 # and therefore SYMROOT, needs to be set at the project level. |
| 3936 'SYMROOT': '<(DEPTH)/xcodebuild', | 3936 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 3937 }, | 3937 }, |
| 3938 } | 3938 } |
| OLD | NEW |