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 'variables': { |
| 7 'chromium_code': 1, |
| 8 }, |
| 9 |
| 10 'includes': [ |
| 11 'gcm_tests.gypi', |
| 12 ], |
| 13 |
| 14 'targets': [ |
| 15 # The public GCM shared library target. |
| 16 { |
| 17 'target_name': 'gcm', |
| 18 'type': 'shared_library', |
| 19 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 20 'include_dirs': [ |
| 21 '../..', |
| 22 ], |
| 23 'defines': [ |
| 24 'GCM_IMPLEMENTATION', |
| 25 ], |
| 26 'dependencies': [ |
| 27 '../../base/base.gyp:base', |
| 28 '../../net/net.gyp:net', |
| 29 '../../url/url.gyp:url_lib', |
| 30 '../../third_party/protobuf/protobuf.gyp:protobuf_lite' |
| 31 ], |
| 32 'sources': [ |
| 33 'base/socket_stream.h', |
| 34 'base/socket_stream.cc', |
| 35 ], |
| 36 }, |
| 37 ], |
| 38 } |
OLD | NEW |