| 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 '../../build/win_precompile.gypi', | 7 '../../build/win_precompile.gypi', |
| 8 ], | 8 ], |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'defines': [ | 10 'defines': [ |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 390 'source/talk/base/linux.h', | 390 'source/talk/base/linux.h', |
| 391 ], | 391 ], |
| 392 }], | 392 }], |
| 393 ['OS=="mac"', { | 393 ['OS=="mac"', { |
| 394 'sources': [ | 394 'sources': [ |
| 395 'source/talk/base/macconversion.cc', | 395 'source/talk/base/macconversion.cc', |
| 396 'source/talk/base/macconversion.h', | 396 'source/talk/base/macconversion.h', |
| 397 'source/talk/base/macutils.cc', | 397 'source/talk/base/macutils.cc', |
| 398 'source/talk/base/macutils.h', | 398 'source/talk/base/macutils.h', |
| 399 ], | 399 ], |
| 400 'sources!': [ |
| 401 # OpenSSL is only used on linux. |
| 402 'source/talk/base/openssldigest.cc', |
| 403 'source/talk/base/openssldigest.h', |
| 404 ], |
| 400 }], | 405 }], |
| 401 ['OS=="android"', { | 406 ['OS=="android"', { |
| 402 'sources!': [ | 407 'sources!': [ |
| 403 # The openssl is not available in android build. | 408 # The openssl is not available in android build. |
| 404 'source/talk/base/openssldigest.cc', | 409 'source/talk/base/openssldigest.cc', |
| 405 'source/talk/base/openssldigest.h', | 410 'source/talk/base/openssldigest.h', |
| 406 # These depend on jsoncpp which we don't load because we probably | 411 # These depend on jsoncpp which we don't load because we probably |
| 407 # don't actually need this code at all. | 412 # don't actually need this code at all. |
| 408 'source/talk/base/json.cc', | 413 'source/talk/base/json.cc', |
| 409 'source/talk/base/json.h', | 414 'source/talk/base/json.h', |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 621 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_eng
ine_core', | 626 '<(DEPTH)/third_party/webrtc/voice_engine/voice_engine.gyp:voice_eng
ine_core', |
| 622 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.
gyp:system_wrappers', | 627 '<(DEPTH)/third_party/webrtc/system_wrappers/source/system_wrappers.
gyp:system_wrappers', |
| 623 'libjingle', | 628 'libjingle', |
| 624 'libjingle_p2p', | 629 'libjingle_p2p', |
| 625 ], | 630 ], |
| 626 }], | 631 }], |
| 627 ], | 632 ], |
| 628 }, # target libjingle_peerconnection | 633 }, # target libjingle_peerconnection |
| 629 ], | 634 ], |
| 630 } | 635 } |
| OLD | NEW |