| 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", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "//third_party/expat", | 83 "//third_party/expat", |
| 84 "//url", | 84 "//url", |
| 85 ":jingle_glue", | 85 ":jingle_glue", |
| 86 "//third_party/libjingle", | 86 "//third_party/libjingle", |
| 87 ] | 87 ] |
| 88 forward_dependent_configs_from = [ "//third_party/libjingle" ] | 88 forward_dependent_configs_from = [ "//third_party/libjingle" ] |
| 89 } | 89 } |
| 90 | 90 |
| 91 # GYP version: jingle/jingle.gyp:notifier_test_util | 91 # GYP version: jingle/jingle.gyp:notifier_test_util |
| 92 static_library("notifier_test_util") { | 92 static_library("notifier_test_util") { |
| 93 testonly = true |
| 93 sources = [ | 94 sources = [ |
| 94 "notifier/base/fake_base_task.cc", | 95 "notifier/base/fake_base_task.cc", |
| 95 "notifier/base/fake_base_task.h", | 96 "notifier/base/fake_base_task.h", |
| 96 "notifier/listener/fake_push_client.cc", | 97 "notifier/listener/fake_push_client.cc", |
| 97 "notifier/listener/fake_push_client.h", | 98 "notifier/listener/fake_push_client.h", |
| 98 "notifier/listener/fake_push_client_observer.cc", | 99 "notifier/listener/fake_push_client_observer.cc", |
| 99 "notifier/listener/fake_push_client_observer.h", | 100 "notifier/listener/fake_push_client_observer.h", |
| 100 ] | 101 ] |
| 101 deps = [ | 102 deps = [ |
| 102 ":notifier", | 103 ":notifier", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "notifier/base/notifier_options.h", | 181 "notifier/base/notifier_options.h", |
| 181 ] | 182 ] |
| 182 deps = [ | 183 deps = [ |
| 183 "//base", | 184 "//base", |
| 184 "//net" | 185 "//net" |
| 185 ] | 186 ] |
| 186 } | 187 } |
| 187 | 188 |
| 188 source_set("notifier_test_util") { } | 189 source_set("notifier_test_util") { } |
| 189 } | 190 } |
| OLD | NEW |