| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 'targets': [ | 5 'targets': [ |
| 6 { | 6 { |
| 7 # This target contains mocks and test utilities that don't belong in | 7 # This target contains mocks and test utilities that don't belong in |
| 8 # production libraries but are used by more than one test executable. | 8 # production libraries but are used by more than one test executable. |
| 9 'target_name': 'test_support_common', | 9 'target_name': 'test_support_common', |
| 10 'type': 'static_library', | 10 'type': 'static_library', |
| (...skipping 2133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2144 'FULL_SAFE_BROWSING', | 2144 'FULL_SAFE_BROWSING', |
| 2145 ], | 2145 ], |
| 2146 }], | 2146 }], |
| 2147 # TODO(sgurun): enable tests for safe_browsing==2. | 2147 # TODO(sgurun): enable tests for safe_browsing==2. |
| 2148 ['safe_browsing!=1', { | 2148 ['safe_browsing!=1', { |
| 2149 'sources/': [ | 2149 'sources/': [ |
| 2150 ['exclude', '^browser/safe_browsing/'], | 2150 ['exclude', '^browser/safe_browsing/'], |
| 2151 ['exclude', '^renderer/safe_browsing/'], | 2151 ['exclude', '^renderer/safe_browsing/'], |
| 2152 ], | 2152 ], |
| 2153 }], | 2153 }], |
| 2154 ['enable_autofill_dialog!=1 or OS=="android"', { |
| 2155 'sources!': [ |
| 2156 'browser/ui/autofill/account_chooser_model_unittest.cc', |
| 2157 'browser/ui/autofill/autocheckout_bubble_controller_unittest.cc', |
| 2158 'browser/ui/autofill/autofill_credit_card_bubble_controller_unittest
.cc', |
| 2159 'browser/ui/autofill/autofill_dialog_controller_unittest.cc', |
| 2160 'browser/ui/autofill/mock_autofill_dialog_view_delegate.cc', |
| 2161 'browser/ui/autofill/mock_autofill_dialog_view_delegate.h', |
| 2162 'browser/ui/autofill/test_autofill_credit_card_bubble.cc', |
| 2163 'browser/ui/autofill/test_autofill_credit_card_bubble.h', |
| 2164 ], |
| 2165 }], |
| 2154 ['enable_automation!=1', { | 2166 ['enable_automation!=1', { |
| 2155 'sources/': [ | 2167 'sources/': [ |
| 2156 ['exclude', '^browser/automation/'], | 2168 ['exclude', '^browser/automation/'], |
| 2157 ], | 2169 ], |
| 2158 }], | 2170 }], |
| 2159 ['enable_plugins==0', { | 2171 ['enable_plugins==0', { |
| 2160 'sources/': [ | 2172 'sources/': [ |
| 2161 ['exclude', '^browser/plugins/'], | 2173 ['exclude', '^browser/plugins/'], |
| 2162 ], | 2174 ], |
| 2163 'sources!': [ | 2175 'sources!': [ |
| (...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2717 # more details. | 2729 # more details. |
| 2718 'DebugInformationFormat': '3', | 2730 'DebugInformationFormat': '3', |
| 2719 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', | 2731 'ProgramDataBaseFileName': '<(PRODUCT_DIR)/unit_tests.exe.pdb', |
| 2720 }, | 2732 }, |
| 2721 }, | 2733 }, |
| 2722 }, | 2734 }, |
| 2723 ], | 2735 ], |
| 2724 }], | 2736 }], |
| 2725 ], # 'conditions' | 2737 ], # 'conditions' |
| 2726 } | 2738 } |
| OLD | NEW |