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