| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 # GN version: //cc/blink/cc_blink_unittests | 8 # GN version: //cc/blink/cc_blink_unittests |
| 9 'target_name': 'cc_blink_unittests', | 9 'target_name': 'cc_blink_unittests', |
| 10 'type': '<(gtest_target_type)', | 10 'type': '<(gtest_target_type)', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 '../cc_tests.gyp:cc_test_support', | 21 '../cc_tests.gyp:cc_test_support', |
| 22 'cc_blink.gyp:cc_blink', | 22 'cc_blink.gyp:cc_blink', |
| 23 ], | 23 ], |
| 24 'sources': [ | 24 'sources': [ |
| 25 'test/cc_blink_test_suite.cc', | 25 'test/cc_blink_test_suite.cc', |
| 26 'test/run_all_unittests.cc', | 26 'test/run_all_unittests.cc', |
| 27 'web_animation_unittest.cc', | 27 'web_animation_unittest.cc', |
| 28 'web_compositor_animation_player_unittest.cc', | 28 'web_compositor_animation_player_unittest.cc', |
| 29 'web_float_animation_curve_unittest.cc', | 29 'web_float_animation_curve_unittest.cc', |
| 30 'web_layer_impl_fixed_bounds_unittest.cc', | 30 'web_layer_impl_fixed_bounds_unittest.cc', |
| 31 'web_compositor_mutable_state_impl_unittest.cc', | |
| 32 ], | 31 ], |
| 33 } | 32 } |
| 34 ], | 33 ], |
| 35 'conditions': [ | 34 'conditions': [ |
| 36 ['OS == "android"', | 35 ['OS == "android"', |
| 37 { | 36 { |
| 38 'targets': [ | 37 'targets': [ |
| 39 { | 38 { |
| 40 'target_name': 'cc_blink_unittests_apk', | 39 'target_name': 'cc_blink_unittests_apk', |
| 41 'type': 'none', | 40 'type': 'none', |
| 42 'dependencies': [ | 41 'dependencies': [ |
| 43 'cc_blink_unittests', | 42 'cc_blink_unittests', |
| 44 ], | 43 ], |
| 45 'variables': { | 44 'variables': { |
| 46 'test_suite_name': 'cc_blink_unittests', | 45 'test_suite_name': 'cc_blink_unittests', |
| 47 }, | 46 }, |
| 48 'includes': [ '../../build/apk_test.gypi' ], | 47 'includes': [ '../../build/apk_test.gypi' ], |
| 49 }, | 48 }, |
| 50 ], | 49 ], |
| 51 } | 50 } |
| 52 ] | 51 ] |
| 53 ], | 52 ], |
| 54 | 53 |
| 55 } | 54 } |
| OLD | NEW |