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

Side by Side Diff: build/common.gypi

Issue 119090: Disable -mdynamic-no-pic, the equivalent of enabling -fPIC, to allow most of... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 6 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 | 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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 { 5 {
6 'variables': { 6 'variables': {
7 # .gyp files should set chromium_code to 1 if they build Chromium-specific 7 # .gyp files should set chromium_code to 1 if they build Chromium-specific
8 # code, as opposed to external code. This variable is used to control 8 # code, as opposed to external code. This variable is used to control
9 # such things as the set of warnings to enable, and whether warnings are 9 # such things as the set of warnings to enable, and whether warnings are
10 # treated as errors. 10 # treated as errors.
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 # This should be 'mac_real_dsym%', but there seems to be a bug 367 # This should be 'mac_real_dsym%', but there seems to be a bug
368 # with % in variables that are intended to be set to different 368 # with % in variables that are intended to be set to different
369 # values in different targets, like this one. 369 # values in different targets, like this one.
370 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases. 370 'mac_real_dsym': 0, # Fake .dSYMs are fine in most cases.
371 }, 371 },
372 'mac_bundle': 0, 372 'mac_bundle': 0,
373 'xcode_settings': { 373 'xcode_settings': {
374 'ALWAYS_SEARCH_USER_PATHS': 'NO', 374 'ALWAYS_SEARCH_USER_PATHS': 'NO',
375 'GCC_C_LANGUAGE_STANDARD': 'c99', 375 'GCC_C_LANGUAGE_STANDARD': 'c99',
376 'GCC_CW_ASM_SYNTAX': 'NO', 376 'GCC_CW_ASM_SYNTAX': 'NO',
377 'GCC_DYNAMIC_NO_PIC': 'NO',
377 'GCC_ENABLE_PASCAL_STRINGS': 'NO', 378 'GCC_ENABLE_PASCAL_STRINGS': 'NO',
378 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES', 379 'GCC_INLINES_ARE_PRIVATE_EXTERN': 'YES',
379 'GCC_OBJC_CALL_CXX_CDTORS': 'YES', 380 'GCC_OBJC_CALL_CXX_CDTORS': 'YES',
380 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES', 381 'GCC_SYMBOLS_PRIVATE_EXTERN': 'YES',
381 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES', 382 'GCC_TREAT_WARNINGS_AS_ERRORS': 'YES',
382 'GCC_VERSION': '4.2', 383 'GCC_VERSION': '4.2',
383 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES', 384 'GCC_WARN_ABOUT_MISSING_NEWLINE': 'YES',
384 'MACOSX_DEPLOYMENT_TARGET': '10.5', 385 'MACOSX_DEPLOYMENT_TARGET': '10.5',
385 'PREBINDING': 'NO', 386 'PREBINDING': 'NO',
386 'SDKROOT': 'macosx10.5', 387 'SDKROOT': 'macosx10.5',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
536 # settings in target dicts. SYMROOT is a special case, because many other 537 # settings in target dicts. SYMROOT is a special case, because many other
537 # Xcode variables depend on it, including variables such as 538 # Xcode variables depend on it, including variables such as
538 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 539 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
539 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 540 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
540 # files to appear (when present) in the UI as actual files and not red 541 # files to appear (when present) in the UI as actual files and not red
541 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 542 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
542 # and therefore SYMROOT, needs to be set at the project level. 543 # and therefore SYMROOT, needs to be set at the project level.
543 'SYMROOT': '<(DEPTH)/xcodebuild', 544 'SYMROOT': '<(DEPTH)/xcodebuild',
544 }, 545 },
545 } 546 }
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