OLD | NEW |
1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
2 # | 2 # |
3 # Use of this source code is governed by a BSD-style license | 3 # Use of this source code is governed by a BSD-style license |
4 # that can be found in the LICENSE file in the root of the source | 4 # that can be found in the LICENSE file in the root of the source |
5 # tree. An additional intellectual property rights grant can be found | 5 # tree. An additional intellectual property rights grant can be found |
6 # in the file PATENTS. All contributing project authors may | 6 # in the file PATENTS. All contributing project authors may |
7 # be found in the AUTHORS file in the root of the source tree. | 7 # be found in the AUTHORS file in the root of the source tree. |
8 | 8 |
9 { | 9 { |
10 'includes': [ '../build/common.gypi', ], | 10 'includes': [ '../build/common.gypi', ], |
(...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 '-Wextra', | 374 '-Wextra', |
375 '-Wall', | 375 '-Wall', |
376 ], | 376 ], |
377 'direct_dependent_settings': { | 377 'direct_dependent_settings': { |
378 'defines': [ | 378 'defines': [ |
379 'FEATURE_ENABLE_SSL', | 379 'FEATURE_ENABLE_SSL', |
380 'SSL_USE_OPENSSL', | 380 'SSL_USE_OPENSSL', |
381 'HAVE_OPENSSL_SSL_H', | 381 'HAVE_OPENSSL_SSL_H', |
382 ], | 382 ], |
383 }, | 383 }, |
384 'include_dirs': [ | |
385 '../../third_party/jsoncpp/overrides/include', | |
386 '../../third_party/jsoncpp/source/include', | |
387 ], | |
388 'conditions': [ | 384 'conditions': [ |
389 ['build_with_chromium==1', { | 385 ['build_with_chromium==1', { |
390 'include_dirs': [ | 386 'include_dirs': [ |
391 '../../webrtc_overrides', | 387 '../../webrtc_overrides', |
392 '../../boringssl/src/include', | 388 '../../boringssl/src/include', |
393 ], | 389 ], |
394 'conditions': [ | 390 'conditions': [ |
395 ['OS=="win"', { | 391 ['OS=="win"', { |
396 'sources': [ | 392 'sources': [ |
397 '../../webrtc_overrides/webrtc/base/win32socketinit.cc', | 393 '../../webrtc_overrides/webrtc/base/win32socketinit.cc', |
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
669 }, | 665 }, |
670 { | 666 { |
671 'target_name': 'gtest_prod', | 667 'target_name': 'gtest_prod', |
672 'type': 'static_library', | 668 'type': 'static_library', |
673 'sources': [ | 669 'sources': [ |
674 'gtest_prod_util.h', | 670 'gtest_prod_util.h', |
675 ], | 671 ], |
676 }, | 672 }, |
677 ], | 673 ], |
678 } | 674 } |
OLD | NEW |