| 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 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 if (is_android) { | 143 if (is_android) { |
| 144 sources -= [ | 144 sources -= [ |
| 145 # TODO(jrg): | 145 # TODO(jrg): |
| 146 # EXPECT_DEBUG_DEATH() uses features not enabled. | 146 # EXPECT_DEBUG_DEATH() uses features not enabled. |
| 147 # Should we -std=c++0x or -std=gnu++0x? | 147 # Should we -std=c++0x or -std=gnu++0x? |
| 148 "glue/chrome_async_socket_unittest.cc", | 148 "glue/chrome_async_socket_unittest.cc", |
| 149 "notifier/base/xmpp_connection_unittest.cc", | 149 "notifier/base/xmpp_connection_unittest.cc", |
| 150 ] | 150 ] |
| 151 } | 151 } |
| 152 | 152 |
| 153 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 154 |
| 153 public_deps = [ | 155 public_deps = [ |
| 154 "//third_party/libjingle", | 156 "//third_party/libjingle", |
| 155 ] | 157 ] |
| 156 deps = [ | 158 deps = [ |
| 157 ":jingle_glue", | 159 ":jingle_glue", |
| 158 ":notifier", | 160 ":notifier", |
| 159 ":notifier_test_util", | 161 ":notifier_test_util", |
| 160 "//base", | 162 "//base", |
| 161 "//base/test:run_all_unittests", | 163 "//base/test:run_all_unittests", |
| 162 "//base/test:test_support", | 164 "//base/test:test_support", |
| (...skipping 24 matching lines...) Expand all Loading... |
| 187 ] | 189 ] |
| 188 deps = [ | 190 deps = [ |
| 189 "//base", | 191 "//base", |
| 190 "//net", | 192 "//net", |
| 191 ] | 193 ] |
| 192 } | 194 } |
| 193 | 195 |
| 194 source_set("notifier_test_util") { | 196 source_set("notifier_test_util") { |
| 195 } | 197 } |
| 196 } | 198 } |
| OLD | NEW |