| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 '../base/base.gyp:base', | 92 '../base/base.gyp:base', |
| 93 '../net/net.gyp:net', | 93 '../net/net.gyp:net', |
| 94 '../third_party/expat/expat.gyp:expat', | 94 '../third_party/expat/expat.gyp:expat', |
| 95 '../third_party/libjingle/libjingle.gyp:libjingle', | 95 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 96 '../url/url.gyp:url_lib', | 96 '../url/url.gyp:url_lib', |
| 97 'jingle_glue', | 97 'jingle_glue', |
| 98 ], | 98 ], |
| 99 'export_dependent_settings': [ | 99 'export_dependent_settings': [ |
| 100 '../third_party/libjingle/libjingle.gyp:libjingle', | 100 '../third_party/libjingle/libjingle.gyp:libjingle', |
| 101 ], | 101 ], |
| 102 'conditions': [ | |
| 103 ['toolkit_uses_gtk == 1', { | |
| 104 'dependencies': [ | |
| 105 '../build/linux/system.gyp:gtk' | |
| 106 ], | |
| 107 }], | |
| 108 ], | |
| 109 }, | 102 }, |
| 110 { | 103 { |
| 111 'target_name': 'notifier_test_util', | 104 'target_name': 'notifier_test_util', |
| 112 'type': 'static_library', | 105 'type': 'static_library', |
| 113 'sources': [ | 106 'sources': [ |
| 114 'notifier/base/fake_base_task.cc', | 107 'notifier/base/fake_base_task.cc', |
| 115 'notifier/base/fake_base_task.h', | 108 'notifier/base/fake_base_task.h', |
| 116 'notifier/listener/fake_push_client.cc', | 109 'notifier/listener/fake_push_client.cc', |
| 117 'notifier/listener/fake_push_client.h', | 110 'notifier/listener/fake_push_client.h', |
| 118 'notifier/listener/fake_push_client_observer.cc', | 111 'notifier/listener/fake_push_client_observer.cc', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 ], | 218 ], |
| 226 }, | 219 }, |
| 227 { | 220 { |
| 228 'target_name': 'notifier_test_util', | 221 'target_name': 'notifier_test_util', |
| 229 'type': 'none', | 222 'type': 'none', |
| 230 }, | 223 }, |
| 231 ], | 224 ], |
| 232 }], | 225 }], |
| 233 ], | 226 ], |
| 234 } | 227 } |
| OLD | NEW |