| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 '../build/win_precompile.gypi', | 10 '../build/win_precompile.gypi', |
| (...skipping 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 'allocator/allocator.gyp:allocator', | 759 'allocator/allocator.gyp:allocator', |
| 760 ], | 760 ], |
| 761 }], | 761 }], |
| 762 ['icu_use_data_file_flag==0', { | 762 ['icu_use_data_file_flag==0', { |
| 763 # This is needed to trigger the dll copy step on windows. | 763 # This is needed to trigger the dll copy step on windows. |
| 764 # TODO(mark): This should not be necessary. | 764 # TODO(mark): This should not be necessary. |
| 765 'dependencies': [ | 765 'dependencies': [ |
| 766 '../third_party/icu/icu.gyp:icudata', | 766 '../third_party/icu/icu.gyp:icudata', |
| 767 ], | 767 ], |
| 768 }], | 768 }], |
| 769 ['incremental_chrome_dll', { |
| 770 'defines': [ |
| 771 # Used only to workaround a linker bug, do not use this |
| 772 # otherwise, and don't make it broader scope. See |
| 773 # http://crbug.com/251251. |
| 774 'INCREMENTAL_LINKING', |
| 775 ], |
| 776 }], |
| 769 ], | 777 ], |
| 770 }, { # OS != "win" | 778 }, { # OS != "win" |
| 771 'dependencies': [ | 779 'dependencies': [ |
| 772 '../third_party/libevent/libevent.gyp:libevent' | 780 '../third_party/libevent/libevent.gyp:libevent' |
| 773 ], | 781 ], |
| 774 }], | 782 }], |
| 775 ], # conditions | 783 ], # conditions |
| 776 'target_conditions': [ | 784 'target_conditions': [ |
| 777 ['OS == "ios" and _toolset != "host"', { | 785 ['OS == "ios" and _toolset != "host"', { |
| 778 'sources/': [ | 786 'sources/': [ |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1479 'dependencies': [ | 1487 'dependencies': [ |
| 1480 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', | 1488 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck', |
| 1481 ], | 1489 ], |
| 1482 }], | 1490 }], |
| 1483 ], | 1491 ], |
| 1484 }, | 1492 }, |
| 1485 ], | 1493 ], |
| 1486 }], | 1494 }], |
| 1487 ], | 1495 ], |
| 1488 } | 1496 } |
| OLD | NEW |