Chromium Code Reviews| 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 | |
|
akalin
2013/10/15 00:56:07
mind inlining this into gcm.gyp, too?
Nicolas Zea
2013/10/15 20:07:38
Done.
| |
| 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_unittest.cc', | |
| 27 ] | |
| 28 }, | |
| 29 ], | |
| 30 } | |
| OLD | NEW |