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

Side by Side Diff: build/common.gypi

Issue 155812: Pulling in new gyp version.... (Closed) Base URL: svn://chrome-svn.corp.google.com/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | « DEPS ('k') | 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 491 matching lines...) Expand 10 before | Expand all | Expand 10 after
502 'WIN32', 502 'WIN32',
503 '_WINDOWS', 503 '_WINDOWS',
504 '_HAS_EXCEPTIONS=0', 504 '_HAS_EXCEPTIONS=0',
505 'NOMINMAX', 505 'NOMINMAX',
506 '_CRT_RAND_S', 506 '_CRT_RAND_S',
507 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', 507 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS',
508 'WIN32_LEAN_AND_MEAN', 508 'WIN32_LEAN_AND_MEAN',
509 '_SECURE_ATL', 509 '_SECURE_ATL',
510 '_HAS_TR1=0', 510 '_HAS_TR1=0',
511 ], 511 ],
512 'include_dirs': [ 512 'msvs_system_include_dirs': [
513 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include', 513 '<(DEPTH)/third_party/platformsdk_win2008_6_1/files/Include',
514 '$(VSInstallDir)/VC/atlmfc/include', 514 '$(VSInstallDir)/VC/atlmfc/include',
515 ], 515 ],
516 'msvs_cygwin_dirs': ['../third_party/cygwin'], 516 'msvs_cygwin_dirs': ['../third_party/cygwin'],
517 'msvs_disabled_warnings': [4396, 4503, 4819], 517 'msvs_disabled_warnings': [4396, 4503, 4819],
518 'msvs_settings': { 518 'msvs_settings': {
519 'VCCLCompilerTool': { 519 'VCCLCompilerTool': {
520 'MinimalRebuild': 'false', 520 'MinimalRebuild': 'false',
521 'ExceptionHandling': '0', 521 'ExceptionHandling': '0',
522 'BufferSecurityCheck': 'true', 522 'BufferSecurityCheck': 'true',
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 # settings in target dicts. SYMROOT is a special case, because many other 614 # settings in target dicts. SYMROOT is a special case, because many other
615 # Xcode variables depend on it, including variables such as 615 # Xcode variables depend on it, including variables such as
616 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something 616 # PROJECT_DERIVED_FILE_DIR. When a source group corresponding to something
617 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the 617 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the
618 # files to appear (when present) in the UI as actual files and not red 618 # files to appear (when present) in the UI as actual files and not red
619 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, 619 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR,
620 # and therefore SYMROOT, needs to be set at the project level. 620 # and therefore SYMROOT, needs to be set at the project level.
621 'SYMROOT': '<(DEPTH)/xcodebuild', 621 'SYMROOT': '<(DEPTH)/xcodebuild',
622 }, 622 },
623 } 623 }
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698