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

Side by Side Diff: build/common.gypi

Issue 12387011: Make it possible to override the default mipsel sysroot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update mips sysroot path Created 7 years, 9 months 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
« 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 613 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 'armv7%': 1, 624 'armv7%': 1,
625 'linux_breakpad%': 0, 625 'linux_breakpad%': 0,
626 'linux_use_tcmalloc%': 0, 626 'linux_use_tcmalloc%': 0,
627 'linux_use_gold_flags%': 0, 627 'linux_use_gold_flags%': 0,
628 # sysroot needs to be an absolute path otherwise it generates 628 # sysroot needs to be an absolute path otherwise it generates
629 # incorrect results when passed to pkg-config 629 # incorrect results when passed to pkg-config
630 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/arm-sysroot', 630 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/arm-sysroot',
631 }], # OS=="linux" and target_arch=="arm" and chromeos==0 631 }], # OS=="linux" and target_arch=="arm" and chromeos==0
632 632
633 ['target_arch=="mipsel"', { 633 ['target_arch=="mipsel"', {
634 'sysroot': '<!(cd <(DEPTH) && pwd -P)/native_client/toolchain/linux_mi ps-trusted/sysroot', 634 'sysroot%': '<!(cd <(DEPTH) && pwd -P)/mipsel-sysroot/sysroot',
635 }], 635 }],
636 ], 636 ],
637 637
638 # Set this to 1 to use the Google-internal file containing 638 # Set this to 1 to use the Google-internal file containing
639 # official API keys for Google Chrome even in a developer build. 639 # official API keys for Google Chrome even in a developer build.
640 # Setting this variable explicitly to 1 will cause your build to 640 # Setting this variable explicitly to 1 will cause your build to
641 # fail if the internal file is missing. 641 # fail if the internal file is missing.
642 # 642 #
643 # Set this to 0 to not use the internal file, even when it 643 # Set this to 0 to not use the internal file, even when it
644 # exists in your checkout. 644 # exists in your checkout.
(...skipping 3483 matching lines...) Expand 10 before | Expand all | Expand 10 after
4128 # settings in target dicts. SYMROOT is a special case, because many other 4128 # settings in target dicts. SYMROOT is a special case, because many other
4129 # Xcode variables depend on it, including variables such as 4129 # Xcode variables depend on it, including variables such as
4130 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 4130 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
4131 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 4131 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
4132 # files to appear (when present) in the UI as actual files and not red 4132 # files to appear (when present) in the UI as actual files and not red
4133 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 4133 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
4134 # and therefore SYMROOT, needs to be set at the project level. 4134 # and therefore SYMROOT, needs to be set at the project level.
4135 'SYMROOT': '<(DEPTH)/xcodebuild', 4135 'SYMROOT': '<(DEPTH)/xcodebuild',
4136 }, 4136 },
4137 } 4137 }
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