Chromium Code Reviews| 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 # This is a dummy target so as to not to break the build while moving tests from | |
| 6 # webkit_compositor_bindings_unittests to content_unittests. | |
|
tfarina
2014/06/09 18:40:19
Thanks for leaving a dummy target.
| |
| 5 { | 7 { |
| 6 'variables': { | 8 'variables': { |
| 7 'chromium_code': 1, | 9 'chromium_code': 1, |
| 8 'webkit_compositor_bindings_tests_sources': [ | |
| 9 'web_animation_unittest.cc', | |
| 10 'web_float_animation_curve_unittest.cc', | |
| 11 'web_layer_impl_fixed_bounds_unittest.cc', | |
| 12 ], | |
| 13 }, | 10 }, |
| 14 'targets': [ | 11 'targets': [ |
| 15 { | 12 { |
| 16 'target_name': 'webkit_compositor_bindings_unittests', | 13 'target_name': 'webkit_compositor_bindings_unittests', |
| 17 'type' : '<(gtest_target_type)', | 14 'type' : '<(gtest_target_type)', |
| 18 'dependencies': [ | 15 'dependencies': [ |
| 19 '<(DEPTH)/base/base.gyp:test_support_base', | 16 '<(DEPTH)/base/base.gyp:test_support_base', |
| 20 '<(DEPTH)/cc/cc.gyp:cc', | |
| 21 '<(DEPTH)/cc/cc_tests.gyp:cc_test_support', | |
| 22 '<(DEPTH)/skia/skia.gyp:skia', | |
| 23 '<(DEPTH)/testing/gmock.gyp:gmock', | |
| 24 '<(DEPTH)/testing/gtest.gyp:gtest', | |
| 25 'compositor_bindings.gyp:webkit_compositor_bindings', | |
| 26 ], | 17 ], |
| 27 'sources': [ | 18 'sources': [ |
| 28 '<@(webkit_compositor_bindings_tests_sources)', | |
| 29 'test/run_all_unittests.cc', | 19 'test/run_all_unittests.cc', |
| 30 ], | 20 ], |
| 31 'include_dirs': [ | |
| 32 '<(DEPTH)' | |
| 33 ], | |
| 34 'conditions': [ | 21 'conditions': [ |
| 35 ['OS == "android"', { | 22 ['OS == "android"', { |
| 36 'dependencies': [ | 23 'dependencies': [ |
| 37 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', | 24 '<(DEPTH)/testing/android/native_test.gyp:native_test_native_code', |
| 38 ], | 25 ], |
| 39 }], | 26 }], |
| 40 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { | 27 [ 'os_posix == 1 and OS != "mac" and OS != "android" and OS != "ios"', { |
| 41 'conditions': [ | 28 'conditions': [ |
| 42 [ 'use_allocator!="none"', { | 29 [ 'use_allocator!="none"', { |
| 43 'dependencies': [ | 30 'dependencies': [ |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 59 'webkit_compositor_bindings_unittests', | 46 'webkit_compositor_bindings_unittests', |
| 60 ], | 47 ], |
| 61 'variables': { | 48 'variables': { |
| 62 'test_suite_name': 'webkit_compositor_bindings_unittests', | 49 'test_suite_name': 'webkit_compositor_bindings_unittests', |
| 63 }, | 50 }, |
| 64 'includes': [ '../../../build/apk_test.gypi' ], | 51 'includes': [ '../../../build/apk_test.gypi' ], |
| 65 }, | 52 }, |
| 66 ], | 53 ], |
| 67 }], | 54 }], |
| 68 ], | 55 ], |
| 69 } | 56 } |
| OLD | NEW |