| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 '__STD_C', | 773 '__STD_C', |
| 774 '_CRT_SECURE_NO_DEPRECATE', | 774 '_CRT_SECURE_NO_DEPRECATE', |
| 775 '_SCL_SECURE_NO_DEPRECATE', | 775 '_SCL_SECURE_NO_DEPRECATE', |
| 776 ], | 776 ], |
| 777 'include_dirs': [ | 777 'include_dirs': [ |
| 778 '<(DEPTH)/third_party/wtl/include', | 778 '<(DEPTH)/third_party/wtl/include', |
| 779 ], | 779 ], |
| 780 }], # OS==win | 780 }], # OS==win |
| 781 ['enable_register_protocol_handler==1', { | 781 ['enable_register_protocol_handler==1', { |
| 782 'defines': [ | 782 'defines': [ |
| 783 'ENABLE_REGISTER_PROTOCOL_HANDLER', | 783 'ENABLE_REGISTER_PROTOCOL_HANDLER=1', |
| 784 ], | 784 ], |
| 785 }], | 785 }], |
| 786 ], # conditions for 'target_defaults' | 786 ], # conditions for 'target_defaults' |
| 787 'target_conditions': [ | 787 'target_conditions': [ |
| 788 ['chromium_code==0', { | 788 ['chromium_code==0', { |
| 789 'conditions': [ | 789 'conditions': [ |
| 790 [ 'os_posix==1 and OS!="mac"', { | 790 [ 'os_posix==1 and OS!="mac"', { |
| 791 # We don't want to get warnings from third-party code, | 791 # We don't want to get warnings from third-party code, |
| 792 # so remove any existing warning-enabling flags like -Wall. | 792 # so remove any existing warning-enabling flags like -Wall. |
| 793 'cflags!': [ | 793 'cflags!': [ |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1760 # and therefore SYMROOT, needs to be set at the project level. | 1760 # and therefore SYMROOT, needs to be set at the project level. |
| 1761 'SYMROOT': '<(DEPTH)/xcodebuild', | 1761 'SYMROOT': '<(DEPTH)/xcodebuild', |
| 1762 }, | 1762 }, |
| 1763 } | 1763 } |
| 1764 | 1764 |
| 1765 # Local Variables: | 1765 # Local Variables: |
| 1766 # tab-width:2 | 1766 # tab-width:2 |
| 1767 # indent-tabs-mode:nil | 1767 # indent-tabs-mode:nil |
| 1768 # End: | 1768 # End: |
| 1769 # vim: set expandtab tabstop=2 shiftwidth=2: | 1769 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |