| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 'jingle.gypi', | 7 'jingle.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 'notifier/listener/xmpp_push_client.h', | 89 'notifier/listener/xmpp_push_client.h', |
| 90 ], | 90 ], |
| 91 'defines' : [ | 91 'defines' : [ |
| 92 '_CRT_SECURE_NO_WARNINGS', | 92 '_CRT_SECURE_NO_WARNINGS', |
| 93 ], | 93 ], |
| 94 'dependencies': [ | 94 'dependencies': [ |
| 95 '../base/base.gyp:base', | 95 '../base/base.gyp:base', |
| 96 '../net/net.gyp:net', | 96 '../net/net.gyp:net', |
| 97 '../third_party/expat/expat.gyp:expat', | 97 '../third_party/expat/expat.gyp:expat', |
| 98 '../third_party/libjingle/libjingle.gyp:libjingle', | 98 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 99 '../third_party/webrtc/libjingle/xmllite/xmllite.gyp:rtc_xmllite', |
| 100 '../third_party/webrtc/libjingle/xmpp/xmpp.gyp:rtc_xmpp', |
| 99 '../url/url.gyp:url_lib', | 101 '../url/url.gyp:url_lib', |
| 100 'jingle_glue', | 102 'jingle_glue', |
| 101 ], | 103 ], |
| 102 'export_dependent_settings': [ | 104 'export_dependent_settings': [ |
| 103 '../third_party/libjingle/libjingle.gyp:libjingle', | 105 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 106 '../third_party/webrtc/libjingle/xmllite/xmllite.gyp:rtc_xmllite', |
| 107 '../third_party/webrtc/libjingle/xmpp/xmpp.gyp:rtc_xmpp', |
| 104 ], | 108 ], |
| 105 }, | 109 }, |
| 106 # GN version: //jingle:notifier_test_util | 110 # GN version: //jingle:notifier_test_util |
| 107 { | 111 { |
| 108 'target_name': 'notifier_test_util', | 112 'target_name': 'notifier_test_util', |
| 109 'type': 'static_library', | 113 'type': 'static_library', |
| 110 'sources': [ | 114 'sources': [ |
| 111 'notifier/base/fake_base_task.cc', | 115 'notifier/base/fake_base_task.cc', |
| 112 'notifier/base/fake_base_task.h', | 116 'notifier/base/fake_base_task.h', |
| 113 'notifier/listener/fake_push_client.cc', | 117 'notifier/listener/fake_push_client.cc', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'notifier', | 172 'notifier', |
| 169 'notifier_test_util', | 173 'notifier_test_util', |
| 170 '../base/base.gyp:base', | 174 '../base/base.gyp:base', |
| 171 '../base/base.gyp:run_all_unittests', | 175 '../base/base.gyp:run_all_unittests', |
| 172 '../base/base.gyp:test_support_base', | 176 '../base/base.gyp:test_support_base', |
| 173 '../net/net.gyp:net', | 177 '../net/net.gyp:net', |
| 174 '../net/net.gyp:net_test_support', | 178 '../net/net.gyp:net_test_support', |
| 175 '../testing/gmock.gyp:gmock', | 179 '../testing/gmock.gyp:gmock', |
| 176 '../testing/gtest.gyp:gtest', | 180 '../testing/gtest.gyp:gtest', |
| 177 '../third_party/libjingle/libjingle.gyp:libjingle', | 181 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 182 '../third_party/webrtc/libjingle/xmllite/xmllite.gyp:rtc_xmllite', |
| 183 '../third_party/webrtc/libjingle/xmpp/xmpp.gyp:rtc_xmpp', |
| 178 ], | 184 ], |
| 179 }, | 185 }, |
| 180 ], | 186 ], |
| 181 'conditions': [ | 187 'conditions': [ |
| 182 ['test_isolation_mode != "noop"', { | 188 ['test_isolation_mode != "noop"', { |
| 183 'targets': [ | 189 'targets': [ |
| 184 { | 190 { |
| 185 'target_name': 'jingle_unittests_run', | 191 'target_name': 'jingle_unittests_run', |
| 186 'type': 'none', | 192 'type': 'none', |
| 187 'dependencies': [ | 193 'dependencies': [ |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 ], | 232 ], |
| 227 }, | 233 }, |
| 228 { | 234 { |
| 229 'target_name': 'notifier_test_util', | 235 'target_name': 'notifier_test_util', |
| 230 'type': 'none', | 236 'type': 'none', |
| 231 }, | 237 }, |
| 232 ], | 238 ], |
| 233 }], | 239 }], |
| 234 ], | 240 ], |
| 235 } | 241 } |
| OLD | NEW |