Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: google_apis/gcm/gcm_tests.gypi

Issue 23684017: [GCM] Initial work to set up directory structure and introduce socket integration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698