| 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 'variables': { | 6 'variables': { |
| 7 'chromium_code': 0, | 7 'chromium_code': 0, |
| 8 'cc_tests_source_files': [ | 8 'cc_tests_source_files': [ |
| 9 'hash_pair_unittest.cc', | 9 'hash_pair_unittest.cc', |
| 10 'active_animation_unittest.cc', | 10 'active_animation_unittest.cc', |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 'test/tiled_layer_test_common.h', | 81 'test/tiled_layer_test_common.h', |
| 82 'test/web_compositor_initializer.h', | 82 'test/web_compositor_initializer.h', |
| 83 ], | 83 ], |
| 84 }, | 84 }, |
| 85 'targets': [ | 85 'targets': [ |
| 86 { | 86 { |
| 87 'target_name': 'cc_unittests', | 87 'target_name': 'cc_unittests', |
| 88 'type': '<(gtest_target_type)', | 88 'type': '<(gtest_target_type)', |
| 89 'dependencies': [ | 89 'dependencies': [ |
| 90 '../base/base.gyp:test_support_base', | 90 '../base/base.gyp:test_support_base', |
| 91 '../media/media.gyp:media', |
| 91 '../skia/skia.gyp:skia', | 92 '../skia/skia.gyp:skia', |
| 92 '../testing/gmock.gyp:gmock', | 93 '../testing/gmock.gyp:gmock', |
| 93 '../testing/gtest.gyp:gtest', | 94 '../testing/gtest.gyp:gtest', |
| 94 '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', | 95 '../third_party/WebKit/Source/WTF/WTF.gyp/WTF.gyp:wtf', |
| 95 'cc.gyp:cc', | 96 'cc.gyp:cc', |
| 96 'cc_test_support', | 97 'cc_test_support', |
| 97 ], | 98 ], |
| 98 'sources': [ | 99 'sources': [ |
| 99 'test/run_all_unittests.cc', | 100 'test/run_all_unittests.cc', |
| 100 '<@(cc_tests_source_files)', | 101 '<@(cc_tests_source_files)', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'variables': { | 156 'variables': { |
| 156 'test_suite_name': 'cc_unittests', | 157 'test_suite_name': 'cc_unittests', |
| 157 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_unitte
sts<(SHARED_LIB_SUFFIX)', | 158 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_unitte
sts<(SHARED_LIB_SUFFIX)', |
| 158 }, | 159 }, |
| 159 'includes': [ '../build/apk_test.gypi' ], | 160 'includes': [ '../build/apk_test.gypi' ], |
| 160 }, | 161 }, |
| 161 ], | 162 ], |
| 162 }], | 163 }], |
| 163 ], | 164 ], |
| 164 } | 165 } |
| OLD | NEW |