| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'nacl_untrusted_build%': 0, | 7 'nacl_untrusted_build%': 0, |
| 8 'webrtc_p2p': "../webrtc/p2p", | 8 'webrtc_p2p': "../webrtc/p2p", |
| 9 'webrtc_xmpp': "../webrtc/libjingle/xmpp", | 9 'webrtc_xmpp': "../webrtc/libjingle/xmpp", |
| 10 }, | 10 }, |
| 11 'sources': [ | 11 'sources': [ |
| 12 'overrides/field_trial.cc', |
| 12 '<(webrtc_p2p)/base/asyncstuntcpsocket.cc', | 13 '<(webrtc_p2p)/base/asyncstuntcpsocket.cc', |
| 13 '<(webrtc_p2p)/base/asyncstuntcpsocket.h', | 14 '<(webrtc_p2p)/base/asyncstuntcpsocket.h', |
| 14 '<(webrtc_p2p)/base/basicpacketsocketfactory.cc', | 15 '<(webrtc_p2p)/base/basicpacketsocketfactory.cc', |
| 15 '<(webrtc_p2p)/base/basicpacketsocketfactory.h', | 16 '<(webrtc_p2p)/base/basicpacketsocketfactory.h', |
| 16 '<(webrtc_p2p)/base/candidate.h', | 17 '<(webrtc_p2p)/base/candidate.h', |
| 17 '<(webrtc_p2p)/base/common.h', | 18 '<(webrtc_p2p)/base/common.h', |
| 18 '<(webrtc_p2p)/base/constants.cc', | 19 '<(webrtc_p2p)/base/constants.cc', |
| 19 '<(webrtc_p2p)/base/constants.h', | 20 '<(webrtc_p2p)/base/constants.h', |
| 20 '<(webrtc_p2p)/base/dtlstransport.h', | 21 '<(webrtc_p2p)/base/dtlstransport.h', |
| 21 '<(webrtc_p2p)/base/dtlstransportchannel.cc', | 22 '<(webrtc_p2p)/base/dtlstransportchannel.cc', |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 ], | 110 ], |
| 110 }], | 111 }], |
| 111 ['(OS!="mac" and OS!="ios") or nacl_untrusted_build==1', { | 112 ['(OS!="mac" and OS!="ios") or nacl_untrusted_build==1', { |
| 112 'sources/': [ | 113 'sources/': [ |
| 113 ['exclude', '/mac[a-z]+\\.(h|cc)$'], | 114 ['exclude', '/mac[a-z]+\\.(h|cc)$'], |
| 114 ['exclude', '/scoped_autorelease_pool\\.(h|mm)$'], | 115 ['exclude', '/scoped_autorelease_pool\\.(h|mm)$'], |
| 115 ], | 116 ], |
| 116 }], | 117 }], |
| 117 ], | 118 ], |
| 118 } | 119 } |
| OLD | NEW |