| 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'ui_test_support', | 8 'target_name': 'ui_test_support', |
| 9 'dependencies': [ | 9 'dependencies': [ |
| 10 '../base/base.gyp:base', | 10 '../base/base.gyp:base', |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 'test/test_suite.h', | 104 'test/test_suite.h', |
| 105 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 105 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', |
| 106 ], | 106 ], |
| 107 'include_dirs': [ | 107 'include_dirs': [ |
| 108 '../', | 108 '../', |
| 109 ], | 109 ], |
| 110 'conditions': [ | 110 'conditions': [ |
| 111 ['OS == "win"', { | 111 ['OS == "win"', { |
| 112 'sources': [ | 112 'sources': [ |
| 113 'base/dragdrop/os_exchange_data_win_unittest.cc', | 113 'base/dragdrop/os_exchange_data_win_unittest.cc', |
| 114 'base/native_theme/native_theme_win_unittest.cc', | |
| 115 'base/win/hwnd_subclass_unittest.cc', | 114 'base/win/hwnd_subclass_unittest.cc', |
| 116 'gfx/icon_util_unittest.cc', | 115 'gfx/icon_util_unittest.cc', |
| 116 'gfx/native_theme_win_unittest.cc', |
| 117 'gfx/platform_font_win_unittest.cc', | 117 'gfx/platform_font_win_unittest.cc', |
| 118 ], | 118 ], |
| 119 'include_dirs': [ | 119 'include_dirs': [ |
| 120 '../..', | 120 '../..', |
| 121 '../third_party/wtl/include', | 121 '../third_party/wtl/include', |
| 122 ], | 122 ], |
| 123 'msvs_settings': { | 123 'msvs_settings': { |
| 124 'VCLinkerTool': { | 124 'VCLinkerTool': { |
| 125 'DelayLoadDLLs': [ | 125 'DelayLoadDLLs': [ |
| 126 'd2d1.dll', | 126 'd2d1.dll', |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 'gfx/render_text_unittest.cc', | 192 'gfx/render_text_unittest.cc', |
| 193 ], | 193 ], |
| 194 }], | 194 }], |
| 195 ['OS!="win" or use_aura==0', { | 195 ['OS!="win" or use_aura==0', { |
| 196 'sources!': [ | 196 'sources!': [ |
| 197 'base/view_prop_unittest.cc', | 197 'base/view_prop_unittest.cc', |
| 198 ], | 198 ], |
| 199 }], | 199 }], |
| 200 ['use_aura==1', { | 200 ['use_aura==1', { |
| 201 'sources!': [ | 201 'sources!': [ |
| 202 'gfx/screen_unittest.cc', |
| 203 'gfx/native_theme_win_unittest.cc', |
| 202 'base/dragdrop/os_exchange_data_win_unittest.cc', | 204 'base/dragdrop/os_exchange_data_win_unittest.cc', |
| 203 'base/native_theme/native_theme_win_unittest.cc', | |
| 204 'gfx/screen_unittest.cc', | |
| 205 ], | 205 ], |
| 206 }], | 206 }], |
| 207 ['use_aura==1 or toolkit_views==1', { | 207 ['use_aura==1 or toolkit_views==1', { |
| 208 'sources': [ | 208 'sources': [ |
| 209 'base/gestures/velocity_calculator_unittest.cc', | 209 'base/gestures/velocity_calculator_unittest.cc', |
| 210 ], | 210 ], |
| 211 }], | 211 }], |
| 212 ], | 212 ], |
| 213 }, | 213 }, |
| 214 ], | 214 ], |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 '-DPRODUCT_DIR=<(PRODUCT_DIR)', | 251 '-DPRODUCT_DIR=<(PRODUCT_DIR)', |
| 252 '--ant-compile' | 252 '--ant-compile' |
| 253 ], | 253 ], |
| 254 }, | 254 }, |
| 255 ] | 255 ] |
| 256 }, | 256 }, |
| 257 ], | 257 ], |
| 258 }], | 258 }], |
| 259 ], | 259 ], |
| 260 } | 260 } |
| OLD | NEW |