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': 1, | 7 'chromium_code': 1, |
8 'cc_unit_tests_source_files': [ | 8 'cc_unit_tests_source_files': [ |
9 'animation/animation_unittest.cc', | 9 'animation/animation_unittest.cc', |
10 'animation/keyframed_animation_curve_unittest.cc', | 10 'animation/keyframed_animation_curve_unittest.cc', |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
218 '../base/base.gyp:test_support_base', | 218 '../base/base.gyp:test_support_base', |
219 '../media/media.gyp:media', | 219 '../media/media.gyp:media', |
220 '../skia/skia.gyp:skia', | 220 '../skia/skia.gyp:skia', |
221 '../testing/gmock.gyp:gmock', | 221 '../testing/gmock.gyp:gmock', |
222 '../testing/gtest.gyp:gtest', | 222 '../testing/gtest.gyp:gtest', |
223 '../ui/ui.gyp:ui', | 223 '../ui/ui.gyp:ui', |
224 'cc.gyp:cc', | 224 'cc.gyp:cc', |
225 'cc_test_support', | 225 'cc_test_support', |
226 ], | 226 ], |
227 'sources': [ | 227 'sources': [ |
| 228 'base/worker_pool_perftest.cc', |
| 229 'test/cc_test_suite.cc', |
| 230 'test/run_all_unittests.cc', |
228 'trees/layer_tree_host_perftest.cc', | 231 'trees/layer_tree_host_perftest.cc', |
229 'test/run_all_unittests.cc', | |
230 'test/cc_test_suite.cc', | |
231 ], | 232 ], |
232 'include_dirs': [ | 233 'include_dirs': [ |
233 'test', | 234 'test', |
234 '.', | 235 '.', |
235 '../third_party/WebKit/Source/Platform/chromium', | 236 '../third_party/WebKit/Source/Platform/chromium', |
236 ], | 237 ], |
237 'conditions': [ | 238 'conditions': [ |
238 ['OS == "android" and gtest_target_type == "shared_library"', { | 239 ['OS == "android" and gtest_target_type == "shared_library"', { |
239 'dependencies': [ | 240 'dependencies': [ |
240 '../testing/android/native_test.gyp:native_test_native_code', | 241 '../testing/android/native_test.gyp:native_test_native_code', |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
318 'variables': { | 319 'variables': { |
319 'test_suite_name': 'cc_perftests', | 320 'test_suite_name': 'cc_perftests', |
320 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte
sts<(SHARED_LIB_SUFFIX)', | 321 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)cc_perfte
sts<(SHARED_LIB_SUFFIX)', |
321 }, | 322 }, |
322 'includes': [ '../build/apk_test.gypi' ], | 323 'includes': [ '../build/apk_test.gypi' ], |
323 }, | 324 }, |
324 ], | 325 ], |
325 }] | 326 }] |
326 ], | 327 ], |
327 } | 328 } |
OLD | NEW |