| 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 'includes': [ | 6 'includes': [ |
| 7 '../build/common.gypi', | 7 '../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 [ 'OS=="win"', { | 10 [ 'OS=="win"', { |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 'src/win_utils.cc', | 135 'src/win_utils.cc', |
| 136 'src/win_utils.h', | 136 'src/win_utils.h', |
| 137 | 137 |
| 138 # Precompiled headers. | 138 # Precompiled headers. |
| 139 'src/stdafx.cc', | 139 'src/stdafx.cc', |
| 140 'src/stdafx.h', | 140 'src/stdafx.h', |
| 141 ], | 141 ], |
| 142 'include_dirs': [ | 142 'include_dirs': [ |
| 143 '..', | 143 '..', |
| 144 ], | 144 ], |
| 145 'copies': [ |
| 146 { |
| 147 'destination': '<(PRODUCT_DIR)', |
| 148 'files': [ |
| 149 'wow_helper/wow_helper.exe', |
| 150 'wow_helper/wow_helper.pdb', |
| 151 ], |
| 152 }, |
| 153 ], |
| 145 'configurations': { | 154 'configurations': { |
| 146 'Debug': { | 155 'Debug': { |
| 147 'msvs_precompiled_header': 'src/stdafx.h', | 156 'msvs_precompiled_header': 'src/stdafx.h', |
| 148 'msvs_precompiled_source': 'src/stdafx.cc', | 157 'msvs_precompiled_source': 'src/stdafx.cc', |
| 149 }, | 158 }, |
| 150 }, | 159 }, |
| 151 'direct_dependent_settings': { | 160 'direct_dependent_settings': { |
| 152 'include_dirs': [ | 161 'include_dirs': [ |
| 153 'src', | 162 'src', |
| 154 '..', | 163 '..', |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 'Debug': { | 317 'Debug': { |
| 309 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', | 318 'msvs_precompiled_header': 'sandbox_poc/pocdll/stdafx.h', |
| 310 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', | 319 'msvs_precompiled_source': 'sandbox_poc/pocdll/stdafx.cc', |
| 311 }, | 320 }, |
| 312 }, | 321 }, |
| 313 }, | 322 }, |
| 314 ], | 323 ], |
| 315 }], | 324 }], |
| 316 ], | 325 ], |
| 317 } | 326 } |
| OLD | NEW |