Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Side by Side Diff: build/common.gypi

Issue 11554028: Don't fail at gyp time if arm-sysroot is missing. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698