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 2158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2169 'browser/ui/app_list/search/tokenized_string_unittest.cc', | 2169 'browser/ui/app_list/search/tokenized_string_unittest.cc', |
2170 ], | 2170 ], |
2171 'dependencies': [ | 2171 'dependencies': [ |
2172 '../ash/ash.gyp:ash_resources', | 2172 '../ash/ash.gyp:ash_resources', |
2173 '../ash/ash.gyp:ash_test_support', | 2173 '../ash/ash.gyp:ash_test_support', |
2174 '../ash/ash_strings.gyp:ash_strings', | 2174 '../ash/ash_strings.gyp:ash_strings', |
2175 ], | 2175 ], |
2176 # We eventually want to compile both in Win Aura builds, see | 2176 # We eventually want to compile both in Win Aura builds, see |
2177 # http://crbug.com/155545. | 2177 # http://crbug.com/155545. |
2178 'conditions': [ | 2178 'conditions': [ |
2179 ['OS=="win"', { | 2179 ['OS !="win"', { |
2180 'sources!': [ | |
2181 'browser/ui/window_sizer/window_sizer_ash_unittest.cc', | |
2182 ], | |
2183 }, { # else: OS!=win | |
2184 'sources!': [ | 2180 'sources!': [ |
2185 'browser/ui/window_sizer/window_sizer_unittest.cc', | 2181 'browser/ui/window_sizer/window_sizer_unittest.cc', |
2186 ], | 2182 ], |
2187 }], | 2183 }], |
2188 ], | 2184 ], |
2189 }], | 2185 }], |
2190 ['use_aura==1', { | 2186 ['use_aura==1', { |
2191 'dependencies': [ | 2187 'dependencies': [ |
2192 '../ui/aura/aura.gyp:aura_test_support', | 2188 '../ui/aura/aura.gyp:aura_test_support', |
2193 ], | 2189 ], |
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2932 'sources': [ | 2928 'sources': [ |
2933 'browser/ui/views/app_list/win/app_list_win_unittest.cc', | 2929 'browser/ui/views/app_list/win/app_list_win_unittest.cc', |
2934 ], | 2930 ], |
2935 }], # 'OS=="win"' | 2931 }], # 'OS=="win"' |
2936 ], | 2932 ], |
2937 }, | 2933 }, |
2938 ], | 2934 ], |
2939 }], | 2935 }], |
2940 ], # 'conditions' | 2936 ], # 'conditions' |
2941 } | 2937 } |
OLD | NEW |