| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'test/test_suite.h', | 51 'test/test_suite.h', |
| 52 'test/run_all_unittests.cc', | 52 'test/run_all_unittests.cc', |
| 53 ], | 53 ], |
| 54 }, | 54 }, |
| 55 { | 55 { |
| 56 'target_name': 'ui_unittests', | 56 'target_name': 'ui_unittests', |
| 57 'type': '<(gtest_target_type)', | 57 'type': '<(gtest_target_type)', |
| 58 'dependencies': [ | 58 'dependencies': [ |
| 59 '../base/base.gyp:base', | 59 '../base/base.gyp:base', |
| 60 '../base/base.gyp:test_support_base', | 60 '../base/base.gyp:test_support_base', |
| 61 '../build/temp_gyp/googleurl.gyp:googleurl', | |
| 62 '../skia/skia.gyp:skia', | 61 '../skia/skia.gyp:skia', |
| 63 '../testing/gmock.gyp:gmock', | 62 '../testing/gmock.gyp:gmock', |
| 64 '../testing/gtest.gyp:gtest', | 63 '../testing/gtest.gyp:gtest', |
| 65 '../third_party/icu/icu.gyp:icui18n', | 64 '../third_party/icu/icu.gyp:icui18n', |
| 66 '../third_party/icu/icu.gyp:icuuc', | 65 '../third_party/icu/icu.gyp:icuuc', |
| 67 '../third_party/libpng/libpng.gyp:libpng', | 66 '../third_party/libpng/libpng.gyp:libpng', |
| 67 '../url/url.gyp:url_lib', |
| 68 'run_ui_unittests', | 68 'run_ui_unittests', |
| 69 'shell_dialogs', | 69 'shell_dialogs', |
| 70 'ui', | 70 'ui', |
| 71 'ui_resources', | 71 'ui_resources', |
| 72 'ui_test_support', | 72 'ui_test_support', |
| 73 ], | 73 ], |
| 74 # iOS uses a small subset of ui. common_sources are the only files that | 74 # iOS uses a small subset of ui. common_sources are the only files that |
| 75 # are built on iOS. | 75 # are built on iOS. |
| 76 'common_sources' : [ | 76 'common_sources' : [ |
| 77 'base/animation/animation_container_unittest.cc', | 77 'base/animation/animation_container_unittest.cc', |
| (...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 'variables': { | 318 'variables': { |
| 319 'test_suite_name': 'ui_unittests', | 319 'test_suite_name': 'ui_unittests', |
| 320 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', | 320 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)ui_unitte
sts<(SHARED_LIB_SUFFIX)', |
| 321 }, | 321 }, |
| 322 'includes': [ '../build/apk_test.gypi' ], | 322 'includes': [ '../build/apk_test.gypi' ], |
| 323 }, | 323 }, |
| 324 ], | 324 ], |
| 325 }], | 325 }], |
| 326 ], | 326 ], |
| 327 } | 327 } |
| OLD | NEW |