OLD | NEW |
(Empty) | |
| 1 # Copyright 2013 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 # The main GCM unit tests. |
| 9 'target_name': 'gcm_unit_tests', |
| 10 'type': '<(gtest_target_type)', |
| 11 # Typed-parametrized tests generate exit-time destructors. |
| 12 'variables': { 'enable_wexit_time_destructors': 0, }, |
| 13 'defines': [ |
| 14 'GCM_TEST', |
| 15 ], |
| 16 'dependencies': [ |
| 17 '../../base/base.gyp:run_all_unittests', |
| 18 '../../base/base.gyp:base', |
| 19 '../../net/net.gyp:net', |
| 20 '../../net/net.gyp:net_test_support', |
| 21 '../../testing/gtest.gyp:gtest', |
| 22 '../../third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 23 'gcm' |
| 24 ], |
| 25 'sources': [ |
| 26 'base/socket_stream_test_data_provider.cc', |
| 27 'base/socket_stream_test_data_provider.h', |
| 28 'base/socket_stream_unittest.cc', |
| 29 ] |
| 30 }, |
| 31 ], |
| 32 } |
OLD | NEW |