| 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 { | 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 675 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 # .S file | 686 # .S file |
| 687 '$(InputPath)' | 687 '$(InputPath)' |
| 688 ], | 688 ], |
| 689 'message': 'Building assembly language file $(InputPath)', | 689 'message': 'Building assembly language file $(InputPath)', |
| 690 'process_outputs_as_sources': 1, | 690 'process_outputs_as_sources': 1, |
| 691 }, | 691 }, |
| 692 ], | 692 ], |
| 693 }], | 693 }], |
| 694 ], | 694 ], |
| 695 'defines': [ | 695 'defines': [ |
| 696 '_WIN32_WINNT=0x0602', | 696 '_WIN32_WINNT=0x0603', |
| 697 'WINVER=0x0602', | 697 'WINVER=0x0603', |
| 698 # WIN32 is used by ppapi | 698 # WIN32 is used by ppapi |
| 699 'WIN32', | 699 'WIN32', |
| 700 'NOMINMAX', | 700 'NOMINMAX', |
| 701 '_CRT_RAND_S', | 701 '_CRT_RAND_S', |
| 702 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', | 702 'CERT_CHAIN_PARA_HAS_EXTRA_FIELDS', |
| 703 # WIN32_LEAN_AND_MEAN tells windows.h to omit obsolete and rarely | 703 # WIN32_LEAN_AND_MEAN tells windows.h to omit obsolete and rarely |
| 704 # used #include files. This allows use of Winsock 2.0 which otherwise | 704 # used #include files. This allows use of Winsock 2.0 which otherwise |
| 705 # would conflict with Winsock 1.x included by windows.h. | 705 # would conflict with Winsock 1.x included by windows.h. |
| 706 'WIN32_LEAN_AND_MEAN', | 706 'WIN32_LEAN_AND_MEAN', |
| 707 '_SECURE_ATL', | 707 '_SECURE_ATL', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the | 838 # like PROJECT_DERIVED_FILE_DIR is added to a project, in order for the |
| 839 # files to appear (when present) in the UI as actual files and not red | 839 # files to appear (when present) in the UI as actual files and not red |
| 840 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, | 840 # red "missing file" proxies, the correct path to PROJECT_DERIVED_FILE_DIR, |
| 841 # and therefore SYMROOT, needs to be set at the project level. | 841 # and therefore SYMROOT, needs to be set at the project level. |
| 842 'SYMROOT': '<(DEPTH)/xcodebuild', | 842 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 843 }, | 843 }, |
| 844 'includes': [ | 844 'includes': [ |
| 845 'untrusted.gypi', | 845 'untrusted.gypi', |
| 846 ], | 846 ], |
| 847 } | 847 } |
| OLD | NEW |