| OLD | NEW |
| 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 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 | 8 |
| 9 'variables': { | 9 'variables': { |
| 10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
| (...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 746 '../build/linux/system.gyp:selinux', | 746 '../build/linux/system.gyp:selinux', |
| 747 ], | 747 ], |
| 748 }], | 748 }], |
| 749 ['OS=="win"', { | 749 ['OS=="win"', { |
| 750 'include_dirs': [ | 750 'include_dirs': [ |
| 751 'third_party/wtl/include', | 751 'third_party/wtl/include', |
| 752 ], | 752 ], |
| 753 }, { # else: OS != "win" | 753 }, { # else: OS != "win" |
| 754 'sources!': [ | 754 'sources!': [ |
| 755 'common/classfactory.cc', | 755 'common/classfactory.cc', |
| 756 ], | |
| 757 }], | |
| 758 ['OS=="win" or (OS=="linux" and toolkit_views==0)', { | |
| 759 'sources!': [ | |
| 760 'common/temp_scaffolding_stubs.cc', | |
| 761 'common/temp_scaffolding_stubs.h', | 756 'common/temp_scaffolding_stubs.h', |
| 762 ], | 757 ], |
| 763 }], | 758 }], |
| 759 ['OS=="win" or OS=="linux"', { |
| 760 'sources!': [ |
| 761 'common/temp_scaffolding_stubs.cc', |
| 762 ], |
| 763 }], |
| 764 ], | 764 ], |
| 765 }, | 765 }, |
| 766 { | 766 { |
| 767 'target_name': 'browser', | 767 'target_name': 'browser', |
| 768 'type': '<(library)', | 768 'type': '<(library)', |
| 769 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', | 769 'msvs_guid': '5BF908A7-68FB-4A4B-99E3-8C749F1FE4EA', |
| 770 'dependencies': [ | 770 'dependencies': [ |
| 771 'common', | 771 'common', |
| 772 'chrome_resources', | 772 'chrome_resources', |
| 773 'chrome_strings', | 773 'chrome_strings', |
| (...skipping 6212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6986 ] | 6986 ] |
| 6987 }], | 6987 }], |
| 6988 ], # 'conditions' | 6988 ], # 'conditions' |
| 6989 } | 6989 } |
| 6990 | 6990 |
| 6991 # Local Variables: | 6991 # Local Variables: |
| 6992 # tab-width:2 | 6992 # tab-width:2 |
| 6993 # indent-tabs-mode:nil | 6993 # indent-tabs-mode:nil |
| 6994 # End: | 6994 # End: |
| 6995 # vim: set expandtab tabstop=2 shiftwidth=2: | 6995 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |