| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'ui_unittests', | 11 'target_name': 'ui_unittests', |
| 12 'type': '<(gtest_target_type)', | 12 'type': '<(gtest_target_type)', |
| 13 'dependencies': [ | 13 'dependencies': [ |
| 14 '../base/base.gyp:base', | 14 '../base/base.gyp:base', |
| 15 '../base/base.gyp:test_support_base', | 15 '../base/base.gyp:test_support_base', |
| 16 '../skia/skia.gyp:skia', | 16 '../skia/skia.gyp:skia', |
| 17 '../testing/gmock.gyp:gmock', | 17 '../testing/gmock.gyp:gmock', |
| 18 '../testing/gtest.gyp:gtest', | 18 '../testing/gtest.gyp:gtest', |
| 19 '../third_party/icu/icu.gyp:icui18n', | 19 '../third_party/icu/icu.gyp:icui18n', |
| 20 '../third_party/icu/icu.gyp:icuuc', | 20 '../third_party/icu/icu.gyp:icuuc', |
| 21 '../url/url.gyp:url_lib', | 21 '../url/url.gyp:url_lib', |
| 22 'base/strings/ui_strings.gyp:ui_strings', | |
| 23 'base/ui_base.gyp:ui_base', | 22 'base/ui_base.gyp:ui_base', |
| 24 'base/ui_base.gyp:ui_base_test_support', | 23 'base/ui_base.gyp:ui_base_test_support', |
| 25 'events/events.gyp:events_base', | 24 'events/events.gyp:events_base', |
| 26 'gfx/gfx.gyp:gfx_test_support', | 25 'gfx/gfx.gyp:gfx_test_support', |
| 27 'resources/ui_resources.gyp:ui_resources', | 26 'resources/ui_resources.gyp:ui_resources', |
| 28 'resources/ui_resources.gyp:ui_test_pak', | 27 'resources/ui_resources.gyp:ui_test_pak', |
| 28 'strings/ui_strings.gyp:ui_strings', |
| 29 ], | 29 ], |
| 30 # iOS uses a small subset of ui. common_sources are the only files that | 30 # iOS uses a small subset of ui. common_sources are the only files that |
| 31 # are built on iOS. | 31 # are built on iOS. |
| 32 'common_sources' : [ | 32 'common_sources' : [ |
| 33 'base/layout_unittest.cc', | 33 'base/layout_unittest.cc', |
| 34 'base/l10n/l10n_util_mac_unittest.mm', | 34 'base/l10n/l10n_util_mac_unittest.mm', |
| 35 'base/l10n/l10n_util_unittest.cc', | 35 'base/l10n/l10n_util_unittest.cc', |
| 36 'base/l10n/l10n_util_win_unittest.cc', | 36 'base/l10n/l10n_util_win_unittest.cc', |
| 37 'base/l10n/time_format_unittest.cc', | 37 'base/l10n/time_format_unittest.cc', |
| 38 'base/models/tree_node_iterator_unittest.cc', | 38 'base/models/tree_node_iterator_unittest.cc', |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 ], | 267 ], |
| 268 'variables': { | 268 'variables': { |
| 269 'test_suite_name': 'ui_unittests', | 269 'test_suite_name': 'ui_unittests', |
| 270 }, | 270 }, |
| 271 'includes': [ '../build/apk_test.gypi' ], | 271 'includes': [ '../build/apk_test.gypi' ], |
| 272 }, | 272 }, |
| 273 ], | 273 ], |
| 274 }], | 274 }], |
| 275 ], | 275 ], |
| 276 } | 276 } |
| OLD | NEW |