| 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 # Define the common dependencies that contain all the actual | 9 # Define the common dependencies that contain all the actual |
| 10 # Chromium functionality. This list gets pulled in below by | 10 # Chromium functionality. This list gets pulled in below by |
| (...skipping 5555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5566 ['OS=="win"', { | 5566 ['OS=="win"', { |
| 5567 'include_dirs': [ | 5567 'include_dirs': [ |
| 5568 'third_party/wtl/include', | 5568 'third_party/wtl/include', |
| 5569 ], | 5569 ], |
| 5570 'dependencies': [ | 5570 'dependencies': [ |
| 5571 'chrome_dll_version', | 5571 'chrome_dll_version', |
| 5572 'installer/installer.gyp:installer_util_strings', | 5572 'installer/installer.gyp:installer_util_strings', |
| 5573 '../views/views.gyp:views', | 5573 '../views/views.gyp:views', |
| 5574 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', | 5574 '../third_party/tcmalloc/tcmalloc.gyp:tcmalloc', |
| 5575 ], | 5575 ], |
| 5576 'configurations': { |
| 5577 'Debug': { |
| 5578 'msvs_settings': { |
| 5579 'VCLinkerTool': { |
| 5580 'LinkIncremental': '<(msvs_large_module_debug_link_mode)
', |
| 5581 }, |
| 5582 }, |
| 5583 }, |
| 5584 }, |
| 5576 }], | 5585 }], |
| 5577 ], | 5586 ], |
| 5578 }, | 5587 }, |
| 5579 { | 5588 { |
| 5580 # Shared library used by the in-proc browser tests. | 5589 # Shared library used by the in-proc browser tests. |
| 5581 'target_name': 'browser_tests_dll', | 5590 'target_name': 'browser_tests_dll', |
| 5582 'type': 'shared_library', | 5591 'type': 'shared_library', |
| 5583 'product_name': 'browser_tests', | 5592 'product_name': 'browser_tests', |
| 5584 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', | 5593 'msvs_guid': 'D7589D0D-304E-4589-85A4-153B7D84B07F', |
| 5585 'dependencies': [ | 5594 'dependencies': [ |
| (...skipping 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5907 # Use outputs of this action as inputs for the main target build. | 5916 # Use outputs of this action as inputs for the main target build. |
| 5908 # Seems as a misnomer but makes this happy on Linux (scons). | 5917 # Seems as a misnomer but makes this happy on Linux (scons). |
| 5909 'process_outputs_as_sources': 1, | 5918 'process_outputs_as_sources': 1, |
| 5910 }, | 5919 }, |
| 5911 ], # 'actions' | 5920 ], # 'actions' |
| 5912 }, | 5921 }, |
| 5913 ] | 5922 ] |
| 5914 }], | 5923 }], |
| 5915 ], # 'conditions' | 5924 ], # 'conditions' |
| 5916 } | 5925 } |
| OLD | NEW |