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

Side by Side Diff: jingle/BUILD.gn

Issue 2022833002: Migrate libjingle to WebRTC build targets. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 4 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
« no previous file with comments | « content/test/BUILD.gn ('k') | jingle/jingle.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 if (enable_webrtc || !is_android) { 8 if (enable_webrtc || !is_android) {
9 jingle_includes = exec_script("//build/gypi_to_gn.py", 9 jingle_includes = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("jingle.gypi") ], 10 [ rebase_path("jingle.gypi") ],
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 "notifier/listener/send_ping_task.h", 83 "notifier/listener/send_ping_task.h",
84 "notifier/listener/xml_element_util.cc", 84 "notifier/listener/xml_element_util.cc",
85 "notifier/listener/xml_element_util.h", 85 "notifier/listener/xml_element_util.h",
86 "notifier/listener/xmpp_push_client.cc", 86 "notifier/listener/xmpp_push_client.cc",
87 "notifier/listener/xmpp_push_client.h", 87 "notifier/listener/xmpp_push_client.h",
88 ] 88 ]
89 defines = [ "_CRT_SECURE_NO_WARNINGS" ] 89 defines = [ "_CRT_SECURE_NO_WARNINGS" ]
90 90
91 public_deps = [ 91 public_deps = [
92 "//third_party/libjingle", 92 "//third_party/libjingle",
93 "//third_party/webrtc/libjingle/xmllite",
94 "//third_party/webrtc/libjingle/xmpp",
93 ] 95 ]
94 deps = [ 96 deps = [
95 ":jingle_glue", 97 ":jingle_glue",
96 "//base", 98 "//base",
97 "//net", 99 "//net",
98 "//third_party/expat", 100 "//third_party/expat",
99 "//url", 101 "//url",
100 ] 102 ]
101 } 103 }
102 104
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 # Should we -std=c++0x or -std=gnu++0x? 158 # Should we -std=c++0x or -std=gnu++0x?
157 "glue/chrome_async_socket_unittest.cc", 159 "glue/chrome_async_socket_unittest.cc",
158 "notifier/base/xmpp_connection_unittest.cc", 160 "notifier/base/xmpp_connection_unittest.cc",
159 ] 161 ]
160 } 162 }
161 163
162 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 164 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
163 165
164 public_deps = [ 166 public_deps = [
165 "//third_party/libjingle", 167 "//third_party/libjingle",
168 "//third_party/webrtc/libjingle/xmllite",
169 "//third_party/webrtc/libjingle/xmpp",
166 ] 170 ]
167 deps = [ 171 deps = [
168 ":jingle_glue", 172 ":jingle_glue",
169 ":notifier", 173 ":notifier",
170 ":notifier_test_util", 174 ":notifier_test_util",
171 "//base", 175 "//base",
172 "//base/test:run_all_unittests", 176 "//base/test:run_all_unittests",
173 "//base/test:test_support", 177 "//base/test:test_support",
174 "//net", 178 "//net",
175 "//net:test_support", 179 "//net:test_support",
(...skipping 22 matching lines...) Expand all
198 ] 202 ]
199 deps = [ 203 deps = [
200 "//base", 204 "//base",
201 "//net", 205 "//net",
202 ] 206 ]
203 } 207 }
204 208
205 source_set("notifier_test_util") { 209 source_set("notifier_test_util") {
206 } 210 }
207 } 211 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | jingle/jingle.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698