OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 | 6 |
7 if (enable_webrtc || !is_android) { | 7 if (enable_webrtc || !is_android) { |
8 jingle_includes = exec_script("//build/gypi_to_gn.py", | 8 jingle_includes = exec_script("//build/gypi_to_gn.py", |
9 [ rebase_path("jingle.gypi") ], | 9 [ rebase_path("jingle.gypi") ], |
10 "scope", | 10 "scope", |
11 [ "jingle.gypi" ]) | 11 [ "jingle.gypi" ]) |
12 | 12 |
13 # GYP version: jingle/jingle.gyp:jingle_glue | 13 # GYP version: jingle/jingle.gyp:jingle_glue |
14 static_library("jingle_glue") { | 14 static_library("jingle_glue") { |
15 sources = jingle_includes.jingle_glue_sources | 15 sources = jingle_includes.jingle_glue_sources |
16 public_deps = [ | 16 public_deps = [ |
17 "//third_party/libjingle", | 17 "//third_party/libjingle", |
18 ] | 18 ] |
19 deps = [ | 19 deps = [ |
20 "//base", | 20 "//base", |
21 "//base/third_party/dynamic_annotations", | 21 "//base/third_party/dynamic_annotations", |
22 "//net", | 22 "//net", |
23 ] | 23 ] |
| 24 |
| 25 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
24 } | 26 } |
25 | 27 |
26 # A library for sending and receiving peer-issued notifications. | 28 # A library for sending and receiving peer-issued notifications. |
27 # GYP version: jingle/jingle.gyp:notifier | 29 # GYP version: jingle/jingle.gyp:notifier |
28 static_library("notifier") { | 30 static_library("notifier") { |
29 sources = [ | 31 sources = [ |
30 "notifier/base/const_communicator.h", | 32 "notifier/base/const_communicator.h", |
31 "notifier/base/gaia_constants.cc", | 33 "notifier/base/gaia_constants.cc", |
32 "notifier/base/gaia_constants.h", | 34 "notifier/base/gaia_constants.h", |
33 "notifier/base/gaia_token_pre_xmpp_auth.cc", | 35 "notifier/base/gaia_token_pre_xmpp_auth.cc", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
186 ] | 188 ] |
187 deps = [ | 189 deps = [ |
188 "//base", | 190 "//base", |
189 "//net", | 191 "//net", |
190 ] | 192 ] |
191 } | 193 } |
192 | 194 |
193 source_set("notifier_test_util") { | 195 source_set("notifier_test_util") { |
194 } | 196 } |
195 } | 197 } |
OLD | NEW |