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 'conditions': [ | 5 'conditions': [ |
6 ['OS=="linux"', { | 6 ['OS=="linux"', { |
7 'variables': { | 7 'variables': { |
8 'command': [ | 8 'command': [ |
9 '../testing/xvfb.py', | 9 '../testing/xvfb.py', |
10 '<(PRODUCT_DIR)', | 10 '<(PRODUCT_DIR)', |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
157 '../native_client/build/build_nexe.py', | 157 '../native_client/build/build_nexe.py', |
158 '<(PRODUCT_DIR)/chrome_elf.dll', | 158 '<(PRODUCT_DIR)/chrome_elf.dll', |
159 '<(PRODUCT_DIR)/clearkeycdm.dll', | 159 '<(PRODUCT_DIR)/clearkeycdm.dll', |
160 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', | 160 '<(PRODUCT_DIR)/clearkeycdmadapter.dll', |
161 '<(PRODUCT_DIR)/plugins/', | 161 '<(PRODUCT_DIR)/plugins/', |
162 '<(PRODUCT_DIR)/ppapi_tests.dll', | 162 '<(PRODUCT_DIR)/ppapi_tests.dll', |
163 'tools/build/repack_locales.py', | 163 'tools/build/repack_locales.py', |
164 ], | 164 ], |
165 }, | 165 }, |
166 }], | 166 }], |
| 167 ['OS=="win" and target_arch=="ia32"', { |
| 168 'variables': { |
| 169 'files': [ |
| 170 '<(PRODUCT_DIR)/wow_helper.exe', |
| 171 ], |
| 172 }, |
| 173 }], |
167 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 174 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
168 'variables': { | 175 'variables': { |
169 'files': [ | 176 'files': [ |
170 '<(PRODUCT_DIR)/browser_tests.exe.pdb', | 177 '<(PRODUCT_DIR)/browser_tests.exe.pdb', |
171 ], | 178 ], |
172 }, | 179 }, |
173 }], | 180 }], |
174 ['OS=="win" and libpeer_target_type=="loadable_module"', { | 181 ['OS=="win" and libpeer_target_type=="loadable_module"', { |
175 'variables': { | 182 'variables': { |
176 'files': [ | 183 'files': [ |
(...skipping 19 matching lines...) Expand all Loading... |
196 'browser/chromeos/login/test/https_forwarder.py', | 203 'browser/chromeos/login/test/https_forwarder.py', |
197 ], | 204 ], |
198 }, | 205 }, |
199 }], | 206 }], |
200 ], | 207 ], |
201 'includes': [ | 208 'includes': [ |
202 '../base/base.isolate', | 209 '../base/base.isolate', |
203 'chrome.isolate', | 210 'chrome.isolate', |
204 ], | 211 ], |
205 } | 212 } |
OLD | NEW |