| OLD | NEW |
| (Empty) |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'targets': [ | |
| 7 { | |
| 8 # GN version: //cc/blink/cc_blink_unittests | |
| 9 'target_name': 'cc_blink_unittests', | |
| 10 'type': '<(gtest_target_type)', | |
| 11 'dependencies': [ | |
| 12 '../../base/base.gyp:test_support_base', | |
| 13 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | |
| 14 '../../skia/skia.gyp:skia', | |
| 15 '../../testing/gmock.gyp:gmock', | |
| 16 '../../testing/gtest.gyp:gtest', | |
| 17 '../../third_party/WebKit/public/blink.gyp:blink', | |
| 18 '../../ui/gfx/gfx.gyp:gfx_geometry', | |
| 19 '../../ui/gfx/gfx.gyp:gfx_test_support', | |
| 20 '../cc.gyp:cc', | |
| 21 '../cc_tests.gyp:cc_test_support', | |
| 22 'cc_blink.gyp:cc_blink', | |
| 23 ], | |
| 24 'sources': [ | |
| 25 'test/cc_blink_test_suite.cc', | |
| 26 'test/run_all_unittests.cc', | |
| 27 'web_layer_impl_fixed_bounds_unittest.cc', | |
| 28 ], | |
| 29 } | |
| 30 ], | |
| 31 'conditions': [ | |
| 32 ['OS == "android"', | |
| 33 { | |
| 34 'targets': [ | |
| 35 { | |
| 36 'target_name': 'cc_blink_unittests_apk', | |
| 37 'type': 'none', | |
| 38 'dependencies': [ | |
| 39 'cc_blink_unittests', | |
| 40 ], | |
| 41 'variables': { | |
| 42 'test_suite_name': 'cc_blink_unittests', | |
| 43 }, | |
| 44 'includes': [ '../../build/apk_test.gypi' ], | |
| 45 }, | |
| 46 ], | |
| 47 } | |
| 48 ] | |
| 49 ], | |
| 50 | |
| 51 } | |
| OLD | NEW |