| 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 ['use_x11==0', { | 6 ['use_x11==0', { |
| 7 'variables': { | 7 'variables': { |
| 8 'command': [ | 8 'command': [ |
| 9 '../testing/test_env.py', | 9 '../testing/test_env.py', |
| 10 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', | 10 '<(PRODUCT_DIR)/unit_tests<(EXECUTABLE_SUFFIX)', |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 '<(PRODUCT_DIR)/verifier_test_dll_2.dll', | 130 '<(PRODUCT_DIR)/verifier_test_dll_2.dll', |
| 131 'test/data/safe_browsing/signed_binary.dll', | 131 'test/data/safe_browsing/signed_binary.dll', |
| 132 ], | 132 ], |
| 133 # Can't be enabled on Windows due to http://crbug.com/342913 | 133 # Can't be enabled on Windows due to http://crbug.com/342913 |
| 134 'read_only': 0, | 134 'read_only': 0, |
| 135 }, | 135 }, |
| 136 }], | 136 }], |
| 137 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { | 137 ['OS=="win" and (fastbuild==0 or fastbuild==1)', { |
| 138 'variables': { | 138 'variables': { |
| 139 'files': [ | 139 'files': [ |
| 140 'app/test_data/', |
| 140 '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 141 '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 141 ], | 142 ], |
| 142 }, | 143 }, |
| 143 }], | 144 }], |
| 144 ['OS=="win" and kasko==1', { | 145 ['OS=="win" and kasko==1', { |
| 145 'variables': { | 146 'variables': { |
| 146 'files': [ | 147 'files': [ |
| 147 '<(PRODUCT_DIR)/kasko.dll', | 148 '<(PRODUCT_DIR)/kasko.dll', |
| 148 ], | 149 ], |
| 149 }, | 150 }, |
| 150 }], | 151 }], |
| 151 ['chromeos==1', { | 152 ['chromeos==1', { |
| 152 'variables': { | 153 'variables': { |
| 153 'files': [ | 154 'files': [ |
| 154 '../chromeos/test/data/network/', | 155 '../chromeos/test/data/network/', |
| 155 '<(PRODUCT_DIR)/libexif.so', | 156 '<(PRODUCT_DIR)/libexif.so', |
| 156 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/', | 157 '<(PRODUCT_DIR)/test_data/chrome/browser/resources/chromeos/', |
| 157 ], | 158 ], |
| 158 }, | 159 }, |
| 159 }], | 160 }], |
| 160 ], | 161 ], |
| 161 'includes': [ | 162 'includes': [ |
| 162 '../base/base.isolate', | 163 '../base/base.isolate', |
| 163 '../gin/v8.isolate', | 164 '../gin/v8.isolate', |
| 164 '../ui/gl/gl.isolate', | 165 '../ui/gl/gl.isolate', |
| 165 ], | 166 ], |
| 166 } | 167 } |
| OLD | NEW |