| 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 21 matching lines...) Expand all Loading... |
| 32 'dependencies': [ | 32 'dependencies': [ |
| 33 '../base/base.gyp:base', | 33 '../base/base.gyp:base', |
| 34 '../base/base.gyp:test_support_base', | 34 '../base/base.gyp:test_support_base', |
| 35 '../build/temp_gyp/googleurl.gyp:googleurl', | 35 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 36 '../skia/skia.gyp:skia', | 36 '../skia/skia.gyp:skia', |
| 37 '../testing/gmock.gyp:gmock', | 37 '../testing/gmock.gyp:gmock', |
| 38 '../testing/gtest.gyp:gtest', | 38 '../testing/gtest.gyp:gtest', |
| 39 '../third_party/icu/icu.gyp:icui18n', | 39 '../third_party/icu/icu.gyp:icui18n', |
| 40 '../third_party/icu/icu.gyp:icuuc', | 40 '../third_party/icu/icu.gyp:icuuc', |
| 41 '../third_party/libpng/libpng.gyp:libpng', | 41 '../third_party/libpng/libpng.gyp:libpng', |
| 42 'gfx_resources', | 42 'native_theme_resources', |
| 43 'ui', | 43 'ui', |
| 44 'ui_test_support', | 44 'ui_test_support', |
| 45 ], | 45 ], |
| 46 'sources': [ | 46 'sources': [ |
| 47 'base/accelerators/accelerator_manager_unittest.cc', | 47 'base/accelerators/accelerator_manager_unittest.cc', |
| 48 'base/animation/animation_container_unittest.cc', | 48 'base/animation/animation_container_unittest.cc', |
| 49 'base/animation/animation_unittest.cc', | 49 'base/animation/animation_unittest.cc', |
| 50 'base/animation/multi_animation_unittest.cc', | 50 'base/animation/multi_animation_unittest.cc', |
| 51 'base/animation/slide_animation_unittest.cc', | 51 'base/animation/slide_animation_unittest.cc', |
| 52 'base/clipboard/clipboard_unittest.cc', | 52 'base/clipboard/clipboard_unittest.cc', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 'gfx/rect_unittest.cc', | 91 'gfx/rect_unittest.cc', |
| 92 'gfx/screen_unittest.cc', | 92 'gfx/screen_unittest.cc', |
| 93 'gfx/shadow_value_unittest.cc', | 93 'gfx/shadow_value_unittest.cc', |
| 94 'gfx/skbitmap_operations_unittest.cc', | 94 'gfx/skbitmap_operations_unittest.cc', |
| 95 'gfx/skia_util_unittest.cc', | 95 'gfx/skia_util_unittest.cc', |
| 96 'gfx/transform_util_unittest.cc', | 96 'gfx/transform_util_unittest.cc', |
| 97 'gfx/video_decode_acceleration_support_mac_unittest.mm', | 97 'gfx/video_decode_acceleration_support_mac_unittest.mm', |
| 98 'test/run_all_unittests.cc', | 98 'test/run_all_unittests.cc', |
| 99 'test/test_suite.cc', | 99 'test/test_suite.cc', |
| 100 'test/test_suite.h', | 100 'test/test_suite.h', |
| 101 '<(SHARED_INTERMEDIATE_DIR)/ui/gfx/gfx_resources.rc', | 101 '<(SHARED_INTERMEDIATE_DIR)/ui/native_theme/native_theme_resources.rc', |
| 102 ], | 102 ], |
| 103 'include_dirs': [ | 103 'include_dirs': [ |
| 104 '../', | 104 '../', |
| 105 ], | 105 ], |
| 106 'conditions': [ | 106 'conditions': [ |
| 107 ['OS == "win"', { | 107 ['OS == "win"', { |
| 108 'sources': [ | 108 'sources': [ |
| 109 'base/dragdrop/os_exchange_data_win_unittest.cc', | 109 'base/dragdrop/os_exchange_data_win_unittest.cc', |
| 110 'base/native_theme/native_theme_win_unittest.cc', | 110 'base/native_theme/native_theme_win_unittest.cc', |
| 111 'base/win/hwnd_subclass_unittest.cc', | 111 'base/win/hwnd_subclass_unittest.cc', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 '-DPRODUCT_DIR=<(PRODUCT_DIR)', | 247 '-DPRODUCT_DIR=<(PRODUCT_DIR)', |
| 248 '--ant-compile' | 248 '--ant-compile' |
| 249 ], | 249 ], |
| 250 }, | 250 }, |
| 251 ] | 251 ] |
| 252 }, | 252 }, |
| 253 ], | 253 ], |
| 254 }], | 254 }], |
| 255 ], | 255 ], |
| 256 } | 256 } |
| OLD | NEW |