| 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       'type': 'static_library', |    9       'type': 'static_library', | 
|   10       'dependencies': [ |   10       'dependencies': [ | 
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  150           ], |  150           ], | 
|  151           # The ResourceBundle unittest expects a locale.pak file to exist in |  151           # The ResourceBundle unittest expects a locale.pak file to exist in | 
|  152           # the bundle for English-US. Copy it in from where it was generated |  152           # the bundle for English-US. Copy it in from where it was generated | 
|  153           # by ui_strings.gyp:ui_unittest_strings. |  153           # by ui_strings.gyp:ui_unittest_strings. | 
|  154           'mac_bundle_resources': [ |  154           'mac_bundle_resources': [ | 
|  155             '<(PRODUCT_DIR)/ui_unittests_strings/en.lproj/locale.pak', |  155             '<(PRODUCT_DIR)/ui_unittests_strings/en.lproj/locale.pak', | 
|  156           ], |  156           ], | 
|  157         }], |  157         }], | 
|  158         ['OS == "win"', { |  158         ['OS == "win"', { | 
|  159           'sources': [ |  159           'sources': [ | 
 |  160             'test/ui_unittests.rc', | 
|  160             'base/dragdrop/os_exchange_data_win_unittest.cc', |  161             'base/dragdrop/os_exchange_data_win_unittest.cc', | 
|  161             'base/win/hwnd_subclass_unittest.cc', |  162             'base/win/hwnd_subclass_unittest.cc', | 
|  162             'gfx/font_fallback_win_unittest.cc', |  163             'gfx/font_fallback_win_unittest.cc', | 
|  163             'gfx/icon_util_unittest.cc', |  164             'gfx/icon_util_unittest.cc', | 
|  164             'gfx/platform_font_win_unittest.cc', |  165             'gfx/platform_font_win_unittest.cc', | 
|  165           ], |  166           ], | 
|  166           'include_dirs': [ |  167           'include_dirs': [ | 
|  167             '../..', |  168             '../..', | 
|  168             '../third_party/wtl/include', |  169             '../third_party/wtl/include', | 
|  169           ], |  170           ], | 
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  293           'variables': { |  294           'variables': { | 
|  294             'test_suite_name': 'ui_unittests', |  295             'test_suite_name': 'ui_unittests', | 
|  295             'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
     sts<(SHARED_LIB_SUFFIX)', |  296             'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
     sts<(SHARED_LIB_SUFFIX)', | 
|  296           }, |  297           }, | 
|  297           'includes': [ '../build/apk_test.gypi' ], |  298           'includes': [ '../build/apk_test.gypi' ], | 
|  298         }, |  299         }, | 
|  299       ], |  300       ], | 
|  300     }], |  301     }], | 
|  301   ], |  302   ], | 
|  302 } |  303 } | 
| OLD | NEW |