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